diff --git a/.github/workflows/build_microservices.yml b/.github/workflows/build_microservices.yml index 2d60a9355..930a6df87 100644 --- a/.github/workflows/build_microservices.yml +++ b/.github/workflows/build_microservices.yml @@ -1,6 +1,10 @@ name: .NET MiniSpace Microservice build & integration -on: [push, pull_request] +on: + push: + branches: + - '*' + pull_request: jobs: build-and-test: @@ -12,12 +16,16 @@ jobs: - project: 'MiniSpace.APIGateway/src/MiniSpace.APIGateway' - project: 'MiniSpace.Services.Identity/src/MiniSpace.Services.Identity.Api' test_dir: 'MiniSpace.Services.Identity/tests' + - project: 'MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Api' + test_dir: 'MiniSpace.Services.Comments/tests' - project: 'MiniSpace.Web/src/MiniSpace.Web' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Setup .NET 8.0.x - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v2 with: dotnet-version: '8.0.x' @@ -46,4 +54,5 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: '**/coverage.cobertura.xml' slug: SaintAngeLs/p_software_engineering_2 - + commit: ${{ github.event.pull_request.base.sha }} + # fail_ci_if_error: true diff --git a/MiniSpace.Services.Comments/MiniSpace.Services.Comments.sln b/MiniSpace.Services.Comments/MiniSpace.Services.Comments.sln index b474e20c8..97759c180 100644 --- a/MiniSpace.Services.Comments/MiniSpace.Services.Comments.sln +++ b/MiniSpace.Services.Comments/MiniSpace.Services.Comments.sln @@ -11,6 +11,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniSpace.Services.Comments EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniSpace.Services.Comments.Infrastructure", "src\MiniSpace.Services.Comments.Infrastructure\MiniSpace.Services.Comments.Infrastructure.csproj", "{85941F19-E28E-467B-A338-7D358D32CFC8}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniSpace.Services.Comments.Application.UnitTests", "tests\MiniSpace.Services.Comments.Application.UnitTests\MiniSpace.Services.Comments.Application.UnitTests.csproj", "{63DF71AF-1D31-4A4D-8127-9B8EB359889D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniSpace.Services.Comments.Core.UnitTests", "tests\MiniSpace.Services.Comments.Core.UnitTests\MiniSpace.Services.Comments.Core.UnitTests.csproj", "{C0DE6BE3-4EE5-4DB5-A170-57351B19AAF8}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniSpace.Services.Comments.Infrastructure.UnitTests", "tests\MiniSpace.Services.Comments.Infrastructure.UnitTests\MiniSpace.Services.Comments.Infrastructure.UnitTests.csproj", "{81D7C37A-34BE-43BB-9709-0A866D67F8EB}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -33,6 +39,18 @@ Global {85941F19-E28E-467B-A338-7D358D32CFC8}.Debug|Any CPU.Build.0 = Debug|Any CPU {85941F19-E28E-467B-A338-7D358D32CFC8}.Release|Any CPU.ActiveCfg = Release|Any CPU {85941F19-E28E-467B-A338-7D358D32CFC8}.Release|Any CPU.Build.0 = Release|Any CPU + {63DF71AF-1D31-4A4D-8127-9B8EB359889D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {63DF71AF-1D31-4A4D-8127-9B8EB359889D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {63DF71AF-1D31-4A4D-8127-9B8EB359889D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {63DF71AF-1D31-4A4D-8127-9B8EB359889D}.Release|Any CPU.Build.0 = Release|Any CPU + {C0DE6BE3-4EE5-4DB5-A170-57351B19AAF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0DE6BE3-4EE5-4DB5-A170-57351B19AAF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0DE6BE3-4EE5-4DB5-A170-57351B19AAF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0DE6BE3-4EE5-4DB5-A170-57351B19AAF8}.Release|Any CPU.Build.0 = Release|Any CPU + {81D7C37A-34BE-43BB-9709-0A866D67F8EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81D7C37A-34BE-43BB-9709-0A866D67F8EB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81D7C37A-34BE-43BB-9709-0A866D67F8EB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81D7C37A-34BE-43BB-9709-0A866D67F8EB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/CommentDto.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/CommentDto.cs index 72ca781fc..abc5fdc53 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/CommentDto.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/CommentDto.cs @@ -1,10 +1,12 @@ using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using MiniSpace.Services.Comments.Core.Entities; namespace MiniSpace.Services.Comments.Application.Dto { + [ExcludeFromCodeCoverage] public class CommentDto { public Guid Id { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/PageableDto.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/PageableDto.cs index 0aa0823b7..ab0dd7e89 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/PageableDto.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/PageableDto.cs @@ -1,5 +1,8 @@ -namespace MiniSpace.Services.Comments.Application.Dto +using System.Diagnostics.CodeAnalysis; + +namespace MiniSpace.Services.Comments.Application.Dto { + [ExcludeFromCodeCoverage] public class PageableDto { public int Page { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/SortDto.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/SortDto.cs index 7aaa0fc53..d247ff854 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/SortDto.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Application/Dto/SortDto.cs @@ -1,7 +1,9 @@ using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Application.Dto { + [ExcludeFromCodeCoverage] public class SortDto { public IEnumerable SortBy { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/PagedResponse.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/PagedResponse.cs index 8872f116e..8dd369a50 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/PagedResponse.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/PagedResponse.cs @@ -1,5 +1,8 @@ -namespace MiniSpace.Services.Comments.Application.Wrappers +using System.Diagnostics.CodeAnalysis; + +namespace MiniSpace.Services.Comments.Application.Wrappers { + [ExcludeFromCodeCoverage] public class PagedResponse : Response { public int TotalPages { get; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/Response.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/Response.cs index 016d8ffe6..e79bcd9ef 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/Response.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Core/Wrappers/Response.cs @@ -1,5 +1,8 @@ -namespace MiniSpace.Services.Comments.Application.Wrappers +using System.Diagnostics.CodeAnalysis; + +namespace MiniSpace.Services.Comments.Application.Wrappers { + [ExcludeFromCodeCoverage] public class Response { public T Content { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Contexts/IdentityContext.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Contexts/IdentityContext.cs index 12d43b7d7..259d5ef24 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Contexts/IdentityContext.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Contexts/IdentityContext.cs @@ -1,4 +1,7 @@ using MiniSpace.Services.Comments.Application; +using System.Runtime.CompilerServices; + +[assembly: InternalsVisibleTo("MiniSpace.Services.Comments.Application.UnitTests")] namespace MiniSpace.Services.Comments.Infrastructure.Contexts { diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxCommandHandlerDecorator.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxCommandHandlerDecorator.cs index 988cdbf37..7bfb24faf 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxCommandHandlerDecorator.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxCommandHandlerDecorator.cs @@ -2,9 +2,11 @@ using Convey.MessageBrokers; using Convey.MessageBrokers.Outbox; using Convey.Types; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Decorators { + [ExcludeFromCodeCoverage] [Decorator] internal sealed class OutboxCommandHandlerDecorator : ICommandHandler where TCommand : class, ICommand diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxEventHandlerDecorator.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxEventHandlerDecorator.cs index 00e34126e..f70a293a9 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxEventHandlerDecorator.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Decorators/OutboxEventHandlerDecorator.cs @@ -2,9 +2,11 @@ using Convey.MessageBrokers; using Convey.MessageBrokers.Outbox; using Convey.Types; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Decorators { + [ExcludeFromCodeCoverage] [Decorator] internal sealed class OutboxEventHandlerDecorator : IEventHandler where TEvent : class, IEvent diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToMessageMapper.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToMessageMapper.cs index fdde1c6f7..7f5f521f5 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToMessageMapper.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToMessageMapper.cs @@ -3,9 +3,11 @@ using MiniSpace.Services.Comments.Application.Events.Rejected; using MiniSpace.Services.Comments.Application.Exceptions; using MiniSpace.Services.Comments.Core.Exceptions; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Exceptions { + [ExcludeFromCodeCoverage] internal sealed class ExceptionToMessageMapper : IExceptionToMessageMapper { public object Map(Exception exception, object message) diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToResponseMapper.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToResponseMapper.cs index cf4883382..8c7beb2aa 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToResponseMapper.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Exceptions/ExceptionToResponseMapper.cs @@ -1,4 +1,5 @@ using System.Collections.Concurrent; +using System.Diagnostics.CodeAnalysis; using System.Net; using Convey; using Convey.WebApi.Exceptions; @@ -7,6 +8,7 @@ namespace MiniSpace.Services.Comments.Infrastructure.Exceptions { + [ExcludeFromCodeCoverage] internal sealed class ExceptionToResponseMapper : IExceptionToResponseMapper { private static readonly ConcurrentDictionary Codes = new ConcurrentDictionary(); diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/Extensions.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/Extensions.cs index 777426b5e..cab5f9fe9 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/Extensions.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/Extensions.cs @@ -2,9 +2,11 @@ using Convey.Logging.CQRS; using Microsoft.Extensions.DependencyInjection; using MiniSpace.Services.Comments.Application.Commands; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Logging { + [ExcludeFromCodeCoverage] internal static class Extensions { public static IConveyBuilder AddHandlersLogging(this IConveyBuilder builder) diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/MessageToLogTemplateMapper.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/MessageToLogTemplateMapper.cs index 77c86f651..ca36c3c5e 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/MessageToLogTemplateMapper.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Logging/MessageToLogTemplateMapper.cs @@ -2,9 +2,11 @@ using MiniSpace.Services.Comments.Application.Commands; using MiniSpace.Services.Comments.Application.Events; using MiniSpace.Services.Comments.Application.Events.External; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Logging { + [ExcludeFromCodeCoverage] internal sealed class MessageToLogTemplateMapper : IMessageToLogTemplateMapper { private static IReadOnlyDictionary MessageTemplates diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/CommentDocument.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/CommentDocument.cs index d6e3e9066..f203397b6 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/CommentDocument.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/CommentDocument.cs @@ -1,8 +1,10 @@ using Convey.Types; using MiniSpace.Services.Comments.Core.Entities; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Documents { + [ExcludeFromCodeCoverage] public class CommentDocument : IIdentifiable { public Guid Id { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/Extensions.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/Extensions.cs index 5d02210e9..93a578ec3 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/Extensions.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/Extensions.cs @@ -1,8 +1,10 @@ using MiniSpace.Services.Comments.Application.Dto; using MiniSpace.Services.Comments.Core.Entities; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Documents { + [ExcludeFromCodeCoverage] public static class Extensions { public static Comment AsEntity(this CommentDocument document) diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/StudentDocument.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/StudentDocument.cs index eea1b15dd..65394473d 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/StudentDocument.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Documents/StudentDocument.cs @@ -1,7 +1,9 @@ using Convey.Types; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Documents { + [ExcludeFromCodeCoverage] public class StudentDocument : IIdentifiable { public Guid Id { get; set; } diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/CommentMongoRepository.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/CommentMongoRepository.cs index 14afb264f..158baec2d 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/CommentMongoRepository.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/CommentMongoRepository.cs @@ -5,9 +5,11 @@ using MiniSpace.Services.Comments.Infrastructure.Mongo.Documents; using MongoDB.Driver; using MongoDB.Driver.Linq; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Repositories { + [ExcludeFromCodeCoverage] public class CommentMongoRepository : ICommentRepository { private readonly IMongoRepository _repository; diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/Extensions.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/Extensions.cs index 713d611db..1319102a9 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/Extensions.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/Extensions.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text.RegularExpressions; using System.Threading.Tasks; @@ -10,6 +11,7 @@ namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Repositories { + [ExcludeFromCodeCoverage] public static class Extensions { private static readonly FilterDefinitionBuilder FilterDefinitionBuilder = Builders.Filter; diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/StudentMongoRepository.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/StudentMongoRepository.cs index 6fd9a4fe2..d35bc4519 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/StudentMongoRepository.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Mongo/Repositories/StudentMongoRepository.cs @@ -2,9 +2,11 @@ using MiniSpace.Services.Comments.Core.Entities; using MiniSpace.Services.Comments.Core.Repositories; using MiniSpace.Services.Comments.Infrastructure.Mongo.Documents; +using System.Diagnostics.CodeAnalysis; namespace MiniSpace.Services.Comments.Infrastructure.Mongo.Repositories { + [ExcludeFromCodeCoverage] public class StudentMongoRepository : IStudentRepository { private readonly IMongoRepository _repository; diff --git a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Services/MessageBroker.cs b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Services/MessageBroker.cs index c4355c2a4..935d792e0 100644 --- a/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Services/MessageBroker.cs +++ b/MiniSpace.Services.Comments/src/MiniSpace.Services.Comments.Infrastructure/Services/MessageBroker.cs @@ -6,7 +6,9 @@ using Microsoft.Extensions.Logging; using OpenTracing; using MiniSpace.Services.Comments.Application.Services; +using System.Runtime.CompilerServices; +[assembly: InternalsVisibleTo("MiniSpace.Services.Comments.Infrastructure.UnitTests")] namespace MiniSpace.Services.Comments.Infrastructure.Services { internal sealed class MessageBroker : IMessageBroker diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/AddLikeHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/AddLikeHandlerTest.cs new file mode 100644 index 000000000..6a196b5d2 --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/AddLikeHandlerTest.cs @@ -0,0 +1,92 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Commands.Handlers +{ + public class AddLikeHandlerTest + { + private readonly AddLikeHandler _addLikeHandler; + private readonly Mock _commentRepositoryMock; + private readonly Mock _messageBrokerMock; + private readonly Mock _appContextMock; + + public AddLikeHandlerTest() + { + _commentRepositoryMock = new Mock(); + _messageBrokerMock = new Mock(); + _appContextMock = new Mock(); + _addLikeHandler = new AddLikeHandler(_commentRepositoryMock.Object, _appContextMock.Object, _messageBrokerMock.Object); + } + + [Fact] + public async Task HandleAsync_WithValidCommentAndAuthorised_ShouldAddLike() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new AddLike(commentId); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), CommentContext.Post, Guid.NewGuid(), "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)).ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act + await _addLikeHandler.HandleAsync(comand, cancelationToken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.UpdateAsync(comment), Times.Once()); + } + + [Fact] + public async Task HandleAsync_WithInvalidComment_ShouldThrowCommentNotFoundExeption() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new AddLike(commentId); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comand.CommentId)).ReturnsAsync((Comment)null); + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _addLikeHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithNonPermitedIdentity_ShouldThrowUnauthorizedCommentAccessException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new AddLike(commentId); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), CommentContext.Post, Guid.NewGuid(), "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), "", false, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)).ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _addLikeHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/CreateCommentHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/CreateCommentHandlerTest.cs new file mode 100644 index 000000000..d24036a62 --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/CreateCommentHandlerTest.cs @@ -0,0 +1,231 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Linq; +using System.Text; +using MiniSpace.Services.Comments.Application.Events; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using Convey.CQRS.Commands; +using System.Threading; +using System.Security.Claims; +using FluentAssertions; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Commands.Handlers +{ + public class CreateCommentHandlerTest + { + private readonly CreateCommentHandler _createCommentHandler; + private readonly Mock _commentRepositoryMock; + private readonly Mock _studentRepositoryMock; + private readonly Mock _messageBrokerMock; + private readonly Mock _eventMapperMock; + private readonly Mock _appContextMock; + private readonly Mock _dateTimeProviderMock; + + public CreateCommentHandlerTest() + { + _commentRepositoryMock = new Mock(); + _studentRepositoryMock = new Mock(); + _messageBrokerMock = new Mock(); + _eventMapperMock = new Mock(); + _appContextMock = new Mock(); + _dateTimeProviderMock = new Mock(); + _createCommentHandler = new CreateCommentHandler( + _commentRepositoryMock.Object, + _studentRepositoryMock.Object, + _dateTimeProviderMock.Object, + _messageBrokerMock.Object, + _appContextMock.Object + ); + } + + [Fact] + public async Task HandleAsync_WithVaildStudentAndContextNoParent_ShouldNotThrowExeption() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.Empty; + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + true, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().NotThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithVaildStudentAndContextandOneParent_ShouldNotThrowExeptionAndUpdateParent() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.NewGuid(); + var parentComment = Comment.Create(new AggregateId(parentId), contextId, + CommentContext.Post, Guid.NewGuid(), "alex", Guid.Empty, "text", DateTime.Now); + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + true, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + _commentRepositoryMock.Setup(repo => repo.GetAsync(parentId)) + .ReturnsAsync(parentComment); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().NotThrowAsync(); + _commentRepositoryMock.Verify(repo => repo.UpdateAsync(parentComment), Times.Once()); + } + + [Fact] + public async Task HandleAsync_WithNonPermitedIdentity_ShouldThrowUnauthorizedCommentAccessException() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.Empty; + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), "", + true, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithWrongStudentId_ShouldThrowStudentNotFoundException() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.Empty; + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + false, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(false); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithWrongCommentContextEnum_ShouldThrowInvalidCommentContextEnumException() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.Empty; + var command = new CreateComment(commentId, contextId, "wrongenumstring", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + false, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithWrongParentId_ShouldThrowParentCommentNotFoundException() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.NewGuid(); + var parentComment = Comment.Create(new AggregateId(parentId), contextId, + CommentContext.Post, Guid.NewGuid(), "alex", Guid.Empty, "text", DateTime.Now); + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + false, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + _commentRepositoryMock.Setup(repo => repo.GetAsync(parentId)) + .ReturnsAsync((Comment)null); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithParentThatHasAParent_ShouldThrowInvalidParentCommentException() + { + // Arrange + var commentId = Guid.NewGuid(); + var contextId = Guid.NewGuid(); + var studentId = Guid.NewGuid(); + var parentId = Guid.NewGuid(); + var parentComment = Comment.Create(new AggregateId(parentId), contextId, + CommentContext.Post, Guid.NewGuid(), "alex", Guid.NewGuid(), "text", DateTime.Now); + var command = new CreateComment(commentId, contextId, "Post", studentId, + parentId, "text"); + var cancelationTocken = new CancellationToken(); + + var identityContext = new IdentityContext(studentId.ToString(), "", + true, new Dictionary()); + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + _commentRepositoryMock.Setup(repo => repo.GetAsync(parentId)) + .ReturnsAsync(parentComment); + + // Act & Assert + Func act = async () => await _createCommentHandler.HandleAsync(command, cancelationTocken); + await act.Should().ThrowAsync(); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteCommentHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteCommentHandlerTest.cs new file mode 100644 index 000000000..82333165e --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteCommentHandlerTest.cs @@ -0,0 +1,141 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Commands.Handlers +{ + public class DeleteCommentHandlerTest + { + private readonly DeleteCommentHandler _deleteCommentHandler; + private readonly Mock _commentRepositoryMock; + private readonly Mock _messageBrokerMock; + private readonly Mock _appContextMock; + + public DeleteCommentHandlerTest() + { + _commentRepositoryMock = new Mock(); + _messageBrokerMock = new Mock(); + _appContextMock = new Mock(); + _deleteCommentHandler = new DeleteCommentHandler( + _commentRepositoryMock.Object, + _appContextMock.Object, + _messageBrokerMock.Object + ); + } + + [Fact] + public async Task HandleAsync_WithVaildStudentAndPermited_ShouldUpdateRepository() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteComment(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act + await _deleteCommentHandler.HandleAsync(comand, cancelationToken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.UpdateAsync(comment), Times.Once()); + } + + [Fact] + public async Task HandleAsync_WithInvalidComment_ShouldThrowCommentNotFoundExeption() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteComment(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync((Comment)null); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _deleteCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithAdminNotTheirs_ShouldNotThrowException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteComment(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), + "Admin", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _deleteCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().NotThrowAsync(); + + } + + [Fact] + public async Task HandleAsync_WithNotAdminNotTheirs_ShouldThrowUnauthorizedCommentAccessException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteComment(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _deleteCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteLikeHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteLikeHandlerTest.cs new file mode 100644 index 000000000..f61c2da2c --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/DeleteLikeHandlerTest.cs @@ -0,0 +1,116 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Commands.Handlers +{ + public class DeleteLikeHandlerTest + { + private readonly DeleteLikeHandler _deleteLikeHandler; + private readonly Mock _commentRepositoryMock; + private readonly Mock _messageBrokerMock; + private readonly Mock _appContextMock; + + public DeleteLikeHandlerTest() + { + _commentRepositoryMock = new Mock(); + _messageBrokerMock = new Mock(); + _appContextMock = new Mock(); + _deleteLikeHandler = new DeleteLikeHandler( + _commentRepositoryMock.Object, + _appContextMock.Object, + _messageBrokerMock.Object + ); + } + + [Fact] + public async Task HandleAsync_WithVaildStudentAndPermited_ShouldUpdateRepository() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteLike(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + comment.Like(studentId); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act + await _deleteLikeHandler.HandleAsync(comand, cancelationToken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.UpdateAsync(comment), Times.Once()); + } + + [Fact] + public async Task HandleAsync_WithInvalidComment_ShouldThrowCommentNotFoundExeption() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteLike(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync((Comment)null); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _deleteLikeHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithNotTheirs_ShouldThrowUnauthorizedCommentAccessException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new DeleteLike(commentId); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), + "", true, new Dictionary()); + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _deleteLikeHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/UpdateCommnetHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/UpdateCommnetHandlerTest.cs new file mode 100644 index 000000000..e96d8cb60 --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Commands/Handlers/UpdateCommnetHandlerTest.cs @@ -0,0 +1,156 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Commands.Handlers +{ + public class UpdateCommnetHandlerTest + { + public readonly UpdateCommentHandler _updateCommentHandler; + private readonly Mock _commentRepositoryMock; + private readonly Mock _messageBrokerMock; + private readonly Mock _appContextMock; + private readonly Mock _dateTimeProviderMock; + + public UpdateCommnetHandlerTest() + { + _commentRepositoryMock = new Mock(); + _messageBrokerMock = new Mock(); + _appContextMock = new Mock(); + _dateTimeProviderMock = new Mock(); + _updateCommentHandler = new UpdateCommentHandler( + _commentRepositoryMock.Object, + _appContextMock.Object, + _messageBrokerMock.Object, + _dateTimeProviderMock.Object + ); + } + + [Fact] + public async Task HandleAsync_WithVaildStudentAndPermited_ShouldUpdateRepository() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new UpdateComment(commentId, "newText"); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + var dateTimeNow = DateTime.Now; + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + _dateTimeProviderMock.Setup(dtp => dtp.Now).Returns(dateTimeNow); + + var cancelationToken = new CancellationToken(); + + // Act + await _updateCommentHandler.HandleAsync(comand, cancelationToken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.UpdateAsync(comment), Times.Once()); + } + + [Fact] + public async Task HandleAsync_WithInvalidComment_ShouldThrowCommentNotFoundExeption() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new UpdateComment(commentId, "newText"); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(studentId.ToString(), + "", true, new Dictionary()); + + var dateTimeNow = DateTime.Now; + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync((Comment)null); + _dateTimeProviderMock.Setup(dtp => dtp.Now).Returns(dateTimeNow); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _updateCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + } + + [Fact] + public async Task HandleAsync_WithAdminNotTheirs_ShouldNotThrowException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new UpdateComment(commentId, "newText"); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), + "Admin", true, new Dictionary()); + + var dateTimeNow = DateTime.Now; + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + _dateTimeProviderMock.Setup(dtp => dtp.Now).Returns(dateTimeNow); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _updateCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().NotThrowAsync(); + + } + + [Fact] + public async Task HandleAsync_WithNotAdminNotTheirs_ShouldThrowUnauthorizedCommentAccessException() + { + // Arrange + var commentId = Guid.NewGuid(); + var comand = new UpdateComment(commentId, "newText"); + var studentId = Guid.NewGuid(); + + var comment = Comment.Create(new AggregateId(commentId), Guid.NewGuid(), + CommentContext.Post, studentId, "Adam", Guid.NewGuid(), "text", DateTime.Now); + + var identityContext = new IdentityContext(Guid.NewGuid().ToString(), + "", true, new Dictionary()); + + var dateTimeNow = DateTime.Now; + + _appContextMock.Setup(ctx => ctx.Identity).Returns(identityContext); + _commentRepositoryMock.Setup(repo => repo.GetAsync(comment.Id)) + .ReturnsAsync(comment); + _dateTimeProviderMock.Setup(dtp => dtp.Now).Returns(dateTimeNow); + + var cancelationToken = new CancellationToken(); + + // Act & Assert + Func act = async () => await _updateCommentHandler.HandleAsync(comand, cancelationToken); + await act.Should().ThrowAsync(); + + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/EventDeletedHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/EventDeletedHandlerTest.cs new file mode 100644 index 000000000..f78a7cfcf --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/EventDeletedHandlerTest.cs @@ -0,0 +1,59 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; +using MiniSpace.Services.Comments.Application.Events.External.Handlers; +using MiniSpace.Services.Comments.Application.Events.External; +using System.ComponentModel.Design; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Events.External.Handlers +{ + public class EventDeletedHandlerTest + { + private readonly EventDeletedHandler _eventDeletedHandler; + private readonly Mock _commentRepositoryMock; + + public EventDeletedHandlerTest() + { + _commentRepositoryMock = new Mock(); + _eventDeletedHandler = new EventDeletedHandler(_commentRepositoryMock.Object); + } + + [Fact] + public async Task HandleAsync_ValidData_ShouldNotThrowExeption() + { + // Arrange + var eventId = System.Guid.NewGuid(); + var @event = new EventDeleted(eventId); + var commentId1 = System.Guid.NewGuid(); + var commentId2 = System.Guid.NewGuid(); + var comment1 = Comment.Create(new AggregateId(commentId1), eventId, + CommentContext.Event, System.Guid.NewGuid(), "Adam", System.Guid.NewGuid(), "text", DateTime.Now); + var comment2 = Comment.Create(new AggregateId(commentId2), eventId, + CommentContext.Event, Guid.NewGuid(), "Bartek", Guid.NewGuid(), "text", DateTime.Now); + var commentsList = new List { comment1, comment2 }; + + _commentRepositoryMock.Setup(repo => repo.GetByEventIdAsync(eventId)) + .ReturnsAsync(commentsList); + + var cancelationTocken = new CancellationToken(); + + // Act + await _eventDeletedHandler.HandleAsync(@event, cancelationTocken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.DeleteAsync(commentId1), Times.Once()); + _commentRepositoryMock.Verify(repo => repo.DeleteAsync(commentId2), Times.Once()); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/PostDeletedHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/PostDeletedHandlerTest.cs new file mode 100644 index 000000000..6e1569f7a --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/PostDeletedHandlerTest.cs @@ -0,0 +1,59 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; +using MiniSpace.Services.Comments.Application.Events.External.Handlers; +using MiniSpace.Services.Comments.Application.Events.External; +using System.ComponentModel.Design; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Events.External.Handlers +{ + public class PostDeletedHandlerTest + { + private readonly PostDeletedHandler _postDeletedHandler; + private readonly Mock _commentRepositoryMock; + + public PostDeletedHandlerTest() + { + _commentRepositoryMock = new Mock(); + _postDeletedHandler = new PostDeletedHandler(_commentRepositoryMock.Object); + } + + [Fact] + public async Task HandleAsync_ValidData_ShouldNotThrowExeption() + { + // Arrange + var postId = System.Guid.NewGuid(); + var @event = new PostDeleted(postId); + var commentId1 = System.Guid.NewGuid(); + var commentId2 = System.Guid.NewGuid(); + var comment1 = Comment.Create(new AggregateId(commentId1), postId, + CommentContext.Event, System.Guid.NewGuid(), "Adam", System.Guid.NewGuid(), "text", DateTime.Now); + var comment2 = Comment.Create(new AggregateId(commentId2), postId, + CommentContext.Event, Guid.NewGuid(), "Bartek", Guid.NewGuid(), "text", DateTime.Now); + var commentsList = new List { comment1, comment2 }; + + _commentRepositoryMock.Setup(repo => repo.GetByPostIdAsync(postId)) + .ReturnsAsync(commentsList); + + var cancelationTocken = new CancellationToken(); + + // Act + await _postDeletedHandler.HandleAsync(@event, cancelationTocken); + + // Assert + _commentRepositoryMock.Verify(repo => repo.DeleteAsync(commentId1), Times.Once()); + _commentRepositoryMock.Verify(repo => repo.DeleteAsync(commentId2), Times.Once()); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentCreatedHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentCreatedHandlerTest.cs new file mode 100644 index 000000000..078119316 --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentCreatedHandlerTest.cs @@ -0,0 +1,63 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; +using MiniSpace.Services.Comments.Application.Events.External.Handlers; +using MiniSpace.Services.Comments.Application.Events.External; +using System.ComponentModel.Design; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Events.External.Handlers +{ + public class StudentCreatedHandlerTest + { + private readonly StudentCreatedHandler _studentCreatedHandler; + private readonly Mock _studentRepositoryMock; + + public StudentCreatedHandlerTest() + { + _studentRepositoryMock = new Mock(); + _studentCreatedHandler = new StudentCreatedHandler(_studentRepositoryMock.Object); + } + + [Fact] + public async Task HandleAsync_ValidData_ShouldNotThrowExeption() + { + // Arrange + var studentId = Guid.NewGuid(); + var @event = new StudentCreated(studentId, "Jan Kowalski"); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(false); + + // Act & Assert + Func act = async () => await _studentCreatedHandler.HandleAsync(@event); + await act.Should().NotThrowAsync(); + + } + + [Fact] + public async Task HandleAsync_StudentAlreadyCreated_ShuldThrowStudentNotFoundException() + { + // Arrange + var studentId = Guid.NewGuid(); + var @event = new StudentCreated(studentId, "Jan Kowalski"); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + + // Act & Assert + Func act = async () => await _studentCreatedHandler.HandleAsync(@event); + await act.Should().ThrowAsync(); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentDeletedHandlerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentDeletedHandlerTest.cs new file mode 100644 index 000000000..d54b22eeb --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/Events/External/Handlers/StudentDeletedHandlerTest.cs @@ -0,0 +1,64 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using System.Threading; +using FluentAssertions; +using MiniSpace.Services.Comments.Application.Events.External.Handlers; +using MiniSpace.Services.Comments.Application.Events.External; +using System.ComponentModel.Design; + +namespace MiniSpace.Services.Comments.Application.UnitTests.Events.External.Handlers +{ + public class StudentDeletedHandlerTest + { + private readonly StudentDeletedHandler _studentDeletedHandler; + private readonly Mock _studentRepositoryMock; + + public StudentDeletedHandlerTest() + { + _studentRepositoryMock = new Mock(); + _studentDeletedHandler = new StudentDeletedHandler(_studentRepositoryMock.Object); + } + + [Fact] + public async Task HandleAsync_ValidData_ShouldNotThrowExeption() + { + // Arrange + var studentId = Guid.NewGuid(); + var @event = new StudentDeleted(studentId, "Jan Kowalski"); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(true); + + // Act + await _studentDeletedHandler.HandleAsync(@event); + + // Assert + _studentRepositoryMock.Verify(repo => repo.DeleteAsync(studentId), Times.Once()); + } + + [Fact] + public async Task HandleAsync_StudentAlreadyDeleted_ShuldThrowStudentNotFoundException() + { + // Arrange + var studentId = Guid.NewGuid(); + var @event = new StudentDeleted(studentId, "Jan Kowalski"); + + _studentRepositoryMock.Setup(repo => repo.ExistsAsync(studentId)) + .ReturnsAsync(false); + + // Act & Assert + Func act = async () => await _studentDeletedHandler.HandleAsync(@event); + await act.Should().ThrowAsync(); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/MiniSpace.Services.Comments.Application.UnitTests.csproj b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/MiniSpace.Services.Comments.Application.UnitTests.csproj new file mode 100644 index 000000000..0d888754d --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Application.UnitTests/MiniSpace.Services.Comments.Application.UnitTests.csproj @@ -0,0 +1,32 @@ + + + + net8.0 + disable + + false + true + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/AggregatedIdTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/AggregatedIdTest.cs new file mode 100644 index 000000000..ff803ff3b --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/AggregatedIdTest.cs @@ -0,0 +1,52 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Linq; +using System.Text; +using MiniSpace.Services.Comments.Application.Events; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using Convey.CQRS.Commands; +using System.Threading; +using System.Security.Claims; +using FluentAssertions; +using MiniSpace.Services.Comments.Core.Exceptions; +using Microsoft.AspNetCore.DataProtection.KeyManagement; + +namespace MiniSpace.Services.Comments.Core.UnitTests.Entities +{ + public class AggregatedIdTest + { + [Fact] + public void AggregateId_CreatedTwice_ShuldBeDiffrent() + { + // Arrange & Act + var id1 = new AggregateId(); + var id2 = new AggregateId(); + + // Assert + Assert.NotEqual(id1.Value, id2.Value); + } + + [Fact] + public void AggregateId_CreatedTwiceSameGuid_ShuldBeSame() + { + // Arrange + var id = Guid.NewGuid(); + + // Act + var id1 = new AggregateId(id); + var id2 = new AggregateId(id); + + // Assert + Assert.Equal(id1.Value, id2.Value); + } + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/CommentTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/CommentTest.cs new file mode 100644 index 000000000..37e364fa6 --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/Entities/CommentTest.cs @@ -0,0 +1,120 @@ +using Xunit; +using Moq; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Linq; +using System.Text; +using MiniSpace.Services.Comments.Application.Events; +using MiniSpace.Services.Comments.Application.Exceptions; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Core.Entities; +using MiniSpace.Services.Comments.Core.Repositories; +using MiniSpace.Services.Comments.Application.Commands.Handlers; +using MiniSpace.Services.Comments.Application.Commands; +using MiniSpace.Services.Comments.Infrastructure.Contexts; +using Convey.CQRS.Commands; +using System.Threading; +using System.Security.Claims; +using FluentAssertions; +using MiniSpace.Services.Comments.Core.Exceptions; +using Microsoft.AspNetCore.DataProtection.KeyManagement; + +namespace MiniSpace.Services.Comments.Core.UnitTests.Entities +{ + public class CommentTest + { + [Fact] + public void Like_NotLiked_ShouldAddALike() + { + // Arrange + var studentId = Guid.NewGuid(); + var likes = new HashSet() { }; + var comment = new Comment(Guid.NewGuid(), Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", likes, Guid.Empty, "text", + DateTime.Now, DateTime.Now, DateTime.Now, 0, false); + + // Act + comment.Like(studentId); + + // Assert + Assert.Contains(comment.Likes, id => id == studentId); + } + + [Fact] + public void Like_IsLiked_ShouldThrowStudentAlreadyLikesCommentException() + { + // Arrange + var studentId = Guid.NewGuid(); + var likes = new HashSet() { studentId }; + var comment = new Comment(Guid.NewGuid(), Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", likes, Guid.Empty, "text", + DateTime.Now, DateTime.Now, DateTime.Now, 0, false); + + // Act & Assert + var act = new Action(() => comment.Like(studentId)); + Assert.Throws(act); + } + + [Fact] + public void UnLike_IsLiked_ShouldRemoveALike() + { + // Arrange + var studentId = Guid.NewGuid(); + var likes = new HashSet() { studentId }; + var comment = new Comment(Guid.NewGuid(), Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", likes, Guid.Empty, "text", + DateTime.Now, DateTime.Now, DateTime.Now, 0, false); + + // Act + comment.UnLike(studentId); + + // Assert + Assert.DoesNotContain(comment.Likes, id => id == studentId); + } + + [Fact] + public void Like_NotLiked_ShouldThrowStudentNotLikeCommentException() + { + // Arrange + var studentId = Guid.NewGuid(); + var likes = new HashSet() { }; + var comment = new Comment(Guid.NewGuid(), Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", likes, Guid.Empty, "text", + DateTime.Now, DateTime.Now, DateTime.Now, 0, false); + + // Act & Assert + var act = new Action(() => comment.UnLike(studentId)); + Assert.Throws(act); + } + + [Fact] + public void Create_TooLongText_ShouldThrowInvalidCommentContentException() + { + // Arrange + var commentId = new AggregateId( Guid.NewGuid()); + var text = new String('x', 301); + + // Act & Assert + var act = new Action(() => Comment.Create(commentId, Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", Guid.Empty, text, DateTime.Now)); + Assert.Throws(act); + } + + [Fact] + public void Update_Empty_ShouldThrowInvalidCommentContentException() + { + // Arrange + var commentId = Guid.NewGuid(); + var text = String.Empty; + var comment = new Comment(Guid.NewGuid(), Guid.NewGuid(), CommentContext.Post, + Guid.NewGuid(), "Adam", new HashSet() { }, Guid.Empty, "text", + DateTime.Now, DateTime.Now, DateTime.Now, 0, false); + + // Act & Assert + var act = new Action(() => comment.Update(text, DateTime.Now)); + Assert.Throws(act); + } + + } +} diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/MiniSpace.Services.Comments.Core.UnitTests.csproj b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/MiniSpace.Services.Comments.Core.UnitTests.csproj new file mode 100644 index 000000000..0d888754d --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Core.UnitTests/MiniSpace.Services.Comments.Core.UnitTests.csproj @@ -0,0 +1,32 @@ + + + + net8.0 + disable + + false + true + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/MiniSpace.Services.Comments.Infrastructure.UnitTests.csproj b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/MiniSpace.Services.Comments.Infrastructure.UnitTests.csproj new file mode 100644 index 000000000..0d888754d --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/MiniSpace.Services.Comments.Infrastructure.UnitTests.csproj @@ -0,0 +1,32 @@ + + + + net8.0 + disable + + false + true + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + diff --git a/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/Services/MessageBrokerTest.cs b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/Services/MessageBrokerTest.cs new file mode 100644 index 000000000..0976929bc --- /dev/null +++ b/MiniSpace.Services.Comments/tests/MiniSpace.Services.Comments.Infrastructure.UnitTests/Services/MessageBrokerTest.cs @@ -0,0 +1,142 @@ +using Xunit; +using Moq; +using Convey.CQRS.Events; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Convey.MessageBrokers; +using Convey.MessageBrokers.Outbox; +using Convey.MessageBrokers.RabbitMQ; +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Logging; +using OpenTracing; +using MiniSpace.Services.Comments.Infrastructure.Services; +using MiniSpace.Services.Comments.Application.Services; +using MiniSpace.Services.Comments.Application.Events; + +namespace MiniSpace.Services.Comments.Infrastructure.UnitTests.Services +{ + public class MessageBrokerTest + { + private readonly MessageBroker _messageBroker; + private readonly Mock _mockBusPublisher; + private readonly Mock _mockMessageOutbox; + private readonly Mock _mockContextAccessor; + private readonly Mock _mockHttpContextAccessor; + private readonly Mock _mockMessagePropertiesAccessor; + private readonly Mock _mockTracer; + private readonly Mock> _mockLogger; + + public MessageBrokerTest() + { + _mockBusPublisher = new Mock(); + _mockMessageOutbox = new Mock(); + _mockContextAccessor = new Mock(); + _mockHttpContextAccessor = new Mock(); + _mockMessagePropertiesAccessor = new Mock(); + _mockTracer = new Mock(); + _mockLogger = new Mock>(); + + _messageBroker = new MessageBroker(_mockBusPublisher.Object, _mockMessageOutbox.Object, _mockContextAccessor.Object, + _mockHttpContextAccessor.Object, _mockMessagePropertiesAccessor.Object, new RabbitMqOptions(), + _mockTracer.Object, _mockLogger.Object); + } + + [Fact] + public async Task PublishAsync_WithEventsAndOutboxDisabled_PublishesEvents() + { + //Arrange + var events = new List + { + new CommentCreated(Guid.NewGuid()) + }; + _mockMessageOutbox.Setup(x => x.Enabled).Returns(false); + + //Act + await _messageBroker.PublishAsync(events); + + //Assert + _mockMessageOutbox.Verify( + x => x.SendAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny(), It.IsAny>()), + Times.Never + ); + _mockBusPublisher.Verify( + x => x.PublishAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny>()), Times.Exactly(events.Count) + ); + } + + [Fact] + public async Task PublishAsync_WithEventsAndOutboxEnabled_SendsMessagesToOutbox() + { + //Arrange + var events = new List + { + new CommentCreated(Guid.NewGuid()) + }; + _mockMessageOutbox.Setup(x => x.Enabled).Returns(true); + + //Act + await _messageBroker.PublishAsync(events); + + //Assert + _mockMessageOutbox.Verify( + x => x.SendAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny(), It.IsAny>()), + Times.Exactly(events.Count) + ); + _mockBusPublisher.Verify( + x => x.PublishAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny>()), Times.Never + ); + } + + [Fact] + public async Task PublishAsync_WithoutEvents_Returns() + { + //Arrange + List events = null; + + //Act + await _messageBroker.PublishAsync(events); + + //Assert + _mockMessageOutbox.Verify( + x => x.SendAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny(), It.IsAny>()), + Times.Never + ); + _mockBusPublisher.Verify( + x => x.PublishAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny>()), Times.Never + ); + } + + [Fact] + public async Task PublishAsync_WithNullEventAndOutboxDisabled_PublishesOneLessEvent() + { + //Arrange + var events = new List + { + new CommentCreated(Guid.NewGuid()), + null + }; + _mockMessageOutbox.Setup(x => x.Enabled).Returns(false); + + //Act + await _messageBroker.PublishAsync(events); + + //Assert + _mockMessageOutbox.Verify( + x => x.SendAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny(), It.IsAny>()), + Times.Never + ); + _mockBusPublisher.Verify( + x => x.PublishAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), + It.IsAny(), It.IsAny>()), Times.Exactly(events.Count - 1) + ); + } + } +} diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.Core.dll new file mode 100755 index 000000000..2c8f63787 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.SecurityToken.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.SecurityToken.dll new file mode 100755 index 000000000..a97c0efa8 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.SecurityToken.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll new file mode 100755 index 000000000..6592b08c3 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll new file mode 100755 index 000000000..1b629d190 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll new file mode 100755 index 000000000..e18ca9855 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll new file mode 100755 index 000000000..71e95dd96 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll new file mode 100755 index 000000000..61683d7d8 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll new file mode 100755 index 000000000..59efe336c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll new file mode 100755 index 000000000..f99c13bc9 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll new file mode 100755 index 000000000..b6500686c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll new file mode 100755 index 000000000..23a3113ad Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll new file mode 100755 index 000000000..45667528d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll new file mode 100755 index 000000000..e54d6c572 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll new file mode 100755 index 000000000..a153fdb1d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll new file mode 100755 index 000000000..f3fb464d6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll new file mode 100755 index 000000000..f36a55517 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll new file mode 100755 index 000000000..b2d6e8753 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll new file mode 100755 index 000000000..cd569274a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Core.dll new file mode 100755 index 000000000..22d670c2c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll new file mode 100755 index 000000000..9fb6d6527 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll new file mode 100755 index 000000000..afdb41e0d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll new file mode 100755 index 000000000..018983f1f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll new file mode 100755 index 000000000..b95f0901a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll new file mode 100755 index 000000000..0a38b80df Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll new file mode 100755 index 000000000..104ee8cdd Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll new file mode 100755 index 000000000..f38a14074 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll new file mode 100755 index 000000000..691f3a511 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll new file mode 100755 index 000000000..12dcd760c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll new file mode 100755 index 000000000..40602fb1e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll new file mode 100755 index 000000000..e0e9e95d9 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll new file mode 100755 index 000000000..3f172181a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll new file mode 100755 index 000000000..7a42efded Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll new file mode 100755 index 000000000..30cff0bff Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll new file mode 100755 index 000000000..aa51bca55 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.dll new file mode 100755 index 000000000..65c65e40e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll new file mode 100755 index 000000000..fda2e9a57 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll new file mode 100755 index 000000000..f9663e880 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll new file mode 100755 index 000000000..904296b94 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.dll new file mode 100755 index 000000000..81e6e6e14 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Auth.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Auth.dll new file mode 100755 index 000000000..400e0171d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Auth.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll new file mode 100755 index 000000000..30cd22b68 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll new file mode 100755 index 000000000..115c23f3b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll new file mode 100755 index 000000000..fa6509e0c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll new file mode 100755 index 000000000..c5ce03346 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll new file mode 100755 index 000000000..c493944d3 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.HTTP.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.HTTP.dll new file mode 100755 index 000000000..5a36a7fdc Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.HTTP.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll new file mode 100755 index 000000000..ac1d7a21d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll new file mode 100755 index 000000000..d4aef8fc4 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.dll new file mode 100755 index 000000000..b23a443f2 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll new file mode 100755 index 000000000..de2306102 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll new file mode 100755 index 000000000..ff568dee6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll new file mode 100755 index 000000000..7ca504270 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll new file mode 100755 index 000000000..511da54a0 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll new file mode 100755 index 000000000..a5b8ba16a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll new file mode 100755 index 000000000..9fbe2e35e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll new file mode 100755 index 000000000..99f360d1e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll new file mode 100755 index 000000000..a5785435e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll new file mode 100755 index 000000000..d282e477d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Security.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Security.dll new file mode 100755 index 000000000..deaa4c1f6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Security.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll new file mode 100755 index 000000000..f2ac7f60b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll new file mode 100755 index 000000000..881cdb35a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll new file mode 100755 index 000000000..1b0fe1b76 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll new file mode 100755 index 000000000..b3d4fca00 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll new file mode 100755 index 000000000..ff0fe22f6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.dll new file mode 100755 index 000000000..9d138b841 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.dll new file mode 100755 index 000000000..96cd624b7 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/DnsClient.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/DnsClient.dll new file mode 100755 index 000000000..39aa546ad Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/DnsClient.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Elasticsearch.Net.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Elasticsearch.Net.dll new file mode 100755 index 000000000..593c211dc Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Elasticsearch.Net.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Figgle.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Figgle.dll new file mode 100755 index 000000000..b68a07152 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Figgle.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll new file mode 100755 index 000000000..a389ce9bf Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Core.dll new file mode 100755 index 000000000..22fbd9659 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll new file mode 100755 index 000000000..944a1e881 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll new file mode 100755 index 000000000..c9f21c774 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 000000000..8d6c47acb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 000000000..30cb199d2 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll new file mode 100755 index 000000000..b1b0dd623 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 000000000..02b9f976c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 000000000..cca623ecf Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 000000000..9a1c340c0 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 000000000..ff358af9f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 000000000..d02658ec4 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 000000000..410f2be4d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100755 index 000000000..14f3deda4 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 000000000..d62f3335b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api new file mode 100755 index 000000000..3532e920b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.deps.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.deps.json new file mode 100644 index 000000000..aa908da11 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.deps.json @@ -0,0 +1,4873 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.MediaFiles.Api/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.WebApi": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "MiniSpace.Services.MediaFiles.Infrastructure": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Api.dll": {} + } + }, + "ApacheThrift/0.14.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": { + "assemblyVersion": "0.14.1.0", + "fileVersion": "0.14.1.0" + } + } + }, + "App.Metrics/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Core/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.6.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Health/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "dependencies": { + "App.Metrics.Concurrency": "4.3.0", + "Microsoft.CSharp": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "AWSSDK.Core/3.7.100.14": { + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.100.14" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "dependencies": { + "AWSSDK.Core": "3.7.100.14" + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.100.14" + } + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Auth/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Discovery.Consul/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Docs.Swagger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.HTTP/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging.CQRS/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.25.0" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.Redis/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Secrets.Vault/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DnsClient/1.6.1": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "assemblyVersion": "1.6.1.0", + "fileVersion": "1.6.1.0" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.8.1.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Jaeger/1.0.3": { + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Core/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": {}, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.46214" + } + } + }, + "Microsoft.CSharp/4.6.0": {}, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "MongoDB.Bson/2.25.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver/2.25.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver.Core": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver.Core/2.25.0": { + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver.GridFS/2.25.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver": "2.25.0", + "MongoDB.Driver.Core": "2.25.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Libmongocrypt/1.8.2": { + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.8.2.0", + "fileVersion": "1.8.2.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/mongocrypt.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Open.Serialization/2.3.1": { + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json/2.3.1": { + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json.System/2.3.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": { + "assemblyVersion": "2.3.2.0", + "fileVersion": "2.3.2.0" + } + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "OpenTracing/0.12.1": { + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "assemblyVersion": "0.12.1.0", + "fileVersion": "0.12.1.0" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "assemblyVersion": "0.8.0.0", + "fileVersion": "0.8.0.0" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.0.45337" + } + } + }, + "Polly/7.2.2": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.2.2.0" + } + } + }, + "protobuf-net/2.4.0": { + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "assemblyVersion": "2.4.0.0", + "fileVersion": "2.4.0.8641" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Hosting/4.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.1.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.2.0" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "3.1.6", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "assemblyVersion": "8.4.1.0", + "fileVersion": "8.4.1.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Collections.Concurrent": "4.3.0", + "System.Threading.Timer": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "assemblyVersion": "5.1.0.0", + "fileVersion": "5.1.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "SixLabors.ImageSharp/3.1.4": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.4.0" + } + } + }, + "SmartFormat.NET/2.7.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.Text.Json": "6.0.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.2.0" + } + } + }, + "Snappier/1.0.0": { + "runtime": { + "lib/net5.0/Snappier.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "StackExchange.Redis/2.2.4": { + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.4.27433" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/5.0.0": {}, + "System.IO.Pipes/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Security/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.5.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.DispatchProxy/4.5.0": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Primitives/4.5.3": { + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "lib/netstandard2.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": {}, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "Utf8Json/1.3.7": { + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "assemblyVersion": "1.3.7.0", + "fileVersion": "1.3.7.0" + } + } + }, + "VaultSharp/1.7.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "assemblyVersion": "1.7.0.4", + "fileVersion": "1.7.0.4" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "runtime": { + "lib/net7.0/ZstdSharp.dll": { + "assemblyVersion": "0.7.3.0", + "fileVersion": "0.7.3.0" + } + } + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.MediaFiles.Core": "1.0.0", + "MongoDB.Bson": "2.25.0", + "SixLabors.ImageSharp": "3.1.4" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Application.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Core.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.MediaFiles.Application": "1.0.0", + "MongoDB.Driver.GridFS": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.MediaFiles.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ApacheThrift/0.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "path": "apachethrift/0.14.1", + "hashPath": "apachethrift.0.14.1.nupkg.sha512" + }, + "App.Metrics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "path": "app.metrics/4.3.0", + "hashPath": "app.metrics.4.3.0.nupkg.sha512" + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "path": "app.metrics.abstractions/4.3.0", + "hashPath": "app.metrics.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "path": "app.metrics.aspnetcore/4.3.0", + "hashPath": "app.metrics.aspnetcore.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "hashPath": "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "path": "app.metrics.aspnetcore.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "hashPath": "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "path": "app.metrics.aspnetcore.health/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "hashPath": "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "hashPath": "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "hashPath": "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "hashPath": "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512" + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "path": "app.metrics.concurrency/4.3.0", + "hashPath": "app.metrics.concurrency.4.3.0.nupkg.sha512" + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "path": "app.metrics.core/4.3.0", + "hashPath": "app.metrics.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "path": "app.metrics.extensions.configuration/4.3.0", + "hashPath": "app.metrics.extensions.configuration.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "hashPath": "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "path": "app.metrics.extensions.hosting/4.3.0", + "hashPath": "app.metrics.extensions.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "path": "app.metrics.formatters.ascii/4.3.0", + "hashPath": "app.metrics.formatters.ascii.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "path": "app.metrics.formatters.influxdb/4.3.0", + "hashPath": "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "path": "app.metrics.formatters.json/4.3.0", + "hashPath": "app.metrics.formatters.json.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "path": "app.metrics.formatters.prometheus/4.3.0", + "hashPath": "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512" + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "path": "app.metrics.health/3.1.0", + "hashPath": "app.metrics.health.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "path": "app.metrics.health.abstractions/3.2.0", + "hashPath": "app.metrics.health.abstractions.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "path": "app.metrics.health.checks.http/3.2.0", + "hashPath": "app.metrics.health.checks.http.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "path": "app.metrics.health.core/3.1.0", + "hashPath": "app.metrics.health.core.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "hashPath": "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "hashPath": "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "hashPath": "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "hashPath": "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "path": "app.metrics.health.formatters.json/3.1.0", + "hashPath": "app.metrics.health.formatters.json.3.1.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "path": "app.metrics.reporting.console/4.3.0", + "hashPath": "app.metrics.reporting.console.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "path": "app.metrics.reporting.http/4.3.0", + "hashPath": "app.metrics.reporting.http.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "path": "app.metrics.reporting.influxdb/4.3.0", + "hashPath": "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512" + }, + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==", + "path": "awssdk.core/3.7.100.14", + "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512" + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "path": "awssdk.securitytoken/3.7.100.14", + "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.Auth/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "path": "convey.auth/1.1.448", + "hashPath": "convey.auth.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "path": "convey.discovery.consul/1.1.448", + "hashPath": "convey.discovery.consul.1.1.448.nupkg.sha512" + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "path": "convey.docs.swagger/1.1.448", + "hashPath": "convey.docs.swagger.1.1.448.nupkg.sha512" + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "path": "convey.http/1.1.448", + "hashPath": "convey.http.1.1.448.nupkg.sha512" + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "path": "convey.loadbalancing.fabio/1.1.448", + "hashPath": "convey.loadbalancing.fabio.1.1.448.nupkg.sha512" + }, + "Convey.Logging/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "path": "convey.logging/1.1.448", + "hashPath": "convey.logging.1.1.448.nupkg.sha512" + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "path": "convey.logging.cqrs/1.1.448", + "hashPath": "convey.logging.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "path": "convey.messagebrokers.cqrs/1.1.448", + "hashPath": "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "path": "convey.messagebrokers.outbox/1.1.448", + "hashPath": "convey.messagebrokers.outbox.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "hashPath": "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "hashPath": "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "path": "convey.metrics.appmetrics/1.1.448", + "hashPath": "convey.metrics.appmetrics.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "path": "convey.persistence.mongodb/1.1.448", + "hashPath": "convey.persistence.mongodb.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "path": "convey.persistence.redis/1.1.448", + "hashPath": "convey.persistence.redis.1.1.448.nupkg.sha512" + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "path": "convey.secrets.vault/1.1.448", + "hashPath": "convey.secrets.vault.1.1.448.nupkg.sha512" + }, + "Convey.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "path": "convey.security/1.1.448", + "hashPath": "convey.security.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "path": "convey.tracing.jaeger/1.1.448", + "hashPath": "convey.tracing.jaeger.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "hashPath": "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "path": "convey.webapi/1.1.448", + "hashPath": "convey.webapi.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "path": "convey.webapi.cqrs/1.1.448", + "hashPath": "convey.webapi.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "path": "convey.webapi.security/1.1.448", + "hashPath": "convey.webapi.security.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "path": "convey.webapi.swagger/1.1.448", + "hashPath": "convey.webapi.swagger.1.1.448.nupkg.sha512" + }, + "DnsClient/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "path": "dnsclient/1.6.1", + "hashPath": "dnsclient.1.6.1.nupkg.sha512" + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "path": "elasticsearch.net/7.8.1", + "hashPath": "elasticsearch.net.7.8.1.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Jaeger/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "path": "jaeger/1.0.3", + "hashPath": "jaeger.1.0.3.nupkg.sha512" + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "path": "jaeger.communication.thrift/1.0.3", + "hashPath": "jaeger.communication.thrift.1.0.3.nupkg.sha512" + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "path": "jaeger.core/1.0.3", + "hashPath": "jaeger.core.1.0.3.nupkg.sha512" + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "path": "jaeger.senders.thrift/1.0.3", + "hashPath": "jaeger.senders.thrift.1.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "hashPath": "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "hashPath": "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "path": "microsoft.csharp/4.6.0", + "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "hashPath": "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "path": "microsoft.extensions.configuration/6.0.0", + "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "path": "microsoft.extensions.hosting/6.0.0", + "hashPath": "microsoft.extensions.hosting.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "path": "microsoft.extensions.logging.console/6.0.0", + "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "path": "microsoft.identitymodel.logging/6.15.0", + "hashPath": "microsoft.identitymodel.logging.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "path": "microsoft.identitymodel.protocols/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "path": "microsoft.identitymodel.tokens/6.15.0", + "hashPath": "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "path": "microsoft.net.http.headers/2.1.0", + "hashPath": "microsoft.net.http.headers.2.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "path": "mongodb.bson/2.25.0", + "hashPath": "mongodb.bson.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "path": "mongodb.driver/2.25.0", + "hashPath": "mongodb.driver.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "path": "mongodb.driver.core/2.25.0", + "hashPath": "mongodb.driver.core.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver.GridFS/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFvBxqr0H16pzLfuPHsyyVvRfr2nR/GjnBMOcfkxDwwlEipR2l9HI/7OFSaKs4wED+YjwIsd4GJ+eb2bLYkQxA==", + "path": "mongodb.driver.gridfs/2.25.0", + "hashPath": "mongodb.driver.gridfs.2.25.0.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.8.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==", + "path": "mongodb.libmongocrypt/1.8.2", + "hashPath": "mongodb.libmongocrypt.1.8.2.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Open.Serialization/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "path": "open.serialization/2.3.1", + "hashPath": "open.serialization.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "path": "open.serialization.json/2.3.1", + "hashPath": "open.serialization.json.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "path": "open.serialization.json.system/2.3.2", + "hashPath": "open.serialization.json.system.2.3.2.nupkg.sha512" + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "path": "open.serialization.json.utf8json/2.3.1", + "hashPath": "open.serialization.json.utf8json.2.3.1.nupkg.sha512" + }, + "OpenTracing/0.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "path": "opentracing/0.12.1", + "hashPath": "opentracing.0.12.1.nupkg.sha512" + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "path": "opentracing.contrib.netcore/0.8.0", + "hashPath": "opentracing.contrib.netcore.0.8.0.nupkg.sha512" + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "path": "pipelines.sockets.unofficial/2.2.0", + "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512" + }, + "Polly/7.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "path": "polly/7.2.2", + "hashPath": "polly.7.2.2.nupkg.sha512" + }, + "protobuf-net/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "path": "protobuf-net/2.4.0", + "hashPath": "protobuf-net.2.4.0.nupkg.sha512" + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "path": "rabbitmq.client/6.5.0", + "hashPath": "rabbitmq.client.6.5.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "path": "runtime.native.system.net.security/4.3.0", + "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "path": "serilog.aspnetcore/4.1.0", + "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "path": "serilog.extensions.hosting/4.1.2", + "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "path": "serilog.extensions.logging/3.1.0", + "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "path": "serilog.formatting.elasticsearch/8.4.1", + "hashPath": "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "path": "serilog.settings.configuration/3.1.0", + "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "path": "serilog.sinks.console/4.0.1", + "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "path": "serilog.sinks.elasticsearch/8.4.1", + "hashPath": "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "path": "serilog.sinks.grafana.loki/7.1.0", + "hashPath": "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512" + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "path": "serilog.sinks.periodicbatching/2.3.0", + "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512" + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "path": "serilog.sinks.seq/5.1.0", + "hashPath": "serilog.sinks.seq.5.1.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "path": "sixlabors.imagesharp/3.1.4", + "hashPath": "sixlabors.imagesharp.3.1.4.nupkg.sha512" + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "path": "smartformat.net/2.7.2", + "hashPath": "smartformat.net.2.7.2.nupkg.sha512" + }, + "Snappier/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "path": "snappier/1.0.0", + "hashPath": "snappier.1.0.0.nupkg.sha512" + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "path": "stackexchange.redis/2.2.4", + "hashPath": "stackexchange.redis.2.2.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "hashPath": "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "hashPath": "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "hashPath": "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "path": "system.io.pipelines/5.0.0", + "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "path": "system.io.pipes/4.3.0", + "hashPath": "system.io.pipes.4.3.0.nupkg.sha512" + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "path": "system.io.pipes.accesscontrol/4.5.1", + "hashPath": "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "path": "system.net.http.winhttphandler/4.7.0", + "hashPath": "system.net.http.winhttphandler.4.7.0.nupkg.sha512" + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "System.Net.Security/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "path": "system.net.security/4.3.2", + "hashPath": "system.net.security.4.3.2.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "path": "system.private.servicemodel/4.5.3", + "hashPath": "system.private.servicemodel.4.5.3.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "path": "system.reflection.dispatchproxy/4.5.0", + "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "path": "system.servicemodel.primitives/4.5.3", + "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "path": "system.threading.tasks.dataflow/4.11.1", + "hashPath": "system.threading.tasks.dataflow.4.11.1.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "Utf8Json/1.3.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "path": "utf8json/1.3.7", + "hashPath": "utf8json.1.3.7.nupkg.sha512" + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "path": "vaultsharp/1.7.0.4", + "hashPath": "vaultsharp.1.7.0.4.nupkg.sha512" + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "path": "zstdsharp.port/0.7.3", + "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll new file mode 100644 index 000000000..e1e3eef19 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb new file mode 100644 index 000000000..54682f3ed Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.runtimeconfig.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.runtimeconfig.json new file mode 100644 index 000000000..ab0e69220 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Globalization.Invariant": true, + "System.Globalization.PredefinedCulturesOnly": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..43a5ba687 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb new file mode 100644 index 000000000..bcb7309e6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..5f5c60b01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb new file mode 100644 index 000000000..a9bea7f26 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll new file mode 100644 index 000000000..6d796d0d9 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb new file mode 100644 index 000000000..9f02e7335 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Bson.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Bson.dll new file mode 100755 index 000000000..a88fe7ccb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Bson.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll new file mode 100755 index 000000000..e8bb0460f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.GridFS.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.GridFS.dll new file mode 100755 index 000000000..c941bf44f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.GridFS.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.dll new file mode 100755 index 000000000..797a7a936 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll new file mode 100755 index 000000000..968b7e759 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Newtonsoft.Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100755 index 000000000..1ffeabe65 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll new file mode 100755 index 000000000..cd11b856a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll new file mode 100755 index 000000000..d13f9e1d0 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.dll new file mode 100755 index 000000000..3555d6d02 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.dll new file mode 100755 index 000000000..4012ad022 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll new file mode 100755 index 000000000..bfe42faf1 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.dll new file mode 100755 index 000000000..780efdbf4 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll new file mode 100755 index 000000000..3c81dff99 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Polly.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Polly.dll new file mode 100755 index 000000000..17bd8feb1 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Polly.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/RabbitMQ.Client.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/RabbitMQ.Client.dll new file mode 100755 index 000000000..b069c8a1a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/RabbitMQ.Client.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Scrutor.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Scrutor.dll new file mode 100755 index 000000000..06eb31edf Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Scrutor.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll new file mode 100755 index 000000000..0840261cc Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll new file mode 100755 index 000000000..3ea579b48 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll new file mode 100755 index 000000000..27dc8cfc3 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll new file mode 100755 index 000000000..7e6d49c6f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll new file mode 100755 index 000000000..37f982517 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll new file mode 100755 index 000000000..5b5b10f29 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll new file mode 100755 index 000000000..388ff0264 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll new file mode 100755 index 000000000..2bd024b10 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll new file mode 100755 index 000000000..6e554d994 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll new file mode 100755 index 000000000..29dc2fd35 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll new file mode 100755 index 000000000..934a20d9c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll new file mode 100755 index 000000000..88dd4c87e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll new file mode 100755 index 000000000..a121b813c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.dll new file mode 100755 index 000000000..78688c820 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SharpCompress.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SharpCompress.dll new file mode 100755 index 000000000..c1a7f0744 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SharpCompress.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SixLabors.ImageSharp.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SixLabors.ImageSharp.dll new file mode 100755 index 000000000..f156db3d0 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SixLabors.ImageSharp.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SmartFormat.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SmartFormat.dll new file mode 100755 index 000000000..7ce2ede43 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SmartFormat.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Snappier.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Snappier.dll new file mode 100755 index 000000000..9b68e856c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Snappier.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/StackExchange.Redis.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/StackExchange.Redis.dll new file mode 100755 index 000000000..5db7b5b9d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/StackExchange.Redis.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll new file mode 100755 index 000000000..faa8aa22c Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll new file mode 100755 index 000000000..52270f959 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 000000000..a30e6cc9a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 000000000..ae35663ad Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 000000000..a26f4586f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll new file mode 100755 index 000000000..1644e5d6d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll new file mode 100755 index 000000000..a79b87b31 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Drawing.Common.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Drawing.Common.dll new file mode 100755 index 000000000..2ca2eb5ce Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 000000000..ac24bfbe1 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll new file mode 100755 index 000000000..3bae7826d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 000000000..ffe1c6f3e Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Permissions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Permissions.dll new file mode 100755 index 000000000..b380d0856 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Permissions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll new file mode 100755 index 000000000..c51637e08 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.dll new file mode 100755 index 000000000..e689b198f Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Windows.Extensions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Windows.Extensions.dll new file mode 100755 index 000000000..316eb46d6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Windows.Extensions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Thrift.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Thrift.dll new file mode 100755 index 000000000..1d8188519 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Thrift.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Utf8Json.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Utf8Json.dll new file mode 100755 index 000000000..24ac36cfb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Utf8Json.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/VaultSharp.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/VaultSharp.dll new file mode 100755 index 000000000..d1439983d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/VaultSharp.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/ZstdSharp.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/ZstdSharp.dll new file mode 100755 index 000000000..5d93f7e53 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/ZstdSharp.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.Development.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 000000000..7a73a41bf --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.docker.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.docker.json new file mode 100644 index 000000000..5d8e69926 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.docker.json @@ -0,0 +1,153 @@ +{ + "app": { + "name": "MiniSpace Media Files Service", + "version": "1" + }, + "consul": { + "enabled": true, + "url": "http://consul:8500", + "service": "mediafiles-service", + "address": "mediafiles-service", + "port": "80", + "pingEnabled": true, + "pingEndpoint": "ping", + "pingInterval": 3, + "removeAfterInterval": 3 + }, + "fabio": { + "enabled": true, + "url": "http://fabio:9999", + "service": "mediafiles-service" + }, + "httpClient": { + "type": "fabio", + "retries": 3, + "services": {} + }, + "jwt": { + "certificate": { + "location": "", + "password": "", + "rawData": "" + }, + "issuerSigningKey": "eiquief5phee9pazo0Faegaez9gohThailiur5woy2befiech1oarai4aiLi6ahVecah3ie9Aiz6Peij", + "expiryMinutes": 60, + "issuer": "minispace", + "validateAudience": false, + "validateIssuer": false, + "validateLifetime": true, + "allowAnonymousEndpoints": ["/sign-in", "/sign-up"] + }, + "logger": { + "console": { + "enabled": true + }, + "elk": { + "enabled": false, + "url": "http://elk:9200" + }, + "file": { + "enabled": false, + "path": "logs/logs.txt", + "interval": "day" + }, + "seq": { + "enabled": true, + "url": "http://seq:5341", + "apiKey": "secret" + } + }, + "jaeger": { + "enabled": true, + "serviceName": "events", + "udpHost": "jaeger", + "udpPort": 6831, + "maxPacketSize": 0, + "sampler": "const", + "excludePaths": ["/", "/ping", "/metrics"] + }, + "metrics": { + "enabled": true, + "influxEnabled": false, + "prometheusEnabled": true, + "influxUrl": "http://influx:8086", + "database": "minispace", + "env": "docker", + "interval": 5 + }, + "mongo": { + "connectionString": "mongodb+srv://minispace-user:9vd6IxYWUuuqhzEH@cluster0.mmhq4pe.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0", + "database": "mediafiles-service", + "seed": false + }, + "rabbitMq": { + "connectionName": "mediafiles-service", + "retries": 3, + "retryInterval": 2, + "conventionsCasing": "snakeCase", + "logger": { + "enabled": true + }, + "username": "guest", + "password": "guest", + "virtualHost": "/", + "port": 5672, + "hostnames": [ + "rabbitmq" + ], + "requestedConnectionTimeout": "00:00:30", + "requestedHeartbeat": "00:01:00", + "socketReadTimeout": "00:00:30", + "socketWriteTimeout": "00:00:30", + "continuationTimeout": "00:00:20", + "handshakeContinuationTimeout": "00:00:10", + "networkRecoveryInterval": "00:00:05", + "exchange": { + "declare": true, + "durable": true, + "autoDelete": false, + "type": "topic", + "name": "events" + }, + "queue": { + "declare": true, + "durable": true, + "exclusive": false, + "autoDelete": false, + "template": "mediafiles-service/{{exchange}}.{{message}}" + }, + "context": { + "enabled": true, + "header": "message_context" + }, + "spanContextHeader": "span_context" + }, + "redis": { + "connectionString": "redis", + "instance": "mediafiles:" + }, + "swagger": { + "enabled": true, + "reDocEnabled": false, + "name": "v1", + "title": "API", + "version": "v1", + "routePrefix": "docs", + "includeSecurity": true + }, + "vault": { + "enabled": false, + "url": "http://vault:8200", + "kv": { + "enabled": false + }, + "pki": { + "enabled": false + }, + "lease": { + "mongo": { + "enabled": false + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.json new file mode 100644 index 000000000..10f68b8c8 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.local.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.local.json new file mode 100644 index 000000000..5647c8fd6 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.local.json @@ -0,0 +1,195 @@ +{ + "app": { + "name": "MiniSpace Media Files Service", + "service": "mediafiles-service", + "version": "1" + }, + "consul": { + "enabled": true, + "url": "http://localhost:8500", + "service": "mediafiles-service", + "address": "docker.for.win.localhost", + "port": "5014", + "pingEnabled": false, + "pingEndpoint": "ping", + "pingInterval": 3, + "removeAfterInterval": 3 + }, + "fabio": { + "enabled": true, + "url": "http://localhost:9999", + "service": "mediafiles-service" + }, + "httpClient": { + "type": "direct", + "retries": 3, + "services": { + }, + "requestMasking": { + "enabled": true, + "maskTemplate": "*****" + } + }, + "jwt": { + "issuerSigningKey": "eiquief5phee9pazo0Faegaez9gohThailiur5woy2befiech1oarai4aiLi6ahVecah3ie9Aiz6Peij", + "expiryMinutes": 60, + "issuer": "minispace", + "validateAudience": false, + "validateIssuer": false, + "validateLifetime": false, + "allowAnonymousEndpoints": ["/sign-in", "/sign-up"] + }, + "logger": { + "level": "information", + "excludePaths": ["/", "/ping", "/metrics"], + "excludeProperties": [ + "api_key", + "access_key", + "ApiKey", + "ApiSecret", + "ClientId", + "ClientSecret", + "ConnectionString", + "Password", + "Email", + "Login", + "Secret", + "Token" + ], + "console": { + "enabled": true + }, + "elk": { + "enabled": false, + "url": "http://localhost:9200" + }, + "file": { + "enabled": true, + "path": "logs/logs.txt", + "interval": "day" + }, + "seq": { + "enabled": true, + "url": "http://localhost:5341", + "apiKey": "secret" + }, + "tags": {} + }, + "jaeger": { + "enabled": true, + "serviceName": "mediafiles", + "udpHost": "localhost", + "udpPort": 6831, + "maxPacketSize": 0, + "sampler": "const", + "excludePaths": ["/", "/ping", "/metrics"] + }, + "metrics": { + "enabled": true, + "influxEnabled": false, + "prometheusEnabled": true, + "influxUrl": "http://localhost:8086", + "database": "minispace", + "env": "local", + "interval": 5 + }, + "mongo": { + "connectionString": "mongodb+srv://minispace-user:9vd6IxYWUuuqhzEH@cluster0.mmhq4pe.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0", + "database": "mediafiles-service", + "seed": false + }, + "outbox": { + "enabled": false, + "type": "sequential", + "expiry": 3600, + "intervalMilliseconds": 2000, + "inboxCollection": "inbox", + "outboxCollection": "outbox", + "disableTransactions": true + }, + "rabbitMq": { + "connectionName": "mediafiles-service", + "retries": 3, + "retryInterval": 2, + "conventionsCasing": "snakeCase", + "logger": { + "enabled": true + }, + "username": "guest", + "password": "guest", + "virtualHost": "/", + "port": 5672, + "hostnames": [ + "localhost" + ], + "requestedConnectionTimeout": "00:00:30", + "requestedHeartbeat": "00:01:00", + "socketReadTimeout": "00:00:30", + "socketWriteTimeout": "00:00:30", + "continuationTimeout": "00:00:20", + "handshakeContinuationTimeout": "00:00:10", + "networkRecoveryInterval": "00:00:05", + "exchange": { + "declare": true, + "durable": true, + "autoDelete": false, + "type": "topic", + "name": "mediafiles" + }, + "queue": { + "declare": true, + "durable": true, + "exclusive": false, + "autoDelete": false, + "template": "mediafiles-service/{{exchange}}.{{message}}" + }, + "context": { + "enabled": true, + "header": "message_context" + }, + "spanContextHeader": "span_context" + }, + "redis": { + "connectionString": "localhost", + "instance": "mediafiles:" + }, + "swagger": { + "enabled": true, + "reDocEnabled": false, + "name": "v1", + "title": "API", + "version": "v1", + "routePrefix": "docs", + "includeSecurity": true + }, + "vault": { + "enabled": true, + "url": "http://localhost:8200", + "authType": "token", + "token": "secret", + "username": "user", + "password": "secret", + "kv": { + "enabled": true, + "engineVersion": 2, + "mountPoint": "kv", + "path": "mediafiles-service/settings" + }, + "pki": { + "enabled": true, + "roleName": "mediafiles-service", + "commonName": "mediafiles-service.minispace.io" + }, + "lease": { + "mongo": { + "type": "database", + "roleName": "mediafiles-service", + "enabled": true, + "autoRenewal": true, + "templates": { + "connectionString": "mongodb://{{username}}:{{password}}@localhost:27017" + } + } + } + } +} diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/protobuf-net.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/protobuf-net.dll new file mode 100755 index 000000000..f090f1cae Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/protobuf-net.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so new file mode 100755 index 000000000..2917ad8cb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib new file mode 100755 index 000000000..f1f0d80e6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 000000000..aad03edfb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll new file mode 100755 index 000000000..0f28fa4a8 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100755 index 000000000..ad71a481a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 000000000..b5aa0c4cd Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 000000000..87fe0ae8b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100755 index 000000000..ab82e8395 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll new file mode 100755 index 000000000..b9e355c6a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll new file mode 100755 index 000000000..14af5ab1a Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 000000000..99215bb1d Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll new file mode 100755 index 000000000..a4c53e4e8 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240519.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240519.txt new file mode 100644 index 000000000..437cad2e6 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240519.txt @@ -0,0 +1,2913 @@ +2024-05-19 17:02:56.150 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/wwwroot. Static files may be unavailable. +2024-05-19 17:02:56.278 +02:00 [INF] Registering a service [id: mediafiles-service:fc52f20ed60c4d749be5413da8d7841a] in Consul... +2024-05-19 17:02:56.297 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 17:02:56.300 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:02:56.301 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:02:56.308 +02:00 [INF] Received HTTP response headers after 4.886ms - 200 +2024-05-19 17:02:56.311 +02:00 [INF] End processing HTTP request after 10.7497ms - 200 +2024-05-19 17:02:56.313 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:02:56.314 +02:00 [INF] Registered a service [id: mediafiles-service:fc52f20ed60c4d749be5413da8d7841a] in Consul. +2024-05-19 17:02:56.318 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.upload_media_file' with routing key: 'upload_media_file' for an exchange: 'mediafiles'. +2024-05-19 17:02:56.334 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.delete_media_file' with routing key: 'delete_media_file' for an exchange: 'mediafiles'. +2024-05-19 17:02:56.342 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.cleanup_unassociated_files' with routing key: 'cleanup_unassociated_files' for an exchange: 'mediafiles'. +2024-05-19 17:02:56.348 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_created' with routing key: 'student_created' for an exchange: 'students'. +2024-05-19 17:02:56.354 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_updated' with routing key: 'student_updated' for an exchange: 'students'. +2024-05-19 17:02:56.359 +02:00 [INF] Declaring a queue: 'mediafiles-service/posts.post_created' with routing key: 'post_created' for an exchange: 'posts'. +2024-05-19 17:02:56.365 +02:00 [INF] Declaring a queue: 'mediafiles-service/events.event_created' with routing key: 'event_created' for an exchange: 'events'. +2024-05-19 17:03:09.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:03:09.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:03:09.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:03:09.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:03:09.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 643.5499ms +2024-05-19 17:03:09.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 658.4826ms +2024-05-19 17:03:09.967 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:09.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 662.2766ms +2024-05-19 17:03:10.004 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:10.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 699.1712ms +2024-05-19 17:03:43.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:03:43.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:03:43.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:03:43.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:03:43.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.334 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 37.3081ms +2024-05-19 17:03:43.390 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.0543ms +2024-05-19 17:03:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.8457ms +2024-05-19 17:03:43.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:03:43.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 205.246ms +2024-05-19 17:05:45.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:05:45.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:05:45.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:05:45.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:05:45.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:05:45.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.810 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 37.6127ms +2024-05-19 17:05:45.881 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.959ms +2024-05-19 17:05:45.994 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:45.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 219.7242ms +2024-05-19 17:05:46.076 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:46.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 307.7314ms +2024-05-19 17:05:46.150 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:05:46.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 373.8299ms +2024-05-19 17:08:37.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:08:37.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:08:37.427 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:08:37.428 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.427 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:08:37.429 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:08:37.430 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.460 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 53.7936ms +2024-05-19 17:08:37.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 54.3567ms +2024-05-19 17:08:37.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.273ms +2024-05-19 17:08:37.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 168.4947ms +2024-05-19 17:08:37.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:08:37.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 228.3274ms +2024-05-19 17:10:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 15:10:00. +2024-05-19 17:11:03.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:11:03.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:11:03.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:11:03.269 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.363 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.6297ms +2024-05-19 17:11:03.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.4177ms +2024-05-19 17:11:03.475 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:11:03.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.8465ms +2024-05-19 17:12:44.618 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-19 17:12:44.619 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-19 17:12:45.701 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-19 17:12:45.701 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1083.1896ms +2024-05-19 17:13:13.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:13:13.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:13:13.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-19 17:13:13.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:13:13.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 30.8165ms +2024-05-19 17:13:13.222 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.7663ms +2024-05-19 17:13:13.281 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.4509ms +2024-05-19 17:13:13.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:13:13.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 357.6104ms +2024-05-19 17:14:55.268 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-19 17:14:55.269 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-19 17:14:55.832 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-19 17:14:55.833 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 564.4125ms +2024-05-19 17:15:15.940 +02:00 [INF] Received a message with ID: '62b3deceacc24f73bccbe9ff049dff16', Correlation ID: 'a525cdf2e0944933a5ea50a157e93737', timestamp: 1716131715, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-19 17:15:15.952 +02:00 [INF] Handling a message: student_created with ID: 62b3deceacc24f73bccbe9ff049dff16, Correlation ID: a525cdf2e0944933a5ea50a157e93737, retry: 0 +2024-05-19 17:15:15.998 +02:00 [INF] Associated profile picture with ID: 00000000-0000-0000-0000-000000000000 for student with ID: 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:15:16.000 +02:00 [INF] Handled a message: student_created with ID: 62b3deceacc24f73bccbe9ff049dff16, Correlation ID: a525cdf2e0944933a5ea50a157e93737, retry: 0 +2024-05-19 17:15:24.234 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-19 17:15:24.236 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-19 17:15:24.605 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-19 17:15:24.605 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 370.8156ms +2024-05-19 17:15:28.781 +02:00 [INF] Received a message with ID: '47cb3dd44d7b408ca814a5e1dc14999c', Correlation ID: '1b90dddcc99b454d9258464b4cfb11c1', timestamp: 1716131728, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-19 17:15:28.785 +02:00 [INF] Handling a message: student_updated with ID: 47cb3dd44d7b408ca814a5e1dc14999c, Correlation ID: 1b90dddcc99b454d9258464b4cfb11c1, retry: 0 +2024-05-19 17:15:28.888 +02:00 [INF] Associated profile picture with ID: d37fb852-a3d8-4c49-9949-175682e37ebe for student with ID: 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:15:28.888 +02:00 [INF] Handled a message: student_updated with ID: 47cb3dd44d7b408ca814a5e1dc14999c, Correlation ID: 1b90dddcc99b454d9258464b4cfb11c1, retry: 0 +2024-05-19 17:15:47.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:15:47.405 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:47.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:15:47.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:15:47.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:47.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:47.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:15:47.418 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:48.090 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:48.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 682.5476ms +2024-05-19 17:15:48.432 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:48.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 1023.6615ms +2024-05-19 17:15:48.466 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:48.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 1062.7148ms +2024-05-19 17:15:48.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:15:48.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 1087.7822ms +2024-05-19 17:18:05.764 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-19 17:18:05.764 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-19 17:18:06.654 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-19 17:18:06.655 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 890.763ms +2024-05-19 17:18:20.425 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-19 17:18:20.425 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-19 17:18:21.322 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-19 17:18:21.322 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 897.5532ms +2024-05-19 17:18:22.645 +02:00 [INF] Received a message with ID: '72ae2643421c4fedb33d937c62ce0ea2', Correlation ID: '9c6564cf9e9a44ee900902a336af20c8', timestamp: 1716131902, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-19 17:18:22.646 +02:00 [INF] Handling a message: student_created with ID: 72ae2643421c4fedb33d937c62ce0ea2, Correlation ID: 9c6564cf9e9a44ee900902a336af20c8, retry: 0 +2024-05-19 17:18:22.714 +02:00 [INF] Associated profile picture with ID: 3a409f39-d9c0-46ac-aa42-72726a4981a2 for student with ID: bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 17:18:22.715 +02:00 [INF] Handled a message: student_created with ID: 72ae2643421c4fedb33d937c62ce0ea2, Correlation ID: 9c6564cf9e9a44ee900902a336af20c8, retry: 0 +2024-05-19 17:18:22.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:18:22.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:22.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:22.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.4399ms +2024-05-19 17:18:26.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:18:26.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:18:26.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:18:26.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:18:26.251 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.251 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:18:26.251 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.337 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.3294ms +2024-05-19 17:18:26.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.281ms +2024-05-19 17:18:26.391 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.1854ms +2024-05-19 17:18:26.399 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.7223ms +2024-05-19 17:18:26.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:18:26.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 196.2518ms +2024-05-19 17:20:00.104 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 15:20:00. +2024-05-19 17:21:38.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:21:38.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:21:38.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:21:38.637 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:21:38.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:21:38.637 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.637 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.637 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.728 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.3192ms +2024-05-19 17:21:38.784 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.3758ms +2024-05-19 17:21:38.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.6907ms +2024-05-19 17:21:38.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.8171ms +2024-05-19 17:21:38.838 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:21:38.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 206.1377ms +2024-05-19 17:30:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 15:30:00. +2024-05-19 17:31:16.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:31:16.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:31:16.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:31:16.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:31:16.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:31:16.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.0391ms +2024-05-19 17:31:16.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.2943ms +2024-05-19 17:31:16.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.1522ms +2024-05-19 17:31:16.556 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 172.0793ms +2024-05-19 17:31:16.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:31:16.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 236.9144ms +2024-05-19 17:32:18.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:32:18.254 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:32:18.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:32:18.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:32:18.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:32:18.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.258 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.9081ms +2024-05-19 17:32:18.396 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.1538ms +2024-05-19 17:32:18.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.5961ms +2024-05-19 17:32:18.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.8067ms +2024-05-19 17:32:18.489 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:32:18.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 232.8369ms +2024-05-19 17:33:48.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:33:48.455 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:33:48.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:33:48.456 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:33:48.456 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:33:48.458 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.457 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 171.0874ms +2024-05-19 17:33:48.782 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 323.9576ms +2024-05-19 17:33:48.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:48.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 456.6952ms +2024-05-19 17:33:49.040 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:49.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 584.312ms +2024-05-19 17:33:49.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:33:49.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 653.94ms +2024-05-19 17:34:22.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:34:22.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:34:22.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:34:22.218 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.219 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:34:22.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:34:22.221 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.219 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.0269ms +2024-05-19 17:34:22.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.3326ms +2024-05-19 17:34:22.378 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 160.8187ms +2024-05-19 17:34:22.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 338.5919ms +2024-05-19 17:34:22.648 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:34:22.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 431.8902ms +2024-05-19 17:35:35.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:35:35.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:35:35.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:35:35.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.329 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:35:35.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:35:35.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.8775ms +2024-05-19 17:35:35.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.203ms +2024-05-19 17:35:35.478 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.793ms +2024-05-19 17:35:35.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 164.0851ms +2024-05-19 17:35:35.529 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:35:35.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 207.0925ms +2024-05-19 17:40:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 15:40:00. +2024-05-19 17:49:31.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:49:31.452 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:49:31.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:49:31.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:49:31.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:49:31.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.651 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 200.1798ms +2024-05-19 17:49:31.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 296.8079ms +2024-05-19 17:49:31.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 431.7728ms +2024-05-19 17:49:31.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:31.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 478.2132ms +2024-05-19 17:49:32.046 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:49:32.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 585.6464ms +2024-05-19 17:50:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 15:50:00. +2024-05-19 17:50:41.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 17:50:41.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 17:50:41.968 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:41.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:41.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 17:50:41.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:41.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 17:50:41.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:41.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 17:50:41.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 192.3313ms +2024-05-19 17:50:42.234 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 264.2705ms +2024-05-19 17:50:42.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 304.6868ms +2024-05-19 17:50:42.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 385.2181ms +2024-05-19 17:50:42.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 17:50:42.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 611.0482ms +2024-05-19 18:00:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:00:00. +2024-05-19 18:00:46.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:00:46.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:00:46.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:00:46.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:00:46.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:00:46.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.704 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 216.957ms +2024-05-19 18:00:46.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 410.2765ms +2024-05-19 18:00:46.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:46.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 504.4284ms +2024-05-19 18:00:47.037 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:47.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 549.0379ms +2024-05-19 18:00:47.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:00:47.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 658.5111ms +2024-05-19 18:01:06.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:01:06.002 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:01:06.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:01:06.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:01:06.007 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.007 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:01:06.006 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.010 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.102 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.7371ms +2024-05-19 18:01:06.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.8078ms +2024-05-19 18:01:06.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.338ms +2024-05-19 18:01:06.208 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 207.7685ms +2024-05-19 18:01:06.358 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:06.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 352.1337ms +2024-05-19 18:01:08.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:01:08.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:01:08.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:01:08.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:01:08.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.120 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:01:08.121 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.4687ms +2024-05-19 18:01:08.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.1076ms +2024-05-19 18:01:08.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.5247ms +2024-05-19 18:01:08.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 160.7694ms +2024-05-19 18:01:08.319 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:01:08.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 200.4151ms +2024-05-19 18:03:30.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:03:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:03:30.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:03:30.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:03:30.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:03:30.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.4807ms +2024-05-19 18:03:30.772 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.6027ms +2024-05-19 18:03:30.775 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.017ms +2024-05-19 18:03:30.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.0834ms +2024-05-19 18:03:30.830 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:03:30.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 197.0526ms +2024-05-19 18:08:32.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:08:32.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:08:32.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:08:32.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:08:32.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:08:32.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.731 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.5921ms +2024-05-19 18:08:32.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.2858ms +2024-05-19 18:08:32.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.1419ms +2024-05-19 18:08:32.832 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 223.4216ms +2024-05-19 18:08:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 269.5457ms +2024-05-19 18:08:38.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:08:38.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:08:38.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:38.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:38.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:08:38.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:08:38.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:38.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:08:38.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:38.954 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.047 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.7893ms +2024-05-19 18:08:39.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 165.9695ms +2024-05-19 18:08:39.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 166.2162ms +2024-05-19 18:08:39.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 167.6646ms +2024-05-19 18:08:39.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:08:39.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 232.0684ms +2024-05-19 18:10:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:10:00. +2024-05-19 18:12:09.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:12:09.146 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:12:09.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:12:09.156 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:12:09.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:12:09.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 153.1876ms +2024-05-19 18:12:09.443 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 291.9581ms +2024-05-19 18:12:09.472 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 315.6618ms +2024-05-19 18:12:09.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 347.1789ms +2024-05-19 18:12:09.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:09.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 412.9541ms +2024-05-19 18:12:11.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:12:11.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:12:11.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:12:11.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:12:11.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:12:11.308 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2317ms +2024-05-19 18:12:11.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.3354ms +2024-05-19 18:12:11.460 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.1489ms +2024-05-19 18:12:11.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.8429ms +2024-05-19 18:12:11.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:12:11.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 245.0346ms +2024-05-19 18:20:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:20:00. +2024-05-19 18:30:00.084 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:30:00. +2024-05-19 18:39:45.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 18:39:45.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 18:39:45.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 18:39:45.968 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:45.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:45.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 18:39:45.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:45.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 18:39:45.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:45.970 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 419.6809ms +2024-05-19 18:39:46.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 546.7002ms +2024-05-19 18:39:46.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 616.5127ms +2024-05-19 18:39:46.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 656.1632ms +2024-05-19 18:39:46.705 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 18:39:46.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 738.1857ms +2024-05-19 18:40:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:40:00. +2024-05-19 18:50:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 16:50:00. +2024-05-19 19:00:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:00:00. +2024-05-19 19:04:14.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:04:14.912 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:14.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:04:14.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:04:14.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:04:14.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:14.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:04:14.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:14.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:14.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.121 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 210.457ms +2024-05-19 19:04:15.208 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 293.4165ms +2024-05-19 19:04:15.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 432.7346ms +2024-05-19 19:04:15.406 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 492.5112ms +2024-05-19 19:04:15.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:15.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 561.6324ms +2024-05-19 19:04:21.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:04:21.128 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:04:21.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:04:21.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:04:21.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:04:21.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.3224ms +2024-05-19 19:04:21.279 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.8291ms +2024-05-19 19:04:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 209.0081ms +2024-05-19 19:04:21.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 292.7897ms +2024-05-19 19:04:21.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:04:21.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 646.5539ms +2024-05-19 19:05:16.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:05:16.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:05:16.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:05:16.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:05:16.079 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:05:16.083 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.165 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.9651ms +2024-05-19 19:05:16.223 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.8207ms +2024-05-19 19:05:16.223 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.3227ms +2024-05-19 19:05:16.281 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 214.5391ms +2024-05-19 19:05:16.309 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:05:16.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 241.2774ms +2024-05-19 19:09:45.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:09:45.563 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:09:45.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:09:45.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:09:45.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:09:45.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.653 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.5461ms +2024-05-19 19:09:45.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.0935ms +2024-05-19 19:09:45.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.3383ms +2024-05-19 19:09:45.708 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.5866ms +2024-05-19 19:09:45.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:09:45.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 318.9062ms +2024-05-19 19:10:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:10:00. +2024-05-19 19:10:06.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:10:06.407 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:10:06.408 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:10:06.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:10:06.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:10:06.410 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.410 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.2722ms +2024-05-19 19:10:06.556 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.4197ms +2024-05-19 19:10:06.557 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.9351ms +2024-05-19 19:10:06.669 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 261.9348ms +2024-05-19 19:10:06.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:10:06.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 433.6558ms +2024-05-19 19:11:33.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:11:33.677 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:33.837 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:33.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.3359ms +2024-05-19 19:11:36.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:11:36.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:11:36.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:11:36.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:11:36.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:11:36.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.660 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.965ms +2024-05-19 19:11:36.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.1936ms +2024-05-19 19:11:36.716 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.0872ms +2024-05-19 19:11:36.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.5627ms +2024-05-19 19:11:36.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:11:36.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 215.5808ms +2024-05-19 19:12:01.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:12:01.089 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:01.245 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:01.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.64ms +2024-05-19 19:12:12.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:12:12.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:12:12.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:12:12.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:12:12.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.316 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:12:12.319 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.400 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.256ms +2024-05-19 19:12:12.455 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.0833ms +2024-05-19 19:12:12.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.9181ms +2024-05-19 19:12:12.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 177.8343ms +2024-05-19 19:12:12.518 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:12:12.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 201.8899ms +2024-05-19 19:13:13.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:13:13.550 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:13:13.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:13:13.555 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:13:13.555 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.556 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:13:13.559 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.191ms +2024-05-19 19:13:13.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.8709ms +2024-05-19 19:13:13.696 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.5858ms +2024-05-19 19:13:13.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.4303ms +2024-05-19 19:13:13.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:13.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 190.662ms +2024-05-19 19:13:36.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:13:36.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:13:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:13:36.578 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:13:36.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:13:36.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.674 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.6654ms +2024-05-19 19:13:36.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.3752ms +2024-05-19 19:13:36.733 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.5919ms +2024-05-19 19:13:36.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.9755ms +2024-05-19 19:13:36.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:13:36.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 220.0757ms +2024-05-19 19:14:11.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:14:11.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:14:11.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:14:11.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:14:11.666 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:14:11.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.668 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.0879ms +2024-05-19 19:14:11.809 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.1564ms +2024-05-19 19:14:11.811 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.3017ms +2024-05-19 19:14:11.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.0982ms +2024-05-19 19:14:11.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:11.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 213.3082ms +2024-05-19 19:14:25.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:14:25.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:26.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:26.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.8396ms +2024-05-19 19:14:29.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:14:29.280 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:14:29.283 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:14:29.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:14:29.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:14:29.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.4179ms +2024-05-19 19:14:29.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.3568ms +2024-05-19 19:14:29.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.8605ms +2024-05-19 19:14:29.448 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.681ms +2024-05-19 19:14:29.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:14:29.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 199.437ms +2024-05-19 19:20:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:20:00. +2024-05-19 19:22:46.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:22:46.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:22:46.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:22:46.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:22:46.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:22:46.898 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.996 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:46.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.2194ms +2024-05-19 19:22:47.045 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:47.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.2781ms +2024-05-19 19:22:47.048 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:47.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.8521ms +2024-05-19 19:22:47.054 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:47.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.9798ms +2024-05-19 19:22:47.101 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:47.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 206.1028ms +2024-05-19 19:22:50.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:22:50.404 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:50.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:50.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.859ms +2024-05-19 19:22:53.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:22:53.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:53.683 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:22:53.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.7368ms +2024-05-19 19:23:09.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:23:09.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:23:09.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:23:09.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:23:09.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:23:09.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.1488ms +2024-05-19 19:23:09.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.5427ms +2024-05-19 19:23:09.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.0315ms +2024-05-19 19:23:09.929 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 165.4257ms +2024-05-19 19:23:09.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:09.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 225.9942ms +2024-05-19 19:23:46.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:23:46.744 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:46.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:23:46.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.0446ms +2024-05-19 19:24:06.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:24:06.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:06.757 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:06.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.1069ms +2024-05-19 19:24:31.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:24:31.494 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:31.640 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:31.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.3253ms +2024-05-19 19:24:35.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:24:35.288 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:24:35.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:24:35.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:24:35.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:24:35.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.4675ms +2024-05-19 19:24:35.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.9765ms +2024-05-19 19:24:35.435 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.6833ms +2024-05-19 19:24:35.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 171.4149ms +2024-05-19 19:24:35.482 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:24:35.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 194.5671ms +2024-05-19 19:26:24.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:26:24.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:26:24.539 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:26:24.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.9126ms +2024-05-19 19:27:16.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:27:16.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:27:16.758 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:27:16.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.7135ms +2024-05-19 19:30:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:30:00. +2024-05-19 19:30:58.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:30:58.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:30:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:30:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:30:58.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.635 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:30:58.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.7216ms +2024-05-19 19:30:58.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.5946ms +2024-05-19 19:30:58.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.7087ms +2024-05-19 19:30:58.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.0166ms +2024-05-19 19:30:58.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:58.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.4937ms +2024-05-19 19:30:59.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:30:59.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:59.716 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:30:59.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.0107ms +2024-05-19 19:31:03.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:31:03.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:31:03.341 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:31:03.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.6229ms +2024-05-19 19:38:40.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:38:40.391 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:38:40.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:38:40.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:38:40.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:38:40.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.585 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 194.8095ms +2024-05-19 19:38:40.674 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 280.5475ms +2024-05-19 19:38:40.782 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 388.2753ms +2024-05-19 19:38:40.851 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 457.4501ms +2024-05-19 19:38:40.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:40.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 550.6601ms +2024-05-19 19:38:41.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:38:41.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:41.744 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:41.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.476ms +2024-05-19 19:38:44.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:38:44.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:44.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:38:44.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.7349ms +2024-05-19 19:39:18.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:39:18.853 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:39:18.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:39:18.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7598ms +2024-05-19 19:40:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:40:00. +2024-05-19 19:48:08.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:48:08.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:08.820 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:08.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.7374ms +2024-05-19 19:48:13.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:48:13.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:48:13.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:48:13.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:48:13.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:48:13.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.156 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.295 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.7874ms +2024-05-19 19:48:13.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 202.0456ms +2024-05-19 19:48:13.409 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 252.9369ms +2024-05-19 19:48:13.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 456.5129ms +2024-05-19 19:48:13.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:13.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 511.5225ms +2024-05-19 19:48:53.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:48:53.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:48:53.117 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:48:53.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:48:53.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:48:53.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.247 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 132.4232ms +2024-05-19 19:48:53.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.9796ms +2024-05-19 19:48:53.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.6817ms +2024-05-19 19:48:53.314 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 198.6915ms +2024-05-19 19:48:53.380 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:48:53.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 263.9665ms +2024-05-19 19:49:05.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:49:05.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:49:05.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:49:05.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:49:05.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:49:05.191 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.276 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.1222ms +2024-05-19 19:49:05.324 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.5778ms +2024-05-19 19:49:05.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.5131ms +2024-05-19 19:49:05.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.7417ms +2024-05-19 19:49:05.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:49:05.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 205.6875ms +2024-05-19 19:50:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 17:50:00. +2024-05-19 19:50:02.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:50:02.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:50:02.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:50:02.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:50:02.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:50:02.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.9884ms +2024-05-19 19:50:02.934 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.3893ms +2024-05-19 19:50:02.938 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.0795ms +2024-05-19 19:50:02.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.0118ms +2024-05-19 19:50:02.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:02.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 202.839ms +2024-05-19 19:50:53.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:50:53.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:50:53.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:50:53.432 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:50:53.431 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.431 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:50:53.436 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.434 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.409ms +2024-05-19 19:50:53.569 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.0382ms +2024-05-19 19:50:53.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.1362ms +2024-05-19 19:50:53.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.5945ms +2024-05-19 19:50:53.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:50:53.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 187.9517ms +2024-05-19 19:51:15.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:51:15.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:51:15.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:51:15.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:51:15.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:51:15.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.4089ms +2024-05-19 19:51:15.435 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.9667ms +2024-05-19 19:51:15.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.857ms +2024-05-19 19:51:15.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.7469ms +2024-05-19 19:51:15.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:51:15.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 204.292ms +2024-05-19 19:52:42.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:52:42.336 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:52:42.338 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:52:42.339 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:52:42.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:52:42.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.9391ms +2024-05-19 19:52:42.480 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.480 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.784ms +2024-05-19 19:52:42.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.6878ms +2024-05-19 19:52:42.548 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 212.798ms +2024-05-19 19:52:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:52:42.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 230.6998ms +2024-05-19 19:54:57.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:54:57.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:54:57.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:54:57.525 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:54:57.526 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:54:57.526 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.525 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.618 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.724ms +2024-05-19 19:54:57.679 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.542ms +2024-05-19 19:54:57.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.8714ms +2024-05-19 19:54:57.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 167.0358ms +2024-05-19 19:54:57.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:54:57.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 227.9176ms +2024-05-19 19:56:30.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:30.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:31.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:31.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3825ms +2024-05-19 19:56:39.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:56:39.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:56:39.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:39.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:56:39.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:56:39.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.578 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.4308ms +2024-05-19 19:56:39.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.4324ms +2024-05-19 19:56:39.637 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.9397ms +2024-05-19 19:56:39.640 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.8319ms +2024-05-19 19:56:39.694 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:39.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 211.1401ms +2024-05-19 19:56:43.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:43.666 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:43.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:43.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.2167ms +2024-05-19 19:56:49.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:49.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:49.403 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:49.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.4522ms +2024-05-19 19:56:51.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:56:51.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:56:51.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:51.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:56:51.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:51.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:51.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:51.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:51.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:56:51.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.8082ms +2024-05-19 19:56:52.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.2845ms +2024-05-19 19:56:52.055 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.7759ms +2024-05-19 19:56:52.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.0438ms +2024-05-19 19:56:52.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:52.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 195.4242ms +2024-05-19 19:56:54.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:56:54.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:54.394 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:56:54.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.9002ms +2024-05-19 19:57:52.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:57:52.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:57:52.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:57:52.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:57:52.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:57:52.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.813 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.4238ms +2024-05-19 19:57:52.867 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.5297ms +2024-05-19 19:57:52.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.057ms +2024-05-19 19:57:52.872 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.2317ms +2024-05-19 19:57:52.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:52.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 199.7929ms +2024-05-19 19:57:55.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:57:55.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:55.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:57:55.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.8123ms +2024-05-19 19:58:27.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:27.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:27.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:27.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.6308ms +2024-05-19 19:58:30.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:30.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:31.114 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:31.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.6221ms +2024-05-19 19:58:35.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:58:35.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:35.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:58:35.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:58:35.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:58:35.265 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.4556ms +2024-05-19 19:58:35.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.6727ms +2024-05-19 19:58:35.455 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.059ms +2024-05-19 19:58:35.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 209.1504ms +2024-05-19 19:58:35.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:35.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 254.0322ms +2024-05-19 19:58:36.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:36.693 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:36.841 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:36.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.3194ms +2024-05-19 19:58:40.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:40.166 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:40.308 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:40.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.536ms +2024-05-19 19:58:43.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:43.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:58:43.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:58:43.285 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.285 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.285 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:58:43.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:58:43.286 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.286 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.384 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.4867ms +2024-05-19 19:58:43.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.6894ms +2024-05-19 19:58:43.439 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.1285ms +2024-05-19 19:58:43.443 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.8599ms +2024-05-19 19:58:43.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:43.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 196.1731ms +2024-05-19 19:58:44.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:44.427 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:44.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:44.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.8356ms +2024-05-19 19:58:45.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:58:45.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:58:45.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:58:45.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:58:45.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:45.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.342ms +2024-05-19 19:58:45.866 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.185ms +2024-05-19 19:58:45.868 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.0047ms +2024-05-19 19:58:45.891 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 169.9584ms +2024-05-19 19:58:45.916 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:45.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 194.979ms +2024-05-19 19:58:47.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:47.184 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:47.319 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:47.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 135.1025ms +2024-05-19 19:58:48.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:48.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:58:48.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:58:48.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:58:48.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:58:48.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.2702ms +2024-05-19 19:58:48.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 134.5682ms +2024-05-19 19:58:48.592 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.592 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.6843ms +2024-05-19 19:58:48.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.5853ms +2024-05-19 19:58:48.685 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:48.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 235.1511ms +2024-05-19 19:58:49.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:49.844 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:49.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:49.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.134ms +2024-05-19 19:58:51.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:51.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:58:51.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:58:51.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:58:51.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:58:51.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.2306ms +2024-05-19 19:58:51.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.8895ms +2024-05-19 19:58:51.753 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.4539ms +2024-05-19 19:58:51.755 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.5436ms +2024-05-19 19:58:51.811 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:51.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 197.4633ms +2024-05-19 19:58:52.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:58:52.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:52.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:58:52.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 152.4943ms +2024-05-19 19:59:06.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:59:06.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:59:06.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:59:06.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:59:06.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:59:06.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.162 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.9506ms +2024-05-19 19:59:06.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.3422ms +2024-05-19 19:59:06.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.2686ms +2024-05-19 19:59:06.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.6523ms +2024-05-19 19:59:06.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:06.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.2649ms +2024-05-19 19:59:08.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:59:08.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:08.395 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:08.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.9069ms +2024-05-19 19:59:18.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 19:59:18.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 19:59:18.862 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.862 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:59:18.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 19:59:18.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 19:59:18.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.6868ms +2024-05-19 19:59:18.996 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:18.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 134.7886ms +2024-05-19 19:59:19.001 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:19.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.1232ms +2024-05-19 19:59:19.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:19.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.57ms +2024-05-19 19:59:19.055 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:19.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 193.9976ms +2024-05-19 19:59:21.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 19:59:21.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:21.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 19:59:21.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.4132ms +2024-05-19 20:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:00:00. +2024-05-19 20:00:22.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:00:22.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:22.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:00:22.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:00:22.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:22.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:22.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:00:22.980 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:22.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:00:22.982 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.6058ms +2024-05-19 20:00:23.123 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4653ms +2024-05-19 20:00:23.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.3591ms +2024-05-19 20:00:23.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.4551ms +2024-05-19 20:00:23.173 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:23.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.1739ms +2024-05-19 20:00:24.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:00:24.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:24.736 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:24.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.2355ms +2024-05-19 20:00:27.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:00:27.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:27.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:27.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.8949ms +2024-05-19 20:00:30.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:00:30.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:00:30.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:00:30.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:00:30.096 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:00:30.096 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.097 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.1172ms +2024-05-19 20:00:30.238 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.4386ms +2024-05-19 20:00:30.241 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.3226ms +2024-05-19 20:00:30.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0023ms +2024-05-19 20:00:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:00:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 207.5804ms +2024-05-19 20:04:26.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:04:26.108 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:04:26.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:04:26.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:04:26.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.117 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:04:26.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.3138ms +2024-05-19 20:04:26.257 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.4499ms +2024-05-19 20:04:26.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.1695ms +2024-05-19 20:04:26.269 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.0918ms +2024-05-19 20:04:26.324 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:26.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.4732ms +2024-05-19 20:04:29.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:04:29.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:29.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:29.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.0839ms +2024-05-19 20:04:37.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:04:37.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:37.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:04:37.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.1583ms +2024-05-19 20:05:13.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:05:13.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:05:13.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:05:13.899 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:05:13.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:05:13.899 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.899 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:13.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.7688ms +2024-05-19 20:05:14.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:14.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.2678ms +2024-05-19 20:05:14.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:14.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.72ms +2024-05-19 20:05:14.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:14.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 174.549ms +2024-05-19 20:05:14.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:14.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 241.6912ms +2024-05-19 20:05:16.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:05:16.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:17.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:17.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.4591ms +2024-05-19 20:05:22.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:05:22.690 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:22.854 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:22.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 164.4352ms +2024-05-19 20:05:32.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:05:32.520 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:32.668 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:05:32.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.8465ms +2024-05-19 20:06:40.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:06:40.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:06:40.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:06:40.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 158.1743ms +2024-05-19 20:07:13.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:07:13.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:07:13.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:07:13.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:07:13.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:07:13.780 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.4952ms +2024-05-19 20:07:13.926 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.9659ms +2024-05-19 20:07:13.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.0479ms +2024-05-19 20:07:13.949 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:13.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 169.6994ms +2024-05-19 20:07:14.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:14.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 229.9335ms +2024-05-19 20:07:15.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:07:15.814 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:15.964 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:07:15.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.1016ms +2024-05-19 20:10:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:10:00. +2024-05-19 20:11:31.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:11:31.603 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:11:31.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:11:31.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:11:31.608 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:11:31.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.3164ms +2024-05-19 20:11:31.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.0689ms +2024-05-19 20:11:31.819 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:31.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 220.8204ms +2024-05-19 20:11:32.027 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:32.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 420.0803ms +2024-05-19 20:11:32.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:32.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 589.2378ms +2024-05-19 20:11:33.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:11:33.090 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:33.243 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:11:33.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.48ms +2024-05-19 20:16:15.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:16:15.459 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:16:15.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:16:15.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:16:15.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:16:15.463 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.6762ms +2024-05-19 20:16:15.599 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.0658ms +2024-05-19 20:16:15.602 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.7754ms +2024-05-19 20:16:15.607 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.632ms +2024-05-19 20:16:15.681 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:15.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 222.2315ms +2024-05-19 20:16:16.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:16:16.129 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:16.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:16:16.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 133.6265ms +2024-05-19 20:20:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:20:00. +2024-05-19 20:20:17.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:20:17.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:20:17.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:20:17.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.6379ms +2024-05-19 20:23:59.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:23:59.524 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:23:59.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:23:59.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.3195ms +2024-05-19 20:30:00.075 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:30:00. +2024-05-19 20:34:50.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:34:50.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.569 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:34:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:34:50.570 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:34:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:34:50.574 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.8793ms +2024-05-19 20:34:50.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:50.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 320.9766ms +2024-05-19 20:34:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:51.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 433.3501ms +2024-05-19 20:34:51.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:51.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 526.4809ms +2024-05-19 20:34:51.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:51.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 532.2373ms +2024-05-19 20:34:52.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:34:52.397 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:52.548 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:34:52.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.0395ms +2024-05-19 20:35:41.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:35:41.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:35:41.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:35:41.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:35:41.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:35:41.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.0559ms +2024-05-19 20:35:41.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 165.9739ms +2024-05-19 20:35:41.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 165.1027ms +2024-05-19 20:35:41.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 222.3342ms +2024-05-19 20:35:41.415 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:41.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 282.4345ms +2024-05-19 20:35:43.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:35:43.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:44.015 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:35:44.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.8581ms +2024-05-19 20:40:00.080 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:40:00. +2024-05-19 20:41:11.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:41:11.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:41:11.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:41:11.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:41:11.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:41:11.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.122 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6548ms +2024-05-19 20:41:11.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.9001ms +2024-05-19 20:41:11.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.5842ms +2024-05-19 20:41:11.193 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.5394ms +2024-05-19 20:41:11.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:11.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.7784ms +2024-05-19 20:41:12.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:41:12.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:12.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:12.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.9813ms +2024-05-19 20:41:21.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:41:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:21.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:41:21.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.1188ms +2024-05-19 20:44:56.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:44:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:44:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:44:56.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:44:56.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:44:56.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 82.687ms +2024-05-19 20:44:56.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 132.8422ms +2024-05-19 20:44:56.720 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.7093ms +2024-05-19 20:44:56.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 198.7597ms +2024-05-19 20:44:56.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:56.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 410.2012ms +2024-05-19 20:44:58.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:44:58.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:58.934 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:44:58.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.0359ms +2024-05-19 20:45:09.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:45:09.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:45:09.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:45:09.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:45:09.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:45:09.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.5984ms +2024-05-19 20:45:09.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.0459ms +2024-05-19 20:45:09.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.1246ms +2024-05-19 20:45:09.550 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.1427ms +2024-05-19 20:45:09.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:09.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 221.5803ms +2024-05-19 20:45:11.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:45:11.827 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:11.973 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:11.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.623ms +2024-05-19 20:45:15.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:45:15.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:45:15.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:45:15.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:45:15.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:45:15.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.408 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.7474ms +2024-05-19 20:45:15.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.9298ms +2024-05-19 20:45:15.467 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.7705ms +2024-05-19 20:45:15.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.8291ms +2024-05-19 20:45:15.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:15.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 207.1393ms +2024-05-19 20:45:19.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:45:19.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:19.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:45:19.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 133.3437ms +2024-05-19 20:48:07.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:48:07.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:48:07.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:48:07.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.399ms +2024-05-19 20:50:00.072 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 18:50:00. +2024-05-19 20:52:44.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:52:44.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.5964ms +2024-05-19 20:52:46.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 20:52:46.836 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 20:52:46.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 20:52:46.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:52:46.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 20:52:46.838 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.838 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.928 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.2147ms +2024-05-19 20:52:46.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.6637ms +2024-05-19 20:52:46.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.1695ms +2024-05-19 20:52:46.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:46.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.6092ms +2024-05-19 20:52:47.033 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:52:47.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 198.0628ms +2024-05-19 20:53:00.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 20:53:00.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:53:01.076 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 20:53:01.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.1409ms +2024-05-19 21:00:00.089 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:00:00. +2024-05-19 21:01:09.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:01:09.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:01:09.190 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:01:09.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.7585ms +2024-05-19 21:01:10.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:01:10.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:01:10.565 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:01:10.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 169.3293ms +2024-05-19 21:04:42.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:04:42.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:04:42.170 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:04:42.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:04:42.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:04:42.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 147.2386ms +2024-05-19 21:04:42.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 266.6ms +2024-05-19 21:04:42.552 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 383.9041ms +2024-05-19 21:04:42.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 421.615ms +2024-05-19 21:04:42.685 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:42.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 513.8515ms +2024-05-19 21:04:46.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:04:46.599 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:46.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:04:46.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.529ms +2024-05-19 21:05:01.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:05:01.571 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:05:01.736 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:05:01.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 165.4532ms +2024-05-19 21:10:00.097 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:10:00. +2024-05-19 21:16:49.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:16:49.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:16:49.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:16:49.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:16:49.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:16:49.343 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.345 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.343 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.5895ms +2024-05-19 21:16:49.635 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 292.0792ms +2024-05-19 21:16:49.754 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 410.3761ms +2024-05-19 21:16:49.846 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 501.7344ms +2024-05-19 21:16:49.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:16:49.905 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:49.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 611.5546ms +2024-05-19 21:16:50.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:16:50.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 106.1395ms +2024-05-19 21:17:44.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:17:44.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:17:44.979 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:17:44.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.6452ms +2024-05-19 21:19:52.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:19:52.647 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:52.805 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:52.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.893ms +2024-05-19 21:19:55.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:19:55.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:19:55.286 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.286 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:19:55.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:19:55.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:19:55.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.288 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.5812ms +2024-05-19 21:19:55.436 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.6224ms +2024-05-19 21:19:55.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.1747ms +2024-05-19 21:19:55.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 191.1216ms +2024-05-19 21:19:55.556 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:55.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 269.2553ms +2024-05-19 21:19:56.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:19:56.641 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:19:56.641 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:19:56.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:19:56.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:19:56.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6053ms +2024-05-19 21:19:56.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.4611ms +2024-05-19 21:19:56.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 162.9993ms +2024-05-19 21:19:56.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.9374ms +2024-05-19 21:19:56.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:19:56.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 218.5945ms +2024-05-19 21:20:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:20:00. +2024-05-19 21:22:14.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:22:14.186 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:22:14.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:22:14.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:22:14.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:22:14.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 167.4114ms +2024-05-19 21:22:14.390 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 202.4114ms +2024-05-19 21:22:14.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 233.7461ms +2024-05-19 21:22:14.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:14.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 327.9972ms +2024-05-19 21:22:15.140 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:15.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 953.7965ms +2024-05-19 21:22:17.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:22:17.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:17.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:17.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 195.921ms +2024-05-19 21:22:34.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:22:34.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:22:34.336 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.336 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:22:34.338 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:22:34.339 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:22:34.341 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.492 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 154.7511ms +2024-05-19 21:22:34.623 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 284.6969ms +2024-05-19 21:22:34.673 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 338.5406ms +2024-05-19 21:22:34.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 346.0703ms +2024-05-19 21:22:34.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:34.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 521.5686ms +2024-05-19 21:22:36.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:22:36.652 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:36.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:22:36.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 247.067ms +2024-05-19 21:23:33.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:23:33.082 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:23:33.252 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:23:33.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.7083ms +2024-05-19 21:29:16.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:29:16.860 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:29:16.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:29:16.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:29:16.861 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.861 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.861 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:16.862 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:16.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.4679ms +2024-05-19 21:29:17.014 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:17.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4717ms +2024-05-19 21:29:17.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:17.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 163.0269ms +2024-05-19 21:29:17.055 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:17.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 194.957ms +2024-05-19 21:29:17.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:17.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 206.8329ms +2024-05-19 21:29:20.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:29:20.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:29:20.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:20.047 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:29:20.050 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:29:20.054 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.8036ms +2024-05-19 21:29:20.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 167.5094ms +2024-05-19 21:29:20.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.2761ms +2024-05-19 21:29:20.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 187.9769ms +2024-05-19 21:29:20.338 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:20.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 291.9483ms +2024-05-19 21:29:22.144 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:22.144 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:22.284 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:22.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.8047ms +2024-05-19 21:29:29.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:29:29.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:29:29.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:29:29.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:29.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:29:29.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.542 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.22ms +2024-05-19 21:29:29.549 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.3565ms +2024-05-19 21:29:29.569 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 182.806ms +2024-05-19 21:29:29.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 193.4758ms +2024-05-19 21:29:29.613 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:29.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 227.5848ms +2024-05-19 21:29:33.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:33.413 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:33.580 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:33.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 167.9587ms +2024-05-19 21:29:34.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:29:34.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:29:34.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:29:34.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:29:34.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:29:34.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.4559ms +2024-05-19 21:29:34.846 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0841ms +2024-05-19 21:29:34.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.4444ms +2024-05-19 21:29:34.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.3274ms +2024-05-19 21:29:34.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:29:34.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 215.7497ms +2024-05-19 21:30:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:30:00. +2024-05-19 21:30:07.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:30:07.846 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:30:07.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:30:07.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:30:07.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:30:07.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.941 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:07.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.1818ms +2024-05-19 21:30:08.000 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:08.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.1206ms +2024-05-19 21:30:08.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:08.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:08.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 163.3607ms +2024-05-19 21:30:08.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.7092ms +2024-05-19 21:30:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:08.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 225.0881ms +2024-05-19 21:30:10.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:30:10.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:10.935 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:10.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.9772ms +2024-05-19 21:30:22.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:30:22.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:22.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:22.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.9451ms +2024-05-19 21:30:38.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:30:38.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:30:38.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:30:38.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:30:38.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:30:38.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.3079ms +2024-05-19 21:30:38.748 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.611ms +2024-05-19 21:30:38.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.9564ms +2024-05-19 21:30:38.763 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 166.7079ms +2024-05-19 21:30:38.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:38.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 229.5654ms +2024-05-19 21:30:41.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:30:41.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:42.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:30:42.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 161.6488ms +2024-05-19 21:40:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:40:00. +2024-05-19 21:50:00.345 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 19:50:00. +2024-05-19 21:53:31.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 21:53:31.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 21:53:31.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:31.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 21:53:31.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:31.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:53:31.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 21:53:31.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:31.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:31.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 169.6385ms +2024-05-19 21:53:32.224 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 279.3263ms +2024-05-19 21:53:32.276 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 331.9053ms +2024-05-19 21:53:32.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 336.0788ms +2024-05-19 21:53:32.597 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:32.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 653.3259ms +2024-05-19 21:53:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 21:53:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:35.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 21:53:35.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 152.9858ms +2024-05-19 22:00:00.350 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:00:00. +2024-05-19 22:00:02.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:00:02.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:02.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:02.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 218.4235ms +2024-05-19 22:00:16.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:00:16.361 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:16.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:16.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.2966ms +2024-05-19 22:00:17.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:00:17.219 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:17.363 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:17.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.5563ms +2024-05-19 22:00:19.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 22:00:19.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 22:00:19.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 22:00:19.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:00:19.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 22:00:19.124 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.123 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.208 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.5575ms +2024-05-19 22:00:19.348 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 226.2166ms +2024-05-19 22:00:19.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 262.8736ms +2024-05-19 22:00:19.554 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 432.5252ms +2024-05-19 22:00:19.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:19.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 773.0902ms +2024-05-19 22:00:22.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:00:22.336 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:22.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:00:22.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.1508ms +2024-05-19 22:09:00.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 22:09:00.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:00.971 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:00.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.0552ms +2024-05-19 22:09:04.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 22:09:04.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 22:09:04.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 22:09:04.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 22:09:04.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:09:04.037 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.3138ms +2024-05-19 22:09:04.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.6512ms +2024-05-19 22:09:04.237 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 206.7306ms +2024-05-19 22:09:04.240 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 211.84ms +2024-05-19 22:09:04.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:04.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 251.6118ms +2024-05-19 22:09:09.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:09:09.906 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:10.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:09:10.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.4452ms +2024-05-19 22:10:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:10:00. +2024-05-19 22:19:51.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:19:51.739 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:19:51.915 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:19:51.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.3335ms +2024-05-19 22:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:20:00. +2024-05-19 22:23:03.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:23:03.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:23:03.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:23:03.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 166.7109ms +2024-05-19 22:23:26.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:23:26.370 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:23:26.545 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:23:26.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.8941ms +2024-05-19 22:24:47.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:24:47.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:24:47.662 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:24:47.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 500.9771ms +2024-05-19 22:28:42.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 22:28:42.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 22:28:42.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 22:28:42.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 22:28:42.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:28:42.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.7193ms +2024-05-19 22:28:42.351 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 321.5673ms +2024-05-19 22:28:42.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 361.5515ms +2024-05-19 22:28:42.472 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 447.2057ms +2024-05-19 22:28:42.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:42.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 567.2874ms +2024-05-19 22:28:42.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:28:42.922 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:43.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:43.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 122.984ms +2024-05-19 22:28:47.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:28:47.365 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:47.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:28:47.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.4634ms +2024-05-19 22:29:56.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:29:56.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:29:56.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:29:56.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.7862ms +2024-05-19 22:30:00.057 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:30:00. +2024-05-19 22:40:00.055 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:40:00. +2024-05-19 22:48:12.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:48:12.848 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:48:13.018 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:48:13.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.512ms +2024-05-19 22:50:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 20:50:00. +2024-05-19 22:50:26.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 22:50:26.055 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 22:50:26.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 22:50:26.057 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 22:50:26.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:50:26.058 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.057 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.058 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 189.3085ms +2024-05-19 22:50:26.384 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 328.537ms +2024-05-19 22:50:26.417 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 361.0408ms +2024-05-19 22:50:26.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 601.5436ms +2024-05-19 22:50:26.666 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:26.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 609.2916ms +2024-05-19 22:50:27.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:50:27.439 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:27.580 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:50:27.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.8429ms +2024-05-19 22:53:51.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:53:51.782 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:53:51.951 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:53:51.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 169.1811ms +2024-05-19 22:55:53.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 22:55:53.693 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:55:53.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 22:55:53.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 158.2128ms +2024-05-19 23:00:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:00:00. +2024-05-19 23:04:29.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:04:29.527 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:04:29.537 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:04:29.538 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:04:29.544 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:04:29.547 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.679 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 139.7034ms +2024-05-19 23:04:29.812 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 269.1911ms +2024-05-19 23:04:29.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:29.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 411.6017ms +2024-05-19 23:04:30.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:30.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 515.7509ms +2024-05-19 23:04:30.154 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:30.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 628.7854ms +2024-05-19 23:04:30.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:04:30.416 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:30.533 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:30.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 116.9809ms +2024-05-19 23:04:43.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:04:43.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:43.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:04:43.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.5872ms +2024-05-19 23:08:08.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:08:08.091 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:08.236 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:08.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.5596ms +2024-05-19 23:08:10.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:08:10.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:08:10.308 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:08:10.312 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:08:10.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:08:10.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.472 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 165.6449ms +2024-05-19 23:08:10.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 171.6014ms +2024-05-19 23:08:10.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 220.5617ms +2024-05-19 23:08:10.619 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 305.3811ms +2024-05-19 23:08:10.662 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:10.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 354.3553ms +2024-05-19 23:08:41.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:08:41.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:41.981 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:08:41.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.3174ms +2024-05-19 23:10:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:10:00. +2024-05-19 23:13:48.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:13:48.782 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:13:48.915 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:13:48.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 132.6448ms +2024-05-19 23:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:20:00. +2024-05-19 23:24:45.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:24:45.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:24:45.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:24:45.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:24:45.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:24:45.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 202.1739ms +2024-05-19 23:24:45.361 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 333.4593ms +2024-05-19 23:24:45.478 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 451.3249ms +2024-05-19 23:24:45.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 543.9388ms +2024-05-19 23:24:45.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:24:45.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 569.9163ms +2024-05-19 23:25:00.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:25:00.786 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:25:00.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:25:00.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:25:00.790 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.790 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:25:00.792 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.5338ms +2024-05-19 23:25:00.931 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.7521ms +2024-05-19 23:25:00.941 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.6801ms +2024-05-19 23:25:00.992 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:00.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 206.609ms +2024-05-19 23:25:01.112 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:01.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 320.5273ms +2024-05-19 23:25:20.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:25:20.073 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:25:20.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:25:20.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:25:20.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:25:20.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.9655ms +2024-05-19 23:25:20.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.3481ms +2024-05-19 23:25:20.215 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.0254ms +2024-05-19 23:25:20.222 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.2357ms +2024-05-19 23:25:20.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:20.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 196.2888ms +2024-05-19 23:25:36.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:25:36.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:25:36.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:25:36.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:25:36.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:25:36.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.673 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.297ms +2024-05-19 23:25:36.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.3137ms +2024-05-19 23:25:36.725 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.7525ms +2024-05-19 23:25:36.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 193.7137ms +2024-05-19 23:25:36.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:25:36.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 246.9879ms +2024-05-19 23:28:44.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:28:44.996 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:28:45.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:28:45.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:28:45.002 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:28:45.002 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.006 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.1672ms +2024-05-19 23:28:45.142 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.6225ms +2024-05-19 23:28:45.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.7918ms +2024-05-19 23:28:45.145 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.8578ms +2024-05-19 23:28:45.209 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:45.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 214.395ms +2024-05-19 23:28:54.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:28:54.122 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:28:54.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:28:54.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:28:54.124 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.125 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:28:54.127 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.125 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.218 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.4771ms +2024-05-19 23:28:54.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.698ms +2024-05-19 23:28:54.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.4682ms +2024-05-19 23:28:54.303 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 180.4508ms +2024-05-19 23:28:54.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:28:54.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 214.8608ms +2024-05-19 23:29:14.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:29:14.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:29:14.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.733 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:29:14.733 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:29:14.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:29:14.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.9519ms +2024-05-19 23:29:14.872 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.6734ms +2024-05-19 23:29:14.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.9006ms +2024-05-19 23:29:14.888 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.7036ms +2024-05-19 23:29:14.928 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:14.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 196.9605ms +2024-05-19 23:29:53.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:29:53.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:29:53.161 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:29:53.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:29:53.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:29:53.161 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.162 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.162 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.248 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.3721ms +2024-05-19 23:29:53.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.2968ms +2024-05-19 23:29:53.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.7972ms +2024-05-19 23:29:53.309 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:53.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.4905ms +2024-05-19 23:29:54.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:29:54.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 1249.6927ms +2024-05-19 23:30:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:30:00. +2024-05-19 23:34:57.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:34:57.746 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:34:57.747 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:34:57.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:34:57.750 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.750 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:34:57.752 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.840 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.8932ms +2024-05-19 23:34:57.886 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.862ms +2024-05-19 23:34:57.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.5243ms +2024-05-19 23:34:57.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:57.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.4597ms +2024-05-19 23:34:58.016 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:34:58.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 271.8893ms +2024-05-19 23:35:46.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:35:46.943 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:46.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:35:46.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:35:46.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:46.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:46.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:35:46.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:46.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:35:46.947 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.029 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6343ms +2024-05-19 23:35:47.088 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.2232ms +2024-05-19 23:35:47.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.6733ms +2024-05-19 23:35:47.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 166.3858ms +2024-05-19 23:35:47.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:35:47.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 206.4238ms +2024-05-19 23:36:51.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:36:51.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:36:52.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:36:52.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.2622ms +2024-05-19 23:37:07.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:37:07.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:37:07.065 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.065 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:37:07.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:37:07.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:37:07.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.163 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.46ms +2024-05-19 23:37:07.217 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.9908ms +2024-05-19 23:37:07.223 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.1958ms +2024-05-19 23:37:07.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 161.6982ms +2024-05-19 23:37:07.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:07.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 208.7414ms +2024-05-19 23:37:15.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:37:15.674 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:15.761 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:15.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6314ms +2024-05-19 23:37:32.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:37:32.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:37:32.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:37:32.097 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:37:32.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:37:32.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.2694ms +2024-05-19 23:37:32.241 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.241 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.1066ms +2024-05-19 23:37:32.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.1244ms +2024-05-19 23:37:32.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 173.2624ms +2024-05-19 23:37:32.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:32.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 195.1574ms +2024-05-19 23:37:49.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:37:49.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:37:49.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:37:49.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:37:49.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:37:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.9296ms +2024-05-19 23:37:49.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.9159ms +2024-05-19 23:37:49.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.2357ms +2024-05-19 23:37:49.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 199.8422ms +2024-05-19 23:37:49.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:37:49.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 213.5907ms +2024-05-19 23:40:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:40:00. +2024-05-19 23:41:50.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:41:50.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:41:50.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:41:50.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.4187ms +2024-05-19 23:41:54.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:41:54.416 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:41:54.566 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:41:54.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.3097ms +2024-05-19 23:44:30.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:44:30.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:30.178 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:30.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.8769ms +2024-05-19 23:44:32.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:44:32.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:44:32.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:44:32.716 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.717 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:44:32.717 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:44:32.719 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.720 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.3787ms +2024-05-19 23:44:32.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.6714ms +2024-05-19 23:44:32.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 177.2198ms +2024-05-19 23:44:32.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:32.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 193.2694ms +2024-05-19 23:44:33.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:33.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 408.1563ms +2024-05-19 23:44:54.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:44:54.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:44:54.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:44:54.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:44:54.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:44:54.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:54.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.6522ms +2024-05-19 23:44:55.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:55.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.3549ms +2024-05-19 23:44:55.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:55.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.1979ms +2024-05-19 23:44:55.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:55.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4188ms +2024-05-19 23:44:55.076 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:44:55.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 204.6696ms +2024-05-19 23:45:10.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:45:10.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:45:10.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:45:10.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.8611ms +2024-05-19 23:45:10.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.5909ms +2024-05-19 23:45:10.381 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:45:10.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.703ms +2024-05-19 23:46:16.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:46:16.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:46:16.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:16.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:46:16.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:16.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:46:16.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:46:16.994 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:16.994 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:16.994 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.084 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.524ms +2024-05-19 23:46:17.134 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.406ms +2024-05-19 23:46:17.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.8019ms +2024-05-19 23:46:17.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 173.3147ms +2024-05-19 23:46:17.193 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:46:17.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 201.0123ms +2024-05-19 23:47:18.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:47:18.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:47:18.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:47:18.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:47:18.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:47:18.071 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.163 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.4778ms +2024-05-19 23:47:18.218 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.0571ms +2024-05-19 23:47:18.220 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.2996ms +2024-05-19 23:47:18.222 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.9464ms +2024-05-19 23:47:18.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:18.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 253.4063ms +2024-05-19 23:47:19.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:47:19.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:47:19.608 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:47:19.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:47:19.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:47:19.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.699 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2325ms +2024-05-19 23:47:19.754 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.9721ms +2024-05-19 23:47:19.762 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.449ms +2024-05-19 23:47:19.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 165.9009ms +2024-05-19 23:47:19.808 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:19.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 200.4137ms +2024-05-19 23:47:24.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:47:24.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:47:24.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:24.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:25.079 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:25.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.9434ms +2024-05-19 23:47:25.134 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:25.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.1745ms +2024-05-19 23:47:31.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:47:31.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:47:31.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:47:31.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:47:31.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:47:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.700 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2493ms +2024-05-19 23:47:31.753 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.44ms +2024-05-19 23:47:31.754 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.3568ms +2024-05-19 23:47:31.758 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.4617ms +2024-05-19 23:47:31.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:31.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 212.3846ms +2024-05-19 23:47:34.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:47:34.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:47:34.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:34.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:34.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:34.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.1995ms +2024-05-19 23:47:34.329 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:47:34.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.5496ms +2024-05-19 23:48:00.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:48:00.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:48:00.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:48:00.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:48:00.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:48:00.729 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.729 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.6727ms +2024-05-19 23:48:00.870 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.9976ms +2024-05-19 23:48:00.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.4988ms +2024-05-19 23:48:00.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.6971ms +2024-05-19 23:48:00.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:00.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 198.9544ms +2024-05-19 23:48:25.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:48:25.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:48:25.435 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:25.435 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:25.523 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:25.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.8216ms +2024-05-19 23:48:25.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:25.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.1453ms +2024-05-19 23:48:32.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:48:32.184 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:48:32.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:48:32.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:48:32.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:48:32.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.191 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.434ms +2024-05-19 23:48:32.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.9257ms +2024-05-19 23:48:32.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.4053ms +2024-05-19 23:48:32.343 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.6842ms +2024-05-19 23:48:32.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:32.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.9032ms +2024-05-19 23:48:49.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:48:49.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:48:49.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:48:49.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:48:49.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:48:49.768 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.768 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.854 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.571ms +2024-05-19 23:48:49.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.909 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.8604ms +2024-05-19 23:48:49.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.007ms +2024-05-19 23:48:49.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.0583ms +2024-05-19 23:48:49.966 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:48:49.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 204.0758ms +2024-05-19 23:49:12.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:49:12.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:49:12.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:49:12.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:49:12.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:49:12.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.794 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.9545ms +2024-05-19 23:49:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.5787ms +2024-05-19 23:49:12.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.5907ms +2024-05-19 23:49:12.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.4949ms +2024-05-19 23:49:12.906 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:12.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 207.846ms +2024-05-19 23:49:37.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:49:37.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:49:37.520 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.520 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:49:37.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:49:37.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:49:37.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.613 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.6191ms +2024-05-19 23:49:37.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.5958ms +2024-05-19 23:49:37.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.3157ms +2024-05-19 23:49:37.672 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.8751ms +2024-05-19 23:49:37.731 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:49:37.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 212.0385ms +2024-05-19 23:50:00.072 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 21:50:00. +2024-05-19 23:56:40.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:56:40.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:56:40.751 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.751 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:56:40.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:56:40.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:56:40.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:40.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 192.0271ms +2024-05-19 23:56:41.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:41.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 300.8885ms +2024-05-19 23:56:41.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:41.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 433.9051ms +2024-05-19 23:56:41.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:41.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 521.3822ms +2024-05-19 23:56:41.306 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:56:41.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 554.5222ms +2024-05-19 23:57:06.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:57:06.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:57:06.954 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:06.954 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:06.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:57:06.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:57:06.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:06.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:57:06.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:06.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.8372ms +2024-05-19 23:57:07.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.0836ms +2024-05-19 23:57:07.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.9565ms +2024-05-19 23:57:07.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 221.5308ms +2024-05-19 23:57:07.246 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:07.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 291.7391ms +2024-05-19 23:57:08.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:57:08.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:08.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:57:08.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:57:08.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:57:08.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:08.947 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:08.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:57:08.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:08.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.047 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 102.4268ms +2024-05-19 23:57:09.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.1806ms +2024-05-19 23:57:09.095 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.2981ms +2024-05-19 23:57:09.102 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.9376ms +2024-05-19 23:57:09.136 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:09.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 192.3093ms +2024-05-19 23:57:22.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:57:22.788 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:57:22.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:57:22.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:57:22.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:57:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 128.3153ms +2024-05-19 23:57:22.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:22.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 201.8741ms +2024-05-19 23:57:23.001 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:23.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 210.2927ms +2024-05-19 23:57:23.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:23.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 212.3614ms +2024-05-19 23:57:23.028 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:57:23.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 241.7732ms +2024-05-19 23:58:26.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-19 23:58:26.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-19 23:58:26.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-19 23:58:26.345 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-19 23:58:26.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-19 23:58:26.349 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.348 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 125.0165ms +2024-05-19 23:58:26.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 167.3269ms +2024-05-19 23:58:26.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.9459ms +2024-05-19 23:58:26.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 176.7135ms +2024-05-19 23:58:26.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-19 23:58:26.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 243.5992ms diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240520.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240520.txt new file mode 100644 index 000000000..cea242fca --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240520.txt @@ -0,0 +1,618 @@ +2024-05-20 00:00:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:00:00. +2024-05-20 00:00:06.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:00:06.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:00:06.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:00:06.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:00:06.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:00:06.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 102.1603ms +2024-05-20 00:00:06.265 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.4933ms +2024-05-20 00:00:06.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.7435ms +2024-05-20 00:00:06.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.0745ms +2024-05-20 00:00:06.325 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:00:06.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 212.6626ms +2024-05-20 00:03:45.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:03:45.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:03:45.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:03:45.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.006 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:03:45.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:03:45.007 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.5336ms +2024-05-20 00:03:45.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.7343ms +2024-05-20 00:03:45.153 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0628ms +2024-05-20 00:03:45.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 179.8613ms +2024-05-20 00:03:45.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:45.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.067ms +2024-05-20 00:03:49.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:03:49.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:03:49.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:03:49.857 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.2432ms +2024-05-20 00:03:49.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.1268ms +2024-05-20 00:03:49.995 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:03:49.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.4746ms +2024-05-20 00:04:00.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:04:00.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:04:00.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:04:00.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:04:00.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:04:00.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.896 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.1282ms +2024-05-20 00:04:00.945 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.1493ms +2024-05-20 00:04:00.952 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.6909ms +2024-05-20 00:04:00.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:00.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.3246ms +2024-05-20 00:04:01.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:01.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 225.4396ms +2024-05-20 00:04:59.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:04:59.842 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:04:59.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:04:59.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:04:59.844 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.844 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.844 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:04:59.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.0237ms +2024-05-20 00:04:59.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.4233ms +2024-05-20 00:04:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.4662ms +2024-05-20 00:04:59.994 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:04:59.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.6231ms +2024-05-20 00:05:00.028 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:00.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 187.1996ms +2024-05-20 00:05:26.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:05:26.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:05:26.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:05:26.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:05:26.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:05:26.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.6338ms +2024-05-20 00:05:26.398 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 160.5216ms +2024-05-20 00:05:26.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 227.4227ms +2024-05-20 00:05:26.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 257.8858ms +2024-05-20 00:05:26.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:05:26.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 311.1425ms +2024-05-20 00:10:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:10:00. +2024-05-20 00:15:46.032 +02:00 [INF] Received a message with ID: '5fc22a4546fe45db918657546af93af1', Correlation ID: '8d829ea8398a4de685dc18139844fe2b', timestamp: 1716156946, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-20 00:15:46.033 +02:00 [INF] Handling a message: student_created with ID: 5fc22a4546fe45db918657546af93af1, Correlation ID: 8d829ea8398a4de685dc18139844fe2b, retry: 0 +2024-05-20 00:15:46.061 +02:00 [INF] Associated profile picture with ID: 00000000-0000-0000-0000-000000000000 for student with ID: af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-20 00:15:46.061 +02:00 [INF] Handled a message: student_created with ID: 5fc22a4546fe45db918657546af93af1, Correlation ID: 8d829ea8398a4de685dc18139844fe2b, retry: 0 +2024-05-20 00:15:52.192 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:15:52.193 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-20 00:15:52.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:15:52.196 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:15:52.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:15:52.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:15:52.204 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 33.7161ms +2024-05-20 00:15:52.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 163.002ms +2024-05-20 00:15:52.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 250.9373ms +2024-05-20 00:15:52.589 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 392.2527ms +2024-05-20 00:15:52.668 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 475.5326ms +2024-05-20 00:15:52.703 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:15:52.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 505.6147ms +2024-05-20 00:16:11.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:16:11.088 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:16:11.090 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:16:11.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-20 00:16:11.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:16:11.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:16:11.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.3757ms +2024-05-20 00:16:11.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 171.6589ms +2024-05-20 00:16:11.281 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 194.2713ms +2024-05-20 00:16:11.283 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 188.7169ms +2024-05-20 00:16:11.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 224.6527ms +2024-05-20 00:16:11.460 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:11.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 366.4839ms +2024-05-20 00:16:34.049 +02:00 [INF] Deregistering a service [id: mediafiles-service:fc52f20ed60c4d749be5413da8d7841a] from Consul... +2024-05-20 00:16:34.050 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/mediafiles-service:fc52f20ed60c4d749be5413da8d7841a" +2024-05-20 00:16:34.051 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/mediafiles-service:fc52f20ed60c4d749be5413da8d7841a +2024-05-20 00:16:34.051 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/mediafiles-service:fc52f20ed60c4d749be5413da8d7841a +2024-05-20 00:16:34.054 +02:00 [INF] Received HTTP response headers after 2.6493ms - 200 +2024-05-20 00:16:34.054 +02:00 [INF] End processing HTTP request after 3.0939ms - 200 +2024-05-20 00:16:34.054 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:16:34.055 +02:00 [INF] Deregistered a service [id: mediafiles-service:fc52f20ed60c4d749be5413da8d7841a] from Consul. +2024-05-20 00:16:40.523 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/wwwroot. Static files may be unavailable. +2024-05-20 00:16:40.671 +02:00 [INF] Registering a service [id: mediafiles-service:64976f29c4e24e04b8d0a1856da9b04f] in Consul... +2024-05-20 00:16:40.694 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-20 00:16:40.698 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-20 00:16:40.698 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-20 00:16:40.705 +02:00 [INF] Received HTTP response headers after 4.6716ms - 200 +2024-05-20 00:16:40.707 +02:00 [INF] End processing HTTP request after 10.4808ms - 200 +2024-05-20 00:16:40.710 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:16:40.711 +02:00 [INF] Registered a service [id: mediafiles-service:64976f29c4e24e04b8d0a1856da9b04f] in Consul. +2024-05-20 00:16:40.714 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.upload_media_file' with routing key: 'upload_media_file' for an exchange: 'mediafiles'. +2024-05-20 00:16:40.725 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.delete_media_file' with routing key: 'delete_media_file' for an exchange: 'mediafiles'. +2024-05-20 00:16:40.728 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.cleanup_unassociated_files' with routing key: 'cleanup_unassociated_files' for an exchange: 'mediafiles'. +2024-05-20 00:16:40.730 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_created' with routing key: 'student_created' for an exchange: 'students'. +2024-05-20 00:16:40.733 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_updated' with routing key: 'student_updated' for an exchange: 'students'. +2024-05-20 00:16:40.736 +02:00 [INF] Declaring a queue: 'mediafiles-service/posts.post_created' with routing key: 'post_created' for an exchange: 'posts'. +2024-05-20 00:16:40.739 +02:00 [INF] Declaring a queue: 'mediafiles-service/events.event_created' with routing key: 'event_created' for an exchange: 'events'. +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - null null +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:16:48.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00000000-0000-0000-0000-000000000000 - 404 0 null 476.3375ms +2024-05-20 00:16:48.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 695.4426ms +2024-05-20 00:16:48.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 701.6568ms +2024-05-20 00:16:48.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 710.6918ms +2024-05-20 00:16:48.976 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:48.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 730.569ms +2024-05-20 00:16:49.069 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:16:49.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 824.8737ms +2024-05-20 00:17:10.492 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-20 00:17:10.494 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-20 00:17:10.589 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-20 00:17:10.591 +02:00 [ERR] Invalid file size: 1068404. Maximum valid file size: 1000000. +MiniSpace.Services.MediaFiles.Application.Exceptions.InvalidFileSizeException: Invalid file size: 1068404. Maximum valid file size: 1000000. + at MiniSpace.Services.MediaFiles.Infrastructure.Services.FileValidator.ValidateFileSize(Int32 size) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/Services/FileValidator.cs:line 29 + at MiniSpace.Services.MediaFiles.Infrastructure.Services.MediaFilesService.UploadAsync(UploadMediaFile command) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/Services/MediaFilesService.cs:line 49 + at MiniSpace.Services.MediaFiles.Api.Program.<>c.<
b__0_4>d.MoveNext() in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/Program.cs:line 37 +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:10.605 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 400 null application/json 113.0933ms +2024-05-20 00:17:11.940 +02:00 [INF] Received a message with ID: '32deaab2adc843c8a3d27b6a51ed98cf', Correlation ID: '6f8b24a90b024f708fd1ff3bc271f5d3', timestamp: 1716157031, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-20 00:17:11.953 +02:00 [INF] Handling a message: student_updated with ID: 32deaab2adc843c8a3d27b6a51ed98cf, Correlation ID: 6f8b24a90b024f708fd1ff3bc271f5d3, retry: 0 +2024-05-20 00:17:12.015 +02:00 [INF] Associated profile picture with ID: 00000000-0000-0000-0000-000000000000 for student with ID: af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-20 00:17:12.017 +02:00 [INF] Handled a message: student_updated with ID: 32deaab2adc843c8a3d27b6a51ed98cf, Correlation ID: 6f8b24a90b024f708fd1ff3bc271f5d3, retry: 0 +2024-05-20 00:17:33.940 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-20 00:17:33.941 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-20 00:17:34.502 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-20 00:17:34.502 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 562.342ms +2024-05-20 00:17:35.252 +02:00 [INF] Received a message with ID: 'cd300040edfc43fab4f826d241a892f4', Correlation ID: 'fcce16f73deb47648a5f000b7c67f216', timestamp: 1716157055, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-20 00:17:35.254 +02:00 [INF] Handling a message: student_updated with ID: cd300040edfc43fab4f826d241a892f4, Correlation ID: fcce16f73deb47648a5f000b7c67f216, retry: 0 +2024-05-20 00:17:35.327 +02:00 [INF] Associated profile picture with ID: 00994fe5-9379-4ee6-80f0-ae1282c3aa41 for student with ID: af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-20 00:17:35.328 +02:00 [INF] Handled a message: student_updated with ID: cd300040edfc43fab4f826d241a892f4, Correlation ID: fcce16f73deb47648a5f000b7c67f216, retry: 0 +2024-05-20 00:17:39.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:17:39.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:17:39.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:17:39.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:17:39.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.136 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:17:39.139 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:17:39.141 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.236 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.0345ms +2024-05-20 00:17:39.237 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.3808ms +2024-05-20 00:17:39.281 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.0277ms +2024-05-20 00:17:39.314 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 183.0342ms +2024-05-20 00:17:39.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 213.234ms +2024-05-20 00:17:39.585 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:17:39.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 445.5923ms +2024-05-20 00:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:20:00. +2024-05-20 00:21:15.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:21:15.611 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:21:15.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:21:15.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:21:15.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:21:15.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:21:15.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.700 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.5771ms +2024-05-20 00:21:15.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.9219ms +2024-05-20 00:21:15.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.3189ms +2024-05-20 00:21:15.755 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.6477ms +2024-05-20 00:21:15.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 203.5706ms +2024-05-20 00:21:15.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:21:15.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 250.5347ms +2024-05-20 00:26:43.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:26:43.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:26:43.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:26:43.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:26:43.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.164 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:26:43.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.167 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:26:43.170 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.0772ms +2024-05-20 00:26:43.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.4293ms +2024-05-20 00:26:43.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.5821ms +2024-05-20 00:26:43.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 159.6786ms +2024-05-20 00:26:43.326 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 163.829ms +2024-05-20 00:26:43.367 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:26:43.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 215.4889ms +2024-05-20 00:27:06.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:27:06.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:27:06.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:27:06.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:27:06.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:27:06.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:27:06.716 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.7538ms +2024-05-20 00:27:06.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.5126ms +2024-05-20 00:27:06.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.0673ms +2024-05-20 00:27:06.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.3368ms +2024-05-20 00:27:06.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.7256ms +2024-05-20 00:27:06.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:27:06.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 202.3753ms +2024-05-20 00:30:00.093 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:30:00. +2024-05-20 00:30:14.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:30:14.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:30:14.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:30:14.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:30:14.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.162 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:30:14.167 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.167 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:30:14.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.8866ms +2024-05-20 00:30:14.257 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.3864ms +2024-05-20 00:30:14.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.3061ms +2024-05-20 00:30:14.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 177.0013ms +2024-05-20 00:30:14.358 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 197.0478ms +2024-05-20 00:30:14.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:14.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 253.331ms +2024-05-20 00:30:19.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:30:19.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:30:19.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:30:19.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:30:19.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:30:19.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:30:19.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.358 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 192.072ms +2024-05-20 00:30:19.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 260.2849ms +2024-05-20 00:30:19.626 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 272.2529ms +2024-05-20 00:30:19.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 305.6269ms +2024-05-20 00:30:19.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 311.5131ms +2024-05-20 00:30:19.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:30:19.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 412.9785ms +2024-05-20 00:34:14.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:34:14.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:34:14.937 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:14.937 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:14.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:34:14.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:14.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:34:14.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:14.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:34:14.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:34:14.940 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:14.940 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.5021ms +2024-05-20 00:34:15.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.3706ms +2024-05-20 00:34:15.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.4602ms +2024-05-20 00:34:15.088 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.8754ms +2024-05-20 00:34:15.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 161.8714ms +2024-05-20 00:34:15.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:34:15.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 194.3684ms +2024-05-20 00:37:11.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:37:11.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:37:11.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:37:11.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:37:11.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:37:11.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:37:11.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6209ms +2024-05-20 00:37:11.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.0626ms +2024-05-20 00:37:11.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.5656ms +2024-05-20 00:37:11.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7116ms +2024-05-20 00:37:11.554 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:11.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 198.6996ms +2024-05-20 00:37:13.494 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:13.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 2139.0642ms +2024-05-20 00:37:53.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:37:53.602 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:37:53.603 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:37:53.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:37:53.605 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.605 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:37:53.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:37:53.607 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.9724ms +2024-05-20 00:37:53.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.7767ms +2024-05-20 00:37:53.748 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.9387ms +2024-05-20 00:37:53.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.8017ms +2024-05-20 00:37:53.794 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 191.9281ms +2024-05-20 00:37:53.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:37:53.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 267.9863ms +2024-05-20 00:40:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:40:00. +2024-05-20 00:40:58.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:40:58.316 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:40:58.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:40:58.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:40:58.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:40:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:40:58.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.330 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.7582ms +2024-05-20 00:40:58.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.5734ms +2024-05-20 00:40:58.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.9161ms +2024-05-20 00:40:58.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 169.8073ms +2024-05-20 00:40:58.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 168.7642ms +2024-05-20 00:40:58.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:40:58.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 232.4304ms +2024-05-20 00:45:37.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 00:45:37.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 00:45:37.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 00:45:37.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:45:37.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 00:45:37.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:45:37.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.1233ms +2024-05-20 00:45:37.237 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.8094ms +2024-05-20 00:45:37.307 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.0192ms +2024-05-20 00:45:37.313 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.9761ms +2024-05-20 00:45:37.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 182.5538ms +2024-05-20 00:45:37.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:37.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 218.0945ms +2024-05-20 00:45:47.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:45:47.545 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:47.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:45:47.547 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:47.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:47.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.0632ms +2024-05-20 00:45:47.675 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:47.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 129.8292ms +2024-05-20 00:45:51.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:45:51.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:45:51.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:51.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:51.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:51.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.6381ms +2024-05-20 00:45:51.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:45:51.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.8232ms +2024-05-20 00:47:07.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 00:47:07.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 00:47:07.060 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:47:07.060 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:47:07.144 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:47:07.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.0543ms +2024-05-20 00:47:07.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 00:47:07.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 531.2423ms +2024-05-20 00:50:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 22:50:00. +2024-05-20 01:00:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:00:00. +2024-05-20 01:10:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:10:00. +2024-05-20 01:20:00.501 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:20:00. +2024-05-20 01:30:00.503 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:30:00. +2024-05-20 01:40:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:40:00. +2024-05-20 01:50:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/19/2024 23:50:00. +2024-05-20 02:00:00.378 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:00:00. +2024-05-20 02:10:00.374 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:10:00. +2024-05-20 02:20:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:20:00. +2024-05-20 02:30:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:30:00. +2024-05-20 02:40:00.436 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:40:00. +2024-05-20 02:50:00.435 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 00:50:00. +2024-05-20 03:00:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:00:00. +2024-05-20 03:10:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:10:00. +2024-05-20 03:20:00.445 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:20:00. +2024-05-20 03:30:00.448 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:30:00. +2024-05-20 03:40:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:40:00. +2024-05-20 03:50:00.429 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 01:50:00. +2024-05-20 04:00:00.535 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:00:00. +2024-05-20 04:10:00.173 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:10:00. +2024-05-20 04:20:00.485 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:20:00. +2024-05-20 04:30:00.475 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:30:00. +2024-05-20 04:40:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:40:00. +2024-05-20 04:50:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 02:50:00. +2024-05-20 05:00:00.356 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:00:00. +2024-05-20 05:10:00.359 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:10:00. +2024-05-20 05:20:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:20:00. +2024-05-20 05:30:00.375 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:30:00. +2024-05-20 05:40:00.376 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:40:00. +2024-05-20 05:50:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 03:50:00. +2024-05-20 06:00:00.387 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:00:00. +2024-05-20 06:10:00.372 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:10:00. +2024-05-20 06:20:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:20:00. +2024-05-20 06:30:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:30:00. +2024-05-20 06:40:00.457 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:40:00. +2024-05-20 06:50:00.453 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 04:50:00. +2024-05-20 07:00:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:00:00. +2024-05-20 07:10:00.425 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:10:00. +2024-05-20 07:20:00.407 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:20:00. +2024-05-20 07:30:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:30:00. +2024-05-20 07:40:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:40:00. +2024-05-20 07:50:00.430 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 05:50:00. +2024-05-20 08:00:00.462 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 06:00:00. +2024-05-20 08:10:00.099 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 06:10:00. +2024-05-20 08:20:00.442 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 06:20:00. +2024-05-20 08:30:00.442 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 06:30:00. +2024-05-20 08:35:14.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - null null +2024-05-20 08:35:14.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-20 08:35:14.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-20 08:35:14.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-20 08:35:14.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 08:35:14.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-20 08:35:14.442 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d803ea2c-4b5a-4981-bb5f-6c50eea3905d - 200 null application/json 227.4858ms +2024-05-20 08:35:14.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 346.3491ms +2024-05-20 08:35:14.889 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 449.8493ms +2024-05-20 08:35:14.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 454.5975ms +2024-05-20 08:35:14.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 499.8373ms +2024-05-20 08:35:14.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:14.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 507.8483ms +2024-05-20 08:35:18.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 08:35:18.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:18.162 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:18.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.5657ms +2024-05-20 08:35:23.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-20 08:35:23.553 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:23.637 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-20 08:35:23.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.1135ms +2024-05-20 08:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/20/2024 06:40:00. diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240522.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240522.txt new file mode 100644 index 000000000..4207879ca --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240522.txt @@ -0,0 +1,2881 @@ +2024-05-22 11:03:01.441 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/wwwroot. Static files may be unavailable. +2024-05-22 11:03:01.592 +02:00 [INF] Registering a service [id: mediafiles-service:48da200f89b34292a7c675b052f46f38] in Consul... +2024-05-22 11:03:01.618 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-22 11:03:01.623 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:03:01.624 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:03:01.634 +02:00 [INF] Received HTTP response headers after 6.6862ms - 200 +2024-05-22 11:03:01.636 +02:00 [INF] End processing HTTP request after 14.443ms - 200 +2024-05-22 11:03:01.639 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 11:03:01.640 +02:00 [INF] Registered a service [id: mediafiles-service:48da200f89b34292a7c675b052f46f38] in Consul. +2024-05-22 11:03:01.644 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.upload_media_file' with routing key: 'upload_media_file' for an exchange: 'mediafiles'. +2024-05-22 11:03:01.657 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.delete_media_file' with routing key: 'delete_media_file' for an exchange: 'mediafiles'. +2024-05-22 11:03:01.661 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.cleanup_unassociated_files' with routing key: 'cleanup_unassociated_files' for an exchange: 'mediafiles'. +2024-05-22 11:03:01.664 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_created' with routing key: 'student_created' for an exchange: 'students'. +2024-05-22 11:03:01.668 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_updated' with routing key: 'student_updated' for an exchange: 'students'. +2024-05-22 11:03:01.671 +02:00 [INF] Declaring a queue: 'mediafiles-service/posts.post_created' with routing key: 'post_created' for an exchange: 'posts'. +2024-05-22 11:03:01.674 +02:00 [INF] Declaring a queue: 'mediafiles-service/events.event_created' with routing key: 'event_created' for an exchange: 'events'. +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 11:03:13.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 11:03:13.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.448 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.448 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 696.9575ms +2024-05-22 11:03:14.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 696.9286ms +2024-05-22 11:03:14.467 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 708.7001ms +2024-05-22 11:03:14.494 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 735.775ms +2024-05-22 11:03:14.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 812.1936ms +2024-05-22 11:03:14.621 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 862.7728ms +2024-05-22 11:03:14.877 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:14.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1118.2841ms +2024-05-22 11:03:36.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:03:36.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:03:36.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 11:03:36.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.549ms +2024-05-22 11:03:36.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.154ms +2024-05-22 11:03:36.550 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:36.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.6928ms +2024-05-22 11:03:47.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:03:47.066 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.8855ms +2024-05-22 11:03:47.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:03:47.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:03:47.823 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.823 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.906 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.4556ms +2024-05-22 11:03:47.959 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:47.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.1252ms +2024-05-22 11:03:49.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:03:49.599 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:49.684 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:49.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.0227ms +2024-05-22 11:03:51.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:03:51.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:03:51.376 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:51.376 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:51.458 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:51.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 82.5147ms +2024-05-22 11:03:51.511 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:51.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 135.7429ms +2024-05-22 11:03:55.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:03:55.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:03:55.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:55.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:56.033 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:56.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.841ms +2024-05-22 11:03:56.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:03:56.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 134.4762ms +2024-05-22 11:10:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 09:10:00. +2024-05-22 11:20:00.508 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 09:20:00. +2024-05-22 11:23:47.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 11:23:47.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 11:23:47.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:23:47.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:23:47.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:23:47.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 11:23:47.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 11:23:47.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:47.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.148 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 349.9186ms +2024-05-22 11:23:48.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 362.3299ms +2024-05-22 11:23:48.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 423.1845ms +2024-05-22 11:23:48.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 431.613ms +2024-05-22 11:23:48.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 472.7337ms +2024-05-22 11:23:48.276 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 476.8893ms +2024-05-22 11:23:48.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:48.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 556.3121ms +2024-05-22 11:23:52.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:23:52.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:52.906 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:23:52.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.7459ms +2024-05-22 11:24:20.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:24:20.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:20.380 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:20.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.8848ms +2024-05-22 11:24:27.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 11:24:27.918 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 11:24:27.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:24:27.920 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:24:27.921 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.920 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 11:24:27.922 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 11:24:27.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:24:27.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:27.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.0029ms +2024-05-22 11:24:28.054 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 134.4719ms +2024-05-22 11:24:28.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.3686ms +2024-05-22 11:24:28.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.6487ms +2024-05-22 11:24:28.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 257.7108ms +2024-05-22 11:24:28.238 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 314.6579ms +2024-05-22 11:24:28.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:24:28.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 386.3095ms +2024-05-22 11:26:38.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:26:38.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:26:38.477 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:26:38.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.5547ms +2024-05-22 11:29:30.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 11:29:30.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 11:29:30.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 11:29:30.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 11:29:30.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 11:29:30.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 11:29:30.097 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 11:29:30.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.186 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.187 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.0846ms +2024-05-22 11:29:30.188 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.246ms +2024-05-22 11:29:30.236 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.2456ms +2024-05-22 11:29:30.239 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.5942ms +2024-05-22 11:29:30.239 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.7185ms +2024-05-22 11:29:30.264 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 167.7638ms +2024-05-22 11:29:30.499 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 11:29:30.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 404.7689ms +2024-05-22 11:30:00.473 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 09:30:00. +2024-05-22 11:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 09:40:00. +2024-05-22 11:50:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 09:50:00. +2024-05-22 12:00:00.411 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:00:00. +2024-05-22 12:10:00.404 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:10:00. +2024-05-22 12:20:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:20:00. +2024-05-22 12:30:00.399 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:30:00. +2024-05-22 12:40:00.401 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:40:00. +2024-05-22 12:50:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 10:50:00. +2024-05-22 13:00:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:00:00. +2024-05-22 13:10:00.777 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:10:00. +2024-05-22 13:20:00.774 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:20:00. +2024-05-22 13:30:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:30:00. +2024-05-22 13:40:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:40:00. +2024-05-22 13:50:00.407 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 11:50:00. +2024-05-22 14:00:00.480 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:00:00. +2024-05-22 14:10:00.136 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:10:00. +2024-05-22 14:20:00.427 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:20:00. +2024-05-22 14:30:00.423 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:30:00. +2024-05-22 14:40:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:40:00. +2024-05-22 14:50:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 12:50:00. +2024-05-22 15:00:01.220 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:00:00. +2024-05-22 15:10:01.213 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:10:01. +2024-05-22 15:20:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:20:00. +2024-05-22 15:30:00.450 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:30:00. +2024-05-22 15:40:00.448 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:40:00. +2024-05-22 15:50:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 13:50:00. +2024-05-22 16:00:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:00:00. +2024-05-22 16:10:16.006 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:10:00. +2024-05-22 16:20:16.015 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:20:15. +2024-05-22 16:30:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:30:00. +2024-05-22 16:40:00.575 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:40:00. +2024-05-22 16:50:00.576 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 14:50:00. +2024-05-22 17:00:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:00:00. +2024-05-22 17:10:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:10:00. +2024-05-22 17:20:05.760 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:20:00. +2024-05-22 17:30:05.764 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:30:05. +2024-05-22 17:40:00.098 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:40:00. +2024-05-22 17:50:00.563 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 15:50:00. +2024-05-22 18:00:00.532 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:00:00. +2024-05-22 18:10:00.080 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:10:00. +2024-05-22 18:20:00.085 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:20:00. +2024-05-22 18:30:15.405 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:30:00. +2024-05-22 18:40:15.397 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:40:15. +2024-05-22 18:50:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 16:50:00. +2024-05-22 19:00:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:00:00. +2024-05-22 19:10:06.228 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:10:00. +2024-05-22 19:20:06.234 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:20:06. +2024-05-22 19:30:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:30:00. +2024-05-22 19:40:10.484 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:40:00. +2024-05-22 19:50:10.477 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 17:50:10. +2024-05-22 20:00:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:00:00. +2024-05-22 20:10:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:10:00. +2024-05-22 20:20:00.557 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:20:00. +2024-05-22 20:30:00.549 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:30:00. +2024-05-22 20:40:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:40:00. +2024-05-22 20:45:30.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:45:30.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:45:30.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:45:30.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:45:30.905 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.905 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:45:30.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:45:30.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:45:30.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:30.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.367 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 465.5477ms +2024-05-22 20:45:31.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 574.3547ms +2024-05-22 20:45:31.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 690.7775ms +2024-05-22 20:45:31.678 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 772.5272ms +2024-05-22 20:45:31.784 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:31.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 877.3954ms +2024-05-22 20:45:32.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:45:32.320 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:45:32.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:45:32.320 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:45:32.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:45:32.323 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:45:32.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:45:32.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.349 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 1447.6336ms +2024-05-22 20:45:32.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 1503.1121ms +2024-05-22 20:45:32.460 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 133.2468ms +2024-05-22 20:45:32.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 143.0803ms +2024-05-22 20:45:32.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 174.6592ms +2024-05-22 20:45:32.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 240.4033ms +2024-05-22 20:45:32.608 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 288.6465ms +2024-05-22 20:45:32.638 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 315.5442ms +2024-05-22 20:45:32.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:32.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 559.3447ms +2024-05-22 20:45:51.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:45:51.108 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:45:51.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:45:51.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.110 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:45:51.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:45:51.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:45:51.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:45:51.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.254 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.2715ms +2024-05-22 20:45:51.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.3446ms +2024-05-22 20:45:51.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.3859ms +2024-05-22 20:45:51.284 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 173.8374ms +2024-05-22 20:45:51.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 244.4966ms +2024-05-22 20:45:51.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 264.6139ms +2024-05-22 20:45:51.498 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:51.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.3183ms +2024-05-22 20:45:53.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:45:53.038 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:45:53.045 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:45:53.050 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:45:53.054 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:45:53.057 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:45:53.066 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:45:53.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 100.4541ms +2024-05-22 20:45:53.165 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 101.6164ms +2024-05-22 20:45:53.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.7692ms +2024-05-22 20:45:53.193 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.4179ms +2024-05-22 20:45:53.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.6122ms +2024-05-22 20:45:53.224 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 159.6314ms +2024-05-22 20:45:53.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:45:53.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 424.8619ms +2024-05-22 20:46:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:46:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:46:23.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:46:23.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:46:23.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:46:23.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:46:23.049 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:46:23.051 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5182ms +2024-05-22 20:46:23.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.6969ms +2024-05-22 20:46:23.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.9584ms +2024-05-22 20:46:23.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.346ms +2024-05-22 20:46:23.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.8526ms +2024-05-22 20:46:23.198 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.9549ms +2024-05-22 20:46:23.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:23.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 408.9383ms +2024-05-22 20:46:25.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:46:25.492 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:25.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:25.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.7347ms +2024-05-22 20:46:33.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:46:33.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:34.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:34.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.468ms +2024-05-22 20:46:36.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:46:36.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:46:36.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:36.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:36.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:36.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.3417ms +2024-05-22 20:46:36.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:36.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 134.4232ms +2024-05-22 20:46:51.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:46:51.311 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:51.453 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:51.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.1276ms +2024-05-22 20:46:55.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:46:55.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:46:55.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:46:55.234 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:46:55.235 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.234 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:46:55.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:46:55.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:46:55.237 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.237 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.7091ms +2024-05-22 20:46:55.333 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.0694ms +2024-05-22 20:46:55.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.9985ms +2024-05-22 20:46:55.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.2353ms +2024-05-22 20:46:55.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.2579ms +2024-05-22 20:46:55.389 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.073ms +2024-05-22 20:46:55.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:46:55.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 426.1447ms +2024-05-22 20:47:20.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:20.262 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:20.353 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:20.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.5666ms +2024-05-22 20:47:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:23.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:23.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:23.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.1541ms +2024-05-22 20:47:25.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:25.007 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.4768ms +2024-05-22 20:47:25.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:47:25.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:47:25.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:47:25.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:25.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:47:25.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:47:25.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:47:25.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.1316ms +2024-05-22 20:47:25.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.028ms +2024-05-22 20:47:25.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 137.9563ms +2024-05-22 20:47:25.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.484ms +2024-05-22 20:47:25.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.5787ms +2024-05-22 20:47:25.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:25.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.2596ms +2024-05-22 20:47:26.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:26.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 417.1023ms +2024-05-22 20:47:26.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:26.232 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:26.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:26.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 99.556ms +2024-05-22 20:47:27.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:47:27.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:47:27.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:47:27.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:47:27.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:27.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:47:27.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:47:27.179 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.5806ms +2024-05-22 20:47:27.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 103.6072ms +2024-05-22 20:47:27.324 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.5094ms +2024-05-22 20:47:27.333 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.333 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:27.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 160.4826ms +2024-05-22 20:47:27.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 171.4379ms +2024-05-22 20:47:27.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.5466ms +2024-05-22 20:47:27.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:27.943 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:28.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:28.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.1646ms +2024-05-22 20:47:28.279 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:28.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1111.0863ms +2024-05-22 20:47:29.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:29.054 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:29.144 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:29.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.023ms +2024-05-22 20:47:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:29.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:29.704 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:29.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 103.9783ms +2024-05-22 20:47:30.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 20:47:30.629 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 20:47:30.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:47:30.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 20:47:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 20:47:30.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:47:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:47:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.720 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.720 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.0648ms +2024-05-22 20:47:30.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.3567ms +2024-05-22 20:47:30.772 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.2144ms +2024-05-22 20:47:30.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.3258ms +2024-05-22 20:47:30.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.9835ms +2024-05-22 20:47:30.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:30.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.9549ms +2024-05-22 20:47:31.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:47:31.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 424.4352ms +2024-05-22 20:50:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 18:50:00. +2024-05-22 20:58:54.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:58:54.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.251ms +2024-05-22 20:58:55.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 20:58:55.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 20:58:55.094 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 81.7593ms +2024-05-22 20:58:55.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 20:58:55.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.5116ms +2024-05-22 20:58:55.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 20:58:55.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 403.126ms +2024-05-22 21:00:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:00:00. +2024-05-22 21:08:44.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:44.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:44.572 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:44.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.547ms +2024-05-22 21:08:44.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:44.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:45.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.4613ms +2024-05-22 21:08:46.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:08:46.038 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:08:46.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:08:46.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:46.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:08:46.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:08:46.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:08:46.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.8397ms +2024-05-22 21:08:46.303 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 262.6398ms +2024-05-22 21:08:46.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 318.0082ms +2024-05-22 21:08:46.447 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 406.9157ms +2024-05-22 21:08:46.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:46.500 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 502.4962ms +2024-05-22 21:08:46.561 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 523.0792ms +2024-05-22 21:08:46.589 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.7892ms +2024-05-22 21:08:46.637 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:46.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 597.898ms +2024-05-22 21:08:47.616 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:08:47.617 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:08:47.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:08:47.618 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.618 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:08:47.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:08:47.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:08:47.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:47.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.704 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.2837ms +2024-05-22 21:08:47.705 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.931ms +2024-05-22 21:08:47.765 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.6931ms +2024-05-22 21:08:47.819 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 200.6062ms +2024-05-22 21:08:47.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 318.1873ms +2024-05-22 21:08:47.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:47.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 377.6773ms +2024-05-22 21:08:48.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:48.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:48.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:48.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 449.5883ms +2024-05-22 21:08:48.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:48.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.6938ms +2024-05-22 21:08:49.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:08:49.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:08:49.768 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:08:49.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:08:49.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:08:49.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.771 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:49.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:08:49.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.8284ms +2024-05-22 21:08:49.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.4192ms +2024-05-22 21:08:49.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.8479ms +2024-05-22 21:08:49.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.1917ms +2024-05-22 21:08:49.924 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:49.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.0602ms +2024-05-22 21:08:50.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:08:50.059 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:50.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:50.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 360.0635ms +2024-05-22 21:08:50.162 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:50.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 103.7891ms +2024-05-22 21:08:50.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:08:50.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.3207ms +2024-05-22 21:10:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:10:00. +2024-05-22 21:11:47.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:11:47.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:11:47.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:11:47.681 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:11:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:11:47.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:11:47.684 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.683 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.684 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.683 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.756 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.2891ms +2024-05-22 21:11:47.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6437ms +2024-05-22 21:11:47.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.1173ms +2024-05-22 21:11:47.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.0044ms +2024-05-22 21:11:47.840 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.8531ms +2024-05-22 21:11:47.842 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:47.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 160.1948ms +2024-05-22 21:11:48.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:48.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.7962ms +2024-05-22 21:11:48.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:48.859 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:48.961 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:48.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 102.4082ms +2024-05-22 21:11:53.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:11:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:53.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:11:53.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:11:53.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:11:53.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:11:53.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:11:53.325 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.325 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.325 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.332ms +2024-05-22 21:11:53.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.5179ms +2024-05-22 21:11:53.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.9668ms +2024-05-22 21:11:53.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.5746ms +2024-05-22 21:11:53.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.7776ms +2024-05-22 21:11:53.482 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.9655ms +2024-05-22 21:11:53.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:53.735 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:53.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.7767ms +2024-05-22 21:11:54.153 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:54.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 831.8661ms +2024-05-22 21:11:55.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:55.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:55.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:55.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.5971ms +2024-05-22 21:11:55.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:55.860 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:55.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:55.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.8872ms +2024-05-22 21:11:57.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:57.011 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:57.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:57.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.6909ms +2024-05-22 21:11:57.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:57.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:57.854 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:57.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.3912ms +2024-05-22 21:11:59.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:11:59.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:11:59.175 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:11:59.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:59.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:11:59.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:11:59.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:11:59.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.3345ms +2024-05-22 21:11:59.277 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 104.2327ms +2024-05-22 21:11:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.4442ms +2024-05-22 21:11:59.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.4948ms +2024-05-22 21:11:59.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.1279ms +2024-05-22 21:11:59.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.9174ms +2024-05-22 21:11:59.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:11:59.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.577 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 404.0035ms +2024-05-22 21:11:59.637 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:11:59.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.4724ms +2024-05-22 21:12:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:12:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:12:08.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:12:08.890 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:12:08.890 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:12:08.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:12:08.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:12:08.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.973 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.3069ms +2024-05-22 21:12:08.983 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:08.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.0182ms +2024-05-22 21:12:09.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.5034ms +2024-05-22 21:12:09.036 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.1932ms +2024-05-22 21:12:09.038 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.5444ms +2024-05-22 21:12:09.046 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.6123ms +2024-05-22 21:12:09.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 468.9147ms +2024-05-22 21:12:09.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:12:09.426 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:12:09.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.5952ms +2024-05-22 21:16:01.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:01.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:01.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:01.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.6605ms +2024-05-22 21:16:02.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:02.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:02.341 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:02.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.8183ms +2024-05-22 21:16:03.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:03.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:03.685 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:03.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.7524ms +2024-05-22 21:16:23.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:23.070 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:23.157 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:23.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1897ms +2024-05-22 21:16:23.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:23.809 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:23.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:23.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.1623ms +2024-05-22 21:16:25.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:16:25.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:16:25.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:16:25.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:16:25.508 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:25.509 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:16:25.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:16:25.510 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.510 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.7402ms +2024-05-22 21:16:25.602 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.1468ms +2024-05-22 21:16:25.644 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.829ms +2024-05-22 21:16:25.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.2452ms +2024-05-22 21:16:25.651 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.3967ms +2024-05-22 21:16:25.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:25.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 387.9999ms +2024-05-22 21:16:26.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:26.012 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.9721ms +2024-05-22 21:16:26.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:16:26.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:26.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:16:26.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:16:26.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:16:26.965 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:16:26.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:26.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:16:26.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.161ms +2024-05-22 21:16:27.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.8548ms +2024-05-22 21:16:27.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.1898ms +2024-05-22 21:16:27.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.4096ms +2024-05-22 21:16:27.108 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.8734ms +2024-05-22 21:16:27.379 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:27.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 416.4687ms +2024-05-22 21:16:31.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:31.208 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.0338ms +2024-05-22 21:16:31.417 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 5910.3116ms +2024-05-22 21:16:31.560 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 4596.4545ms +2024-05-22 21:16:31.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:16:31.834 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:16:31.834 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:16:31.835 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:16:31.836 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:16:31.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:16:31.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.838 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:16:31.838 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.920 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.1995ms +2024-05-22 21:16:31.933 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.2688ms +2024-05-22 21:16:31.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.0226ms +2024-05-22 21:16:31.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.7284ms +2024-05-22 21:16:31.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.7688ms +2024-05-22 21:16:31.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:31.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.3733ms +2024-05-22 21:16:32.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:16:32.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 420.6865ms +2024-05-22 21:20:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:20:00. +2024-05-22 21:21:34.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:21:34.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:34.321 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:34.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 102.2172ms +2024-05-22 21:21:36.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:21:36.185 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:36.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:36.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.7127ms +2024-05-22 21:21:39.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:21:39.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:39.676 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:21:39.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.3724ms +2024-05-22 21:23:01.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:01.864 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:01.879 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:23:01.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:01.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:01.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:23:01.886 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:23:01.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.9802ms +2024-05-22 21:23:01.996 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:01.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.9445ms +2024-05-22 21:23:02.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.3055ms +2024-05-22 21:23:02.038 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.1596ms +2024-05-22 21:23:02.045 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 164.2338ms +2024-05-22 21:23:02.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.8263ms +2024-05-22 21:23:02.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:02.242 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.324 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 446.346ms +2024-05-22 21:23:02.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:02.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.1929ms +2024-05-22 21:23:03.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:03.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:03.190 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:03.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.8638ms +2024-05-22 21:23:04.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:23:04.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:04.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:23:04.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:04.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:23:04.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:04.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:04.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:04.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.0395ms +2024-05-22 21:23:05.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.7417ms +2024-05-22 21:23:05.088 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 160.5823ms +2024-05-22 21:23:05.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 165.9309ms +2024-05-22 21:23:05.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 172.9312ms +2024-05-22 21:23:05.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 174.6792ms +2024-05-22 21:23:05.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:05.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 404.818ms +2024-05-22 21:23:06.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:06.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:06.424 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:06.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.8345ms +2024-05-22 21:23:07.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:07.676 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:07.772 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:07.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.5525ms +2024-05-22 21:23:10.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:10.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:10.258 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:10.258 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:10.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:10.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.7743ms +2024-05-22 21:23:10.401 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:10.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.2539ms +2024-05-22 21:23:11.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:11.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:11.199 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:11.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.3788ms +2024-05-22 21:23:16.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:16.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:23:16.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:16.072 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:16.073 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:23:16.073 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:16.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:23:16.072 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.072 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.168 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.3133ms +2024-05-22 21:23:16.169 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.9618ms +2024-05-22 21:23:16.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.9321ms +2024-05-22 21:23:16.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.0361ms +2024-05-22 21:23:16.231 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 159.6641ms +2024-05-22 21:23:16.231 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.0268ms +2024-05-22 21:23:16.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:16.437 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.529 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 458.2156ms +2024-05-22 21:23:16.543 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:16.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.3129ms +2024-05-22 21:23:18.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:18.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:18.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:18.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 105.0229ms +2024-05-22 21:23:44.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:44.414 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:44.577 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:44.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.7731ms +2024-05-22 21:23:46.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:46.710 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:46.873 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:46.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.2074ms +2024-05-22 21:23:48.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:23:48.825 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:23:48.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:48.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:23:48.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.842 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:48.844 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.840 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:48.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:23:48.846 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.786ms +2024-05-22 21:23:48.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.707ms +2024-05-22 21:23:48.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:48.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 166.5538ms +2024-05-22 21:23:49.009 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 162.9383ms +2024-05-22 21:23:49.015 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.3101ms +2024-05-22 21:23:49.018 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.0562ms +2024-05-22 21:23:49.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 469.8908ms +2024-05-22 21:23:49.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:49.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:49.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.2123ms +2024-05-22 21:23:50.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:23:50.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:50.661 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:50.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.381ms +2024-05-22 21:23:52.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:23:52.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:23:52.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:52.015 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:52.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:52.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.7491ms +2024-05-22 21:23:52.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:23:52.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.6154ms +2024-05-22 21:24:13.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:24:13.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:13.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:13.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:13.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:13.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.6452ms +2024-05-22 21:24:14.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:14.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 285.7461ms +2024-05-22 21:24:19.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:19.385 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:19.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:19.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.7012ms +2024-05-22 21:24:44.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:24:44.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:44.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:44.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 160.8555ms +2024-05-22 21:24:47.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:24:47.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:24:47.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:24:47.244 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:24:47.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:24:47.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:24:47.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.8547ms +2024-05-22 21:24:47.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.0854ms +2024-05-22 21:24:47.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.897ms +2024-05-22 21:24:47.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.9983ms +2024-05-22 21:24:47.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.6592ms +2024-05-22 21:24:47.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.5951ms +2024-05-22 21:24:47.661 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:47.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.7625ms +2024-05-22 21:24:56.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:56.979 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.075 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.3697ms +2024-05-22 21:24:57.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:24:57.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:57.284 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.284 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.1691ms +2024-05-22 21:24:57.453 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:57.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 169.758ms +2024-05-22 21:24:59.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:24:59.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:59.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:24:59.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.6728ms +2024-05-22 21:25:01.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:01.257 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:01.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:01.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:01.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:01.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.4884ms +2024-05-22 21:25:01.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:01.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.7638ms +2024-05-22 21:25:14.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:14.378 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:14.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:14.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.6618ms +2024-05-22 21:25:16.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:16.709 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:16.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:16.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:16.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:16.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 102.5019ms +2024-05-22 21:25:16.851 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:16.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.5382ms +2024-05-22 21:25:17.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:17.529 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:17.669 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:17.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.8661ms +2024-05-22 21:25:19.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:25:19.197 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:25:19.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:25:19.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:25:19.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:19.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:19.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:25:19.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.204 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.4264ms +2024-05-22 21:25:19.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.5787ms +2024-05-22 21:25:19.362 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 163.5273ms +2024-05-22 21:25:19.365 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 165.8951ms +2024-05-22 21:25:19.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 168.2475ms +2024-05-22 21:25:19.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 169.9956ms +2024-05-22 21:25:19.668 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:19.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 472.7904ms +2024-05-22 21:25:20.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:20.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:20.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:20.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.6694ms +2024-05-22 21:25:22.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:22.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:22.161 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:22.161 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:22.263 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:22.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 103.0786ms +2024-05-22 21:25:22.329 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:22.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 168.5965ms +2024-05-22 21:25:25.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:25.354 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:25.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:25.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.0737ms +2024-05-22 21:25:34.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:34.495 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:34.661 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:34.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 167.3025ms +2024-05-22 21:25:38.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:38.719 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:38.872 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:38.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.4899ms +2024-05-22 21:25:42.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:25:42.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:42.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:42.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:42.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:42.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.4101ms +2024-05-22 21:25:42.234 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:42.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.6151ms +2024-05-22 21:25:49.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:25:49.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:49.253 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:25:49.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 211.4192ms +2024-05-22 21:30:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:30:00. +2024-05-22 21:32:50.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:32:50.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:32:50.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:32:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:32:50.917 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:32:50.917 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:32:50.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:32:50.919 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.919 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:50.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:32:50.970 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 126.4825ms +2024-05-22 21:32:51.109 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 193.4661ms +2024-05-22 21:32:51.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 196.6606ms +2024-05-22 21:32:51.115 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 196.3118ms +2024-05-22 21:32:51.121 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 205.6886ms +2024-05-22 21:32:51.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:32:51.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:32:51.175 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.175 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 136.6055ms +2024-05-22 21:32:51.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.7725ms +2024-05-22 21:32:51.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 519.5247ms +2024-05-22 21:32:51.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 536.5678ms +2024-05-22 21:32:51.531 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:51.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 618.5614ms +2024-05-22 21:32:53.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:32:53.020 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:53.142 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:53.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 122.2439ms +2024-05-22 21:32:54.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:32:54.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:32:54.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:54.028 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:54.148 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:54.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 122.1633ms +2024-05-22 21:32:54.196 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:32:54.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 169.7235ms +2024-05-22 21:33:20.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:33:20.640 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:20.816 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:20.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.9533ms +2024-05-22 21:33:23.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:33:23.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:33:23.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:23.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:23.600 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:23.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.5493ms +2024-05-22 21:33:23.680 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:23.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.9344ms +2024-05-22 21:33:59.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:33:59.256 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:59.389 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:33:59.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 133.5294ms +2024-05-22 21:34:01.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:34:01.072 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:34:01.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:34:01.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:34:01.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:34:01.076 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:34:01.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:34:01.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.056ms +2024-05-22 21:34:01.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.2546ms +2024-05-22 21:34:01.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.3895ms +2024-05-22 21:34:01.263 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.0356ms +2024-05-22 21:34:01.264 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.9325ms +2024-05-22 21:34:01.277 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 201.6796ms +2024-05-22 21:34:01.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:01.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 512.3406ms +2024-05-22 21:34:02.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:34:02.237 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:02.351 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:34:02.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.0254ms +2024-05-22 21:35:44.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:35:44.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:35:44.825 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:44.825 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:44.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:44.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.0425ms +2024-05-22 21:35:45.005 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:45.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.2308ms +2024-05-22 21:35:46.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:35:46.492 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:46.607 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:46.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.3764ms +2024-05-22 21:35:47.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:35:47.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:35:47.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:47.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:47.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:47.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.0576ms +2024-05-22 21:35:47.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:47.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.0514ms +2024-05-22 21:35:51.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:35:51.145 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:51.343 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:35:51.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 198.6039ms +2024-05-22 21:38:43.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:43.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:38:43.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:38:43.689 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:38:43.687 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.690 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:38:43.695 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:38:43.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:43.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:43.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:43.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:43.772 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.6377ms +2024-05-22 21:38:43.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.6032ms +2024-05-22 21:38:43.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.3568ms +2024-05-22 21:38:43.889 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 205.3007ms +2024-05-22 21:38:43.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 212.1888ms +2024-05-22 21:38:43.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 206.5666ms +2024-05-22 21:38:43.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:43.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 195.3327ms +2024-05-22 21:38:44.190 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:44.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 483.2202ms +2024-05-22 21:38:44.204 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:44.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 513.1116ms +2024-05-22 21:38:44.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:44.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 433.6306ms +2024-05-22 21:38:46.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:38:46.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:38:46.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:46.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:46.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:38:46.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:38:46.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:38:46.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.1172ms +2024-05-22 21:38:46.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.7188ms +2024-05-22 21:38:46.560 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.1645ms +2024-05-22 21:38:46.569 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.513ms +2024-05-22 21:38:46.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 187.7542ms +2024-05-22 21:38:46.578 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.288ms +2024-05-22 21:38:46.949 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:46.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 566.782ms +2024-05-22 21:38:48.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:48.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:48.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:48.849 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:48.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:48.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.9629ms +2024-05-22 21:38:49.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:49.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 212.468ms +2024-05-22 21:38:55.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:55.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:55.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:55.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.9569ms +2024-05-22 21:38:57.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:38:57.666 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:57.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:38:57.666 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:57.789 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:57.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 122.7038ms +2024-05-22 21:38:57.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:38:57.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.8673ms +2024-05-22 21:39:01.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:39:01.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:39:01.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:39:01.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:39:01.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:39:01.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:39:01.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:39:01.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:01.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.109 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 119.8991ms +2024-05-22 21:39:02.173 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.8461ms +2024-05-22 21:39:02.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 191.8183ms +2024-05-22 21:39:02.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.185 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 194.1856ms +2024-05-22 21:39:02.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.4833ms +2024-05-22 21:39:02.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 325.9055ms +2024-05-22 21:39:02.505 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:02.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 515.8682ms +2024-05-22 21:39:03.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:39:03.398 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:03.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:39:03.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 196.0251ms +2024-05-22 21:40:00.072 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:40:00. +2024-05-22 21:46:19.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:46:19.813 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:46:19.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:46:19.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:46:19.841 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:46:19.843 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:46:19.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:46:19.848 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.959 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.5271ms +2024-05-22 21:46:19.959 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:19.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 128.8547ms +2024-05-22 21:46:20.023 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:20.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 187.684ms +2024-05-22 21:46:20.036 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:20.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.3708ms +2024-05-22 21:46:20.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:20.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 211.0975ms +2024-05-22 21:46:20.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:20.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 210.3021ms +2024-05-22 21:46:20.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:20.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 561.2016ms +2024-05-22 21:46:28.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:46:28.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:46:28.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:46:28.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:46:28.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:46:28.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:46:28.994 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:46:28.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:28.995 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.115 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 126.7336ms +2024-05-22 21:46:29.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 143.8149ms +2024-05-22 21:46:29.174 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.1009ms +2024-05-22 21:46:29.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 240.5764ms +2024-05-22 21:46:29.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 240.9494ms +2024-05-22 21:46:29.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 557.1238ms +2024-05-22 21:46:29.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:29.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1003.3024ms +2024-05-22 21:46:31.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:46:31.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:31.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:46:31.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:31.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:31.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.7037ms +2024-05-22 21:46:32.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:46:32.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 201.3545ms +2024-05-22 21:50:00.083 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 19:50:00. +2024-05-22 21:50:59.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:50:59.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:50:59.346 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:50:59.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:50:59.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.348 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:50:59.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:50:59.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:50:59.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 127.1503ms +2024-05-22 21:50:59.474 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 126.5692ms +2024-05-22 21:50:59.532 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.0202ms +2024-05-22 21:50:59.545 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 204.4758ms +2024-05-22 21:50:59.549 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 194.162ms +2024-05-22 21:50:59.550 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 203.0909ms +2024-05-22 21:50:59.866 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:50:59.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 529.7873ms +2024-05-22 21:51:32.561 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:51:32.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:51:32.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:51:32.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:51:32.563 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:51:32.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.678 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.3694ms +2024-05-22 21:51:32.678 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.1928ms +2024-05-22 21:51:32.745 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.9398ms +2024-05-22 21:51:32.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.1253ms +2024-05-22 21:51:32.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.23ms +2024-05-22 21:51:32.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:32.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 189.2085ms +2024-05-22 21:51:33.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:33.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 530.5986ms +2024-05-22 21:51:43.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:51:43.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:51:43.848 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:43.848 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:43.964 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:43.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.5622ms +2024-05-22 21:51:44.037 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:44.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.3929ms +2024-05-22 21:51:45.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:51:45.617 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:45.803 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:45.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.9808ms +2024-05-22 21:51:46.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:51:46.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:51:46.727 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:46.727 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:46.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:46.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.2108ms +2024-05-22 21:51:46.910 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:46.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.3036ms +2024-05-22 21:51:51.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:51:51.493 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:51.605 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:51.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.5626ms +2024-05-22 21:51:53.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:51:53.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:51:53.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:53.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:53.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:53.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.7752ms +2024-05-22 21:51:53.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:51:53.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.2585ms +2024-05-22 21:53:05.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:53:05.217 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:05.337 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:05.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 120.6066ms +2024-05-22 21:53:07.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 21:53:07.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 21:53:07.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 21:53:07.204 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:53:07.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 21:53:07.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 21:53:07.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:53:07.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.205 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.314 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.6569ms +2024-05-22 21:53:07.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 126.1923ms +2024-05-22 21:53:07.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.5043ms +2024-05-22 21:53:07.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 191.3317ms +2024-05-22 21:53:07.405 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.406 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 201.0529ms +2024-05-22 21:53:07.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 201.3475ms +2024-05-22 21:53:07.762 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 560.4659ms +2024-05-22 21:53:07.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 21:53:07.905 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:07.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 21:53:07.905 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:08.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:08.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.9302ms +2024-05-22 21:53:08.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 21:53:08.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.2788ms +2024-05-22 22:00:00.076 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:00:00. +2024-05-22 22:00:09.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:00:09.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:00:09.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:00:09.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:00:09.017 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:00:09.015 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.019 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.015 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:00:09.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:00:09.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.140 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 121.4699ms +2024-05-22 22:00:09.142 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 124.8132ms +2024-05-22 22:00:09.208 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 189.3592ms +2024-05-22 22:00:09.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 196.6854ms +2024-05-22 22:00:09.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 196.0052ms +2024-05-22 22:00:09.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 209.5417ms +2024-05-22 22:00:09.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:09.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 525.5245ms +2024-05-22 22:00:10.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:00:10.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:00:10.370 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.370 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:00:10.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:00:10.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:00:10.371 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:00:10.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:00:10.371 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.373 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.373 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.371 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 125.341ms +2024-05-22 22:00:10.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 128.0441ms +2024-05-22 22:00:10.572 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 202.7051ms +2024-05-22 22:00:10.572 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 202.5633ms +2024-05-22 22:00:10.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 220.7594ms +2024-05-22 22:00:10.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 220.7586ms +2024-05-22 22:00:10.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 546.9348ms +2024-05-22 22:00:10.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:00:10.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:00:10.982 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:10.982 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:11.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:11.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 168.3298ms +2024-05-22 22:00:11.194 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:11.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 212.8886ms +2024-05-22 22:00:18.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:00:18.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.242 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 105.7138ms +2024-05-22 22:00:18.247 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.2615ms +2024-05-22 22:00:18.311 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.2265ms +2024-05-22 22:00:18.316 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 179.9679ms +2024-05-22 22:00:18.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.9932ms +2024-05-22 22:00:18.322 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.0064ms +2024-05-22 22:00:18.681 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:18.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 544.7175ms +2024-05-22 22:00:19.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:00:19.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:19.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:00:19.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.6357ms +2024-05-22 22:06:00.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:06:00.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:06:00.555 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:06:00.555 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:06:00.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:06:00.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.4894ms +2024-05-22 22:06:00.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:06:00.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.9989ms +2024-05-22 22:09:21.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:09:21.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:21.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:21.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:21.552 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:21.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.4238ms +2024-05-22 22:09:21.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:21.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.306ms +2024-05-22 22:09:23.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:09:23.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:23.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:23.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:23.841 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:23.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.9339ms +2024-05-22 22:09:23.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:23.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.4902ms +2024-05-22 22:09:28.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:28.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:29.155 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:29.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.5307ms +2024-05-22 22:09:29.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:29.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:29.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:29.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.4046ms +2024-05-22 22:09:33.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:33.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:33.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:09:33.442 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:33.555 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:33.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.8811ms +2024-05-22 22:09:33.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:33.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.015ms +2024-05-22 22:09:38.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:38.820 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 199.5542ms +2024-05-22 22:09:39.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:39.028 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.174 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.7322ms +2024-05-22 22:09:39.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:09:39.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.285 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:39.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.6184ms +2024-05-22 22:09:42.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:09:42.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:09:42.819 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:42.819 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:42.928 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:42.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.4269ms +2024-05-22 22:09:43.000 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:09:43.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.6631ms +2024-05-22 22:10:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:10:00. +2024-05-22 22:10:37.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:10:37.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:37.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:37.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.4327ms +2024-05-22 22:10:39.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:10:39.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:10:39.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:39.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:39.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:39.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 120.1063ms +2024-05-22 22:10:39.915 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:39.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.6083ms +2024-05-22 22:10:42.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:10:42.181 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:42.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:42.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 123.7121ms +2024-05-22 22:10:45.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:10:45.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:10:45.648 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:45.648 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:45.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:45.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.5189ms +2024-05-22 22:10:45.867 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:10:45.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 219.8703ms +2024-05-22 22:14:34.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:14:34.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:14:34.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:14:34.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:14:34.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:14:34.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:14:34.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:34.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 200.5753ms +2024-05-22 22:14:35.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 431.965ms +2024-05-22 22:14:35.315 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 530.0824ms +2024-05-22 22:14:35.346 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 564.1671ms +2024-05-22 22:14:35.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 637.3464ms +2024-05-22 22:14:35.539 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 754.3456ms +2024-05-22 22:14:35.737 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:35.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 951.9417ms +2024-05-22 22:14:38.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:14:38.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:14:38.141 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:38.141 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:38.248 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:38.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.1158ms +2024-05-22 22:14:38.315 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:38.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.1853ms +2024-05-22 22:14:40.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:14:40.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:14:40.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:40.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:40.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:40.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.2885ms +2024-05-22 22:14:40.734 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:40.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.9249ms +2024-05-22 22:14:56.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:14:56.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:14:56.121 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:56.121 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:56.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:56.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.8971ms +2024-05-22 22:14:56.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:56.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 177.1485ms +2024-05-22 22:14:57.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:14:57.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:14:57.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:14:57.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:14:57.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:14:57.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:14:57.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:14:57.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 183.6906ms +2024-05-22 22:14:57.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.9952ms +2024-05-22 22:14:57.322 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.5842ms +2024-05-22 22:14:57.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 291.1608ms +2024-05-22 22:14:57.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 346.0193ms +2024-05-22 22:14:57.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 398.7973ms +2024-05-22 22:14:57.697 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:14:57.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 563.178ms +2024-05-22 22:15:00.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:15:00.433 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:00.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:15:00.434 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:00.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:00.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.453ms +2024-05-22 22:15:00.618 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:00.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.3152ms +2024-05-22 22:15:35.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:15:35.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:15:35.417 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:35.417 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:35.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:35.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.4904ms +2024-05-22 22:15:35.594 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:15:35.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 177.5542ms +2024-05-22 22:16:14.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:16:14.272 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:16:14.284 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:16:14.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:16:14.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:16:14.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:16:14.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:16:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.8782ms +2024-05-22 22:16:14.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 208.3821ms +2024-05-22 22:16:14.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 214.2287ms +2024-05-22 22:16:14.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 205.0336ms +2024-05-22 22:16:14.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 221.6302ms +2024-05-22 22:16:14.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 413.9443ms +2024-05-22 22:16:14.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:14.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 551.2633ms +2024-05-22 22:16:39.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:16:39.408 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:39.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:16:39.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:39.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:39.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 105.9695ms +2024-05-22 22:16:39.583 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:39.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.7104ms +2024-05-22 22:16:44.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:16:44.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:16:44.013 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:16:44.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.013 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:16:44.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:16:44.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:16:44.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:16:44.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.128 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.1917ms +2024-05-22 22:16:44.194 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 179.7184ms +2024-05-22 22:16:44.203 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.203 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.3895ms +2024-05-22 22:16:44.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 192.93ms +2024-05-22 22:16:44.370 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 352.4993ms +2024-05-22 22:16:44.398 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 381.0371ms +2024-05-22 22:16:44.522 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:16:44.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 509.7233ms +2024-05-22 22:19:17.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:19:17.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:19:17.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:19:17.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:19:17.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:19:17.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:19:17.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:19:17.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.037 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.4208ms +2024-05-22 22:19:17.153 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.6073ms +2024-05-22 22:19:17.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.8347ms +2024-05-22 22:19:17.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 189.4454ms +2024-05-22 22:19:17.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.6716ms +2024-05-22 22:19:17.224 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 189.9584ms +2024-05-22 22:19:17.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:17.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 688.8429ms +2024-05-22 22:19:43.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:19:43.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:44.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:19:44.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 215.9866ms +2024-05-22 22:20:00.078 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:20:00. +2024-05-22 22:25:36.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:25:36.824 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:25:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:25:36.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:25:36.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:25:36.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:25:36.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:25:36.840 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.841 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.953 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 121.5217ms +2024-05-22 22:25:36.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:36.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 146.306ms +2024-05-22 22:25:37.026 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:37.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 198.0355ms +2024-05-22 22:25:37.029 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:37.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 191.6485ms +2024-05-22 22:25:37.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:37.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 196.5353ms +2024-05-22 22:25:37.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:37.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 216.8823ms +2024-05-22 22:25:37.370 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:37.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 547.2589ms +2024-05-22 22:25:57.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:25:57.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:57.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:25:57.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.9856ms +2024-05-22 22:30:00.087 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:30:00. +2024-05-22 22:40:00.083 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:40:00. +2024-05-22 22:43:41.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 22:43:41.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 22:43:41.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.076 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 22:43:41.085 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 22:43:41.090 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 22:43:41.097 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 22:43:41.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 22:43:41.106 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 288.4748ms +2024-05-22 22:43:41.546 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 448.0488ms +2024-05-22 22:43:41.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 511.0729ms +2024-05-22 22:43:41.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 670.5707ms +2024-05-22 22:43:41.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:41.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 817.456ms +2024-05-22 22:43:42.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:42.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1058.6234ms +2024-05-22 22:43:42.174 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 22:43:42.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 1098.8947ms +2024-05-22 22:50:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 20:50:00. +2024-05-22 23:00:00.075 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:00:00. +2024-05-22 23:02:02.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:02:02.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:02:02.742 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:02:02.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 195.1013ms +2024-05-22 23:10:00.075 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:10:00. +2024-05-22 23:10:21.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:10:21.250 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:10:21.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:10:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:10:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:10:21.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:10:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:10:21.270 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.726 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 474.5929ms +2024-05-22 23:10:21.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 502.796ms +2024-05-22 23:10:21.870 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 611.0445ms +2024-05-22 23:10:21.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 634.3509ms +2024-05-22 23:10:21.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 638.6034ms +2024-05-22 23:10:21.983 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:21.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 719.6598ms +2024-05-22 23:10:22.017 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:22.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 757.0607ms +2024-05-22 23:10:38.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:10:38.268 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:38.447 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:10:38.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.7435ms +2024-05-22 23:11:20.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:11:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:20.844 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:20.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.4022ms +2024-05-22 23:11:32.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:11:32.179 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:32.384 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:32.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 204.9123ms +2024-05-22 23:11:34.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:11:34.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:35.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:35.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 508.9491ms +2024-05-22 23:11:36.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:11:36.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:11:36.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:11:36.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:11:36.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:11:36.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:11:36.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:11:36.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.329 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 126.8326ms +2024-05-22 23:11:36.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.8947ms +2024-05-22 23:11:36.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 198.2359ms +2024-05-22 23:11:36.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 198.4171ms +2024-05-22 23:11:36.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 403.6122ms +2024-05-22 23:11:36.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:36.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 447.051ms +2024-05-22 23:11:37.075 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:37.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 749.3459ms +2024-05-22 23:11:55.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:11:55.953 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:56.123 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:11:56.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.2232ms +2024-05-22 23:12:02.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:12:02.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:02.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:02.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 187.2903ms +2024-05-22 23:12:10.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:12:10.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:12:10.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:12:10.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:12:10.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:12:10.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:12:10.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:12:10.453 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.569 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 121.447ms +2024-05-22 23:12:10.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 199.3889ms +2024-05-22 23:12:10.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 198.849ms +2024-05-22 23:12:10.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 202.3585ms +2024-05-22 23:12:10.673 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 227.4878ms +2024-05-22 23:12:10.676 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:10.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 223.6516ms +2024-05-22 23:12:11.004 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:11.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 560.5141ms +2024-05-22 23:12:25.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:12:25.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:12:25.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:12:25.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:12:25.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:12:25.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:12:25.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:12:25.945 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:25.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.9733ms +2024-05-22 23:12:26.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.9225ms +2024-05-22 23:12:26.126 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.4506ms +2024-05-22 23:12:26.128 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.7958ms +2024-05-22 23:12:26.136 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.136 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 193.0759ms +2024-05-22 23:12:26.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.9989ms +2024-05-22 23:12:26.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:26.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 532.269ms +2024-05-22 23:12:29.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:12:29.176 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:29.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:29.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.4173ms +2024-05-22 23:12:33.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:12:33.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:33.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:33.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.715ms +2024-05-22 23:12:36.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:12:36.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:36.249 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:36.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.7831ms +2024-05-22 23:12:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:12:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:36.370 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:12:36.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.1856ms +2024-05-22 23:13:04.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:13:04.364 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:04.475 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:04.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.8854ms +2024-05-22 23:13:05.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:13:05.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:06.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:06.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.939ms +2024-05-22 23:13:06.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:13:06.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:06.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:06.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.2822ms +2024-05-22 23:13:09.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:13:09.009 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:09.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:13:09.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.5116ms +2024-05-22 23:16:20.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:16:20.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:16:20.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:16:20.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:16:20.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:16:20.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:16:20.781 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.783 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.781 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.783 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:16:20.786 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.885 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.9467ms +2024-05-22 23:16:20.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.691ms +2024-05-22 23:16:20.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.7242ms +2024-05-22 23:16:20.964 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.0568ms +2024-05-22 23:16:20.967 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:20.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.1679ms +2024-05-22 23:16:21.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:21.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 531.4313ms +2024-05-22 23:16:21.308 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:21.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 527.5049ms +2024-05-22 23:16:39.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:16:39.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:16:39.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:16:39.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:16:39.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:16:39.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:16:39.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:16:39.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:39.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.4107ms +2024-05-22 23:16:40.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 119.8724ms +2024-05-22 23:16:40.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 192.9587ms +2024-05-22 23:16:40.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 195.6903ms +2024-05-22 23:16:40.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 198.1358ms +2024-05-22 23:16:40.246 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:40.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 258.7505ms +2024-05-22 23:16:41.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:41.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1018.9224ms +2024-05-22 23:16:45.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:16:45.664 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:45.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:45.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.3913ms +2024-05-22 23:16:59.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:16:59.660 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:59.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:16:59.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 194.4602ms +2024-05-22 23:16:59.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:16:59.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:00.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:00.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.2746ms +2024-05-22 23:17:00.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:17:00.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:00.796 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:00.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 280.2587ms +2024-05-22 23:17:07.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:17:07.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:17:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:17:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:17:07.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:17:07.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:17:07.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:17:07.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 133.2847ms +2024-05-22 23:17:07.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:07.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 135.9727ms +2024-05-22 23:17:08.009 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:08.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 206.949ms +2024-05-22 23:17:08.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:08.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 207.0355ms +2024-05-22 23:17:08.017 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:08.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 215.0313ms +2024-05-22 23:17:08.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:08.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 240.5635ms +2024-05-22 23:17:08.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:17:08.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 574.7754ms +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:18:28.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:18:28.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:18:28.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:18:28.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:18:28.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.5417ms +2024-05-22 23:18:28.475 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.518ms +2024-05-22 23:18:28.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.5176ms +2024-05-22 23:18:28.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 189.8553ms +2024-05-22 23:18:28.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 192.178ms +2024-05-22 23:18:28.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 229.1392ms +2024-05-22 23:18:28.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:28.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 532.0781ms +2024-05-22 23:18:32.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:18:32.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:18:32.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:18:32.582 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.582 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:18:32.582 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:18:32.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:18:32.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.2273ms +2024-05-22 23:18:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 121.1307ms +2024-05-22 23:18:32.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.0344ms +2024-05-22 23:18:32.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 192.3376ms +2024-05-22 23:18:32.868 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 287.8449ms +2024-05-22 23:18:32.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:32.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 307.0841ms +2024-05-22 23:18:33.097 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:33.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 517.5031ms +2024-05-22 23:18:51.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:18:51.925 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:52.108 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:18:52.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.2094ms +2024-05-22 23:20:00.082 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:20:00. +2024-05-22 23:20:15.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:20:15.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:20:15.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:20:15.475 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:20:15.478 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:20:15.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:20:15.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:20:15.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.573 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.75ms +2024-05-22 23:20:15.589 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.0667ms +2024-05-22 23:20:15.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.2737ms +2024-05-22 23:20:15.653 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.3327ms +2024-05-22 23:20:15.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.5663ms +2024-05-22 23:20:15.666 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 196.9615ms +2024-05-22 23:20:15.981 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:15.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 505.0193ms +2024-05-22 23:20:19.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:20:19.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:19.945 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:19.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.2052ms +2024-05-22 23:20:29.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:20:29.270 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:29.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:29.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.7908ms +2024-05-22 23:20:30.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:20:30.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:30.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:30.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.5432ms +2024-05-22 23:20:30.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:20:30.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:31.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:20:31.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.1938ms +2024-05-22 23:30:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:30:00. +2024-05-22 23:40:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:40:00. +2024-05-22 23:41:06.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:06.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:06.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:06.194 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:06.620 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:06.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 466.8021ms +2024-05-22 23:41:06.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:06.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 517.8449ms +2024-05-22 23:41:07.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:41:07.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:41:07.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:41:07.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:41:07.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:07.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.158 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:41:07.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:41:07.159 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.159 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.7161ms +2024-05-22 23:41:07.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 271.7806ms +2024-05-22 23:41:07.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 426.1467ms +2024-05-22 23:41:07.585 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 429.549ms +2024-05-22 23:41:07.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 495.2773ms +2024-05-22 23:41:07.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 536.3433ms +2024-05-22 23:41:07.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:07.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 588.8689ms +2024-05-22 23:41:08.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:41:08.685 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:41:08.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:41:08.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:08.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:41:08.687 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:41:08.687 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.686 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.687 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.688 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:41:08.689 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.798 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.3576ms +2024-05-22 23:41:08.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 176.0789ms +2024-05-22 23:41:08.866 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.866 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.9042ms +2024-05-22 23:41:08.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.7778ms +2024-05-22 23:41:08.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:08.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 306.7685ms +2024-05-22 23:41:09.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:09.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 388.8036ms +2024-05-22 23:41:09.186 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:09.187 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 500.6419ms +2024-05-22 23:41:32.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:32.136 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:32.326 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:32.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 190.3142ms +2024-05-22 23:41:32.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:32.747 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:32.909 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:32.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 162.677ms +2024-05-22 23:41:33.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:41:33.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:33.555 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:41:33.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.3964ms +2024-05-22 23:42:28.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:42:28.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:42:28.953 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:42:28.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:42:28.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:42:28.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:42:28.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:28.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:42:28.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.4818ms +2024-05-22 23:42:29.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.6123ms +2024-05-22 23:42:29.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 175.4715ms +2024-05-22 23:42:29.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.9149ms +2024-05-22 23:42:29.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.6603ms +2024-05-22 23:42:29.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 219.4154ms +2024-05-22 23:42:29.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:29.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 526.4821ms +2024-05-22 23:42:31.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:42:31.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:31.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:31.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 178.1946ms +2024-05-22 23:42:33.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:42:33.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:33.636 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:33.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.4807ms +2024-05-22 23:42:36.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:42:36.867 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:42:36.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:42:36.870 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:42:36.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:42:36.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:42:36.871 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:42:36.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.875 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.983 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.1676ms +2024-05-22 23:42:36.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:36.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.9129ms +2024-05-22 23:42:37.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:37.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.7091ms +2024-05-22 23:42:37.056 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:37.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.9815ms +2024-05-22 23:42:37.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:37.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.8967ms +2024-05-22 23:42:37.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:37.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 189.7603ms +2024-05-22 23:42:37.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:42:37.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 575.9148ms +2024-05-22 23:43:01.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:01.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:01.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:01.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.7336ms +2024-05-22 23:43:06.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:43:06.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:43:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:43:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:43:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:43:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:43:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:06.582 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.3583ms +2024-05-22 23:43:06.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.7747ms +2024-05-22 23:43:06.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.4647ms +2024-05-22 23:43:06.764 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.2114ms +2024-05-22 23:43:06.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.5385ms +2024-05-22 23:43:06.794 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:06.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 217.0213ms +2024-05-22 23:43:07.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:07.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 535.5252ms +2024-05-22 23:43:07.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:07.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:07.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:07.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.2684ms +2024-05-22 23:43:07.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:07.426 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:07.575 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:07.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.8039ms +2024-05-22 23:43:12.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:43:12.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:12.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:43:12.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:43:12.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:43:12.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:43:12.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:43:12.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.560 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.0532ms +2024-05-22 23:43:12.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.5823ms +2024-05-22 23:43:12.629 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.4513ms +2024-05-22 23:43:12.630 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.0408ms +2024-05-22 23:43:12.640 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 191.0673ms +2024-05-22 23:43:12.643 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 193.2244ms +2024-05-22 23:43:12.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:12.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 538.8572ms +2024-05-22 23:43:13.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:13.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:13.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:13.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.7163ms +2024-05-22 23:43:13.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:13.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:13.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:13.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.8297ms +2024-05-22 23:43:14.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:43:14.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:15.108 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:43:15.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.5457ms +2024-05-22 23:50:00.083 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 21:50:00. +2024-05-22 23:50:54.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:50:54.059 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:50:54.238 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:50:54.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.2329ms +2024-05-22 23:51:01.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:01.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:01.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:01.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.902ms +2024-05-22 23:51:01.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:01.667 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:01.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:01.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.3142ms +2024-05-22 23:51:02.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:02.485 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:02.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:02.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.3032ms +2024-05-22 23:51:03.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:03.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.431 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.1355ms +2024-05-22 23:51:03.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:03.434 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.578 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.4027ms +2024-05-22 23:51:03.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:51:03.871 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:51:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:51:03.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:51:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:51:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:51:03.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.874 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.874 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.874 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:03.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.9526ms +2024-05-22 23:51:03.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.2912ms +2024-05-22 23:51:04.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 180.2685ms +2024-05-22 23:51:04.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.2365ms +2024-05-22 23:51:04.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 183.3514ms +2024-05-22 23:51:04.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.2689ms +2024-05-22 23:51:04.400 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 530.29ms +2024-05-22 23:51:04.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:04.694 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.4798ms +2024-05-22 23:51:04.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:04.842 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:04.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.9037ms +2024-05-22 23:51:07.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:07.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:07.220 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:07.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.0044ms +2024-05-22 23:51:12.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:12.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:13.141 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:13.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.0631ms +2024-05-22 23:51:13.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:13.148 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:13.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:13.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.3782ms +2024-05-22 23:51:13.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:13.949 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:14.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:14.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.4692ms +2024-05-22 23:51:48.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:48.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:48.498 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:48.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.1792ms +2024-05-22 23:51:50.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:50.214 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:50.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:50.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.1416ms +2024-05-22 23:51:50.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:50.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:50.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:50.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.7707ms +2024-05-22 23:51:52.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:52.684 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:52.858 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:52.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.6078ms +2024-05-22 23:51:56.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:51:56.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:56.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:51:56.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.4112ms +2024-05-22 23:54:48.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:54:48.477 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:54:48.657 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:54:48.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.3421ms +2024-05-22 23:54:48.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:54:48.661 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:54:48.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:54:48.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.9313ms +2024-05-22 23:55:06.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:55:06.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:55:06.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:55:06.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.0317ms +2024-05-22 23:55:06.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:55:06.277 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:55:06.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:55:06.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.7324ms +2024-05-22 23:56:34.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:56:34.477 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:34.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:34.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.668ms +2024-05-22 23:56:34.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:56:34.668 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:34.816 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:34.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.5731ms +2024-05-22 23:56:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-22 23:56:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-22 23:56:35.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-22 23:56:35.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-22 23:56:35.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-22 23:56:35.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-22 23:56:35.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-22 23:56:35.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.684 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 104.5773ms +2024-05-22 23:56:35.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 123.0213ms +2024-05-22 23:56:35.753 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 170.6454ms +2024-05-22 23:56:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 180.7432ms +2024-05-22 23:56:35.768 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.9839ms +2024-05-22 23:56:35.769 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:35.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.6832ms +2024-05-22 23:56:36.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-22 23:56:36.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 517.4385ms diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240523.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240523.txt new file mode 100644 index 000000000..0934c816d --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240523.txt @@ -0,0 +1,8774 @@ +2024-05-23 00:00:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:00:00. +2024-05-23 00:03:58.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:03:58.570 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:03:58.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:03:58.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:03:58.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:03:58.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:03:58.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:03:58.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.697 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.7391ms +2024-05-23 00:03:58.698 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.1776ms +2024-05-23 00:03:58.761 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.7055ms +2024-05-23 00:03:58.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 191.1394ms +2024-05-23 00:03:58.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 190.5069ms +2024-05-23 00:03:58.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:58.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.6235ms +2024-05-23 00:03:59.090 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:03:59.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 522.0215ms +2024-05-23 00:04:45.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:04:45.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:04:45.463 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:04:45.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:04:45.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:04:45.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:04:45.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:04:45.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.915ms +2024-05-23 00:04:45.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.6423ms +2024-05-23 00:04:45.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.783ms +2024-05-23 00:04:45.651 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.2087ms +2024-05-23 00:04:45.656 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 193.6254ms +2024-05-23 00:04:45.657 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.0465ms +2024-05-23 00:04:45.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:45.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 501.5949ms +2024-05-23 00:04:49.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:04:49.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:49.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:49.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.9224ms +2024-05-23 00:04:49.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:04:49.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:49.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:49.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.5233ms +2024-05-23 00:04:54.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:04:54.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:04:54.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:04:54.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:04:54.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:04:54.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:04:54.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:04:54.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.882 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.0984ms +2024-05-23 00:04:54.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.2581ms +2024-05-23 00:04:54.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.5438ms +2024-05-23 00:04:54.955 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.8062ms +2024-05-23 00:04:54.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.4401ms +2024-05-23 00:04:54.960 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:54.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.5109ms +2024-05-23 00:04:55.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:04:55.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 525.1428ms +2024-05-23 00:06:18.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:18.637 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:18.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:18.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.846ms +2024-05-23 00:06:18.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:18.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:18.975 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:18.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.4271ms +2024-05-23 00:06:20.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:06:20.591 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:06:20.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:06:20.605 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:20.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:06:20.608 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.608 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:06:20.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:06:20.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 106.4026ms +2024-05-23 00:06:20.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.0201ms +2024-05-23 00:06:20.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.626ms +2024-05-23 00:06:20.781 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.46ms +2024-05-23 00:06:20.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.4527ms +2024-05-23 00:06:20.797 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:20.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.0119ms +2024-05-23 00:06:21.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:21.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 486.469ms +2024-05-23 00:06:25.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:25.800 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:25.975 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:25.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.9823ms +2024-05-23 00:06:25.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:26.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:26.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.117ms +2024-05-23 00:06:28.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:06:28.109 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:06:28.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:06:28.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:06:28.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:06:28.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:06:28.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:06:28.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 119.9192ms +2024-05-23 00:06:28.257 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 142.6622ms +2024-05-23 00:06:28.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.083ms +2024-05-23 00:06:28.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 185.2961ms +2024-05-23 00:06:28.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.5136ms +2024-05-23 00:06:28.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 191.9842ms +2024-05-23 00:06:28.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:06:28.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 521.5646ms +2024-05-23 00:10:04.878 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:10:01. +2024-05-23 00:10:19.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:10:19.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:10:19.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:10:19.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:10:19.037 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:10:19.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:10:19.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:10:19.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 148.8582ms +2024-05-23 00:10:19.200 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 159.5697ms +2024-05-23 00:10:19.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.181ms +2024-05-23 00:10:19.226 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 202.7621ms +2024-05-23 00:10:19.240 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 208.0529ms +2024-05-23 00:10:19.248 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 208.3125ms +2024-05-23 00:10:19.545 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:19.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 525.5291ms +2024-05-23 00:10:35.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:10:35.850 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:36.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:36.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.0782ms +2024-05-23 00:10:36.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:10:36.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:36.196 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:36.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.2671ms +2024-05-23 00:10:53.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:10:53.819 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:10:53.820 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:10:53.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:10:53.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:10:53.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:10:53.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.822 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:10:53.822 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.7502ms +2024-05-23 00:10:53.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:53.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.3455ms +2024-05-23 00:10:54.047 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:54.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 226.2407ms +2024-05-23 00:10:54.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:54.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 228.5389ms +2024-05-23 00:10:54.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:54.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 229.2427ms +2024-05-23 00:10:54.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:54.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 232.0264ms +2024-05-23 00:10:54.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:54.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 590.1249ms +2024-05-23 00:10:57.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:10:57.129 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:10:57.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:10:57.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:10:57.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:10:57.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:10:57.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:10:57.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.247 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.248 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.9754ms +2024-05-23 00:10:57.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.9873ms +2024-05-23 00:10:57.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.8257ms +2024-05-23 00:10:57.312 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.8263ms +2024-05-23 00:10:57.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.284ms +2024-05-23 00:10:57.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.5547ms +2024-05-23 00:10:57.629 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:10:57.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 502.2225ms +2024-05-23 00:11:05.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:11:05.055 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:05.239 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:05.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.91ms +2024-05-23 00:11:32.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:11:32.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:11:32.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:11:32.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:11:32.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:11:32.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:11:32.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:32.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:11:32.903 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 612.6117ms +2024-05-23 00:11:33.583 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 693.4036ms +2024-05-23 00:11:33.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 757.3744ms +2024-05-23 00:11:33.734 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 838.2982ms +2024-05-23 00:11:33.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 852.1417ms +2024-05-23 00:11:33.790 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 898.6659ms +2024-05-23 00:11:33.980 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:33.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 1089.4101ms +2024-05-23 00:11:35.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:11:35.242 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:11:35.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:11:35.244 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:11:35.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:11:35.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:11:35.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:11:35.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.0016ms +2024-05-23 00:11:35.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.8641ms +2024-05-23 00:11:35.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 182.9351ms +2024-05-23 00:11:35.432 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.7508ms +2024-05-23 00:11:35.434 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.6437ms +2024-05-23 00:11:35.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 348.9208ms +2024-05-23 00:11:35.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:35.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 697.3233ms +2024-05-23 00:11:35.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:11:35.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:36.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:36.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.2387ms +2024-05-23 00:11:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:11:50.574 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:50.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:50.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.3431ms +2024-05-23 00:11:53.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:11:53.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:11:53.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:11:53.783 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:11:53.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:11:53.784 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.785 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:11:53.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:11:53.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.9971ms +2024-05-23 00:11:53.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 120.9311ms +2024-05-23 00:11:53.967 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 187.5434ms +2024-05-23 00:11:53.969 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.6764ms +2024-05-23 00:11:53.972 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.973 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:53.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 195.8914ms +2024-05-23 00:11:53.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 198.5476ms +2024-05-23 00:11:54.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:11:54.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 801.3303ms +2024-05-23 00:13:05.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:13:05.740 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:13:05.747 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:13:05.751 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:05.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:13:05.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:13:05.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:13:05.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.3692ms +2024-05-23 00:13:05.867 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.8382ms +2024-05-23 00:13:05.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 187.7561ms +2024-05-23 00:13:05.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.474ms +2024-05-23 00:13:05.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.2117ms +2024-05-23 00:13:05.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:05.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.8685ms +2024-05-23 00:13:06.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:06.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 536.6719ms +2024-05-23 00:13:06.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:06.277 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:06.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:06.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.1478ms +2024-05-23 00:13:11.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:11.013 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:11.198 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:11.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.1949ms +2024-05-23 00:13:12.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:12.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:12.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:12.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.0504ms +2024-05-23 00:13:14.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:13:14.591 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:13:14.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:14.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.595 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:13:14.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:13:14.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:13:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:13:14.600 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.2978ms +2024-05-23 00:13:14.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.9432ms +2024-05-23 00:13:14.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 177.6403ms +2024-05-23 00:13:14.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 175.0103ms +2024-05-23 00:13:14.776 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.0467ms +2024-05-23 00:13:14.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:14.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.5203ms +2024-05-23 00:13:15.080 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:15.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 490.9662ms +2024-05-23 00:13:23.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:23.709 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:23.883 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:23.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.2071ms +2024-05-23 00:13:25.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:13:25.448 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:25.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:25.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.2283ms +2024-05-23 00:13:29.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:29.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:30.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:30.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.3561ms +2024-05-23 00:13:31.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:13:31.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:13:31.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:13:31.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:13:31.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:13:31.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:13:31.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:13:31.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:31.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.101 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.9897ms +2024-05-23 00:13:32.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.0432ms +2024-05-23 00:13:32.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.9339ms +2024-05-23 00:13:32.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.6132ms +2024-05-23 00:13:32.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.9356ms +2024-05-23 00:13:32.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.4818ms +2024-05-23 00:13:32.482 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:32.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 497.0072ms +2024-05-23 00:13:53.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:13:53.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:53.746 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:13:53.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.0437ms +2024-05-23 00:14:04.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:14:04.540 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:14:04.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:14:04.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:14:04.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:14:04.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:14:04.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:14:04.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.552 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.6019ms +2024-05-23 00:14:04.661 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.9256ms +2024-05-23 00:14:04.725 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.514ms +2024-05-23 00:14:04.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.1566ms +2024-05-23 00:14:04.733 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 183.522ms +2024-05-23 00:14:04.734 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:04.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.7469ms +2024-05-23 00:14:05.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:05.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 543.9906ms +2024-05-23 00:14:07.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:14:07.689 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:07.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:14:07.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.39ms +2024-05-23 00:20:03.242 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:20:03. +2024-05-23 00:28:39.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:28:39.870 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:40.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:40.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.6507ms +2024-05-23 00:28:45.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:28:45.954 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:28:45.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:28:45.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:28:45.957 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.957 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:28:45.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:28:45.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:28:45.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:45.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.448 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 494.6873ms +2024-05-23 00:28:46.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 549.1059ms +2024-05-23 00:28:46.562 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 603.2565ms +2024-05-23 00:28:46.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 640.7083ms +2024-05-23 00:28:46.635 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 680.0736ms +2024-05-23 00:28:46.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 686.7698ms +2024-05-23 00:28:46.810 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:28:46.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 851.6295ms +2024-05-23 00:29:05.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:29:05.898 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:06.079 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:06.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.1841ms +2024-05-23 00:29:07.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:29:07.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:29:07.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:29:07.679 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:29:07.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:29:07.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:29:07.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:29:07.688 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.688 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.688 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.3508ms +2024-05-23 00:29:07.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.5091ms +2024-05-23 00:29:07.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:07.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 190.0147ms +2024-05-23 00:29:07.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.5538ms +2024-05-23 00:29:08.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:08.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 366.0609ms +2024-05-23 00:29:08.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:08.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 384.4323ms +2024-05-23 00:29:08.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:08.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 503.3486ms +2024-05-23 00:29:08.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:29:08.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:08.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:29:08.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.1762ms +2024-05-23 00:30:00.080 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:30:00. +2024-05-23 00:40:00.089 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:40:00. +2024-05-23 00:45:36.999 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:45:37.000 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:45:37.006 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:45:37.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:45:37.017 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:45:37.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:45:37.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:45:37.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 521.8944ms +2024-05-23 00:45:37.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 554.6753ms +2024-05-23 00:45:37.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 609.9818ms +2024-05-23 00:45:37.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 618.134ms +2024-05-23 00:45:37.710 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 694.6152ms +2024-05-23 00:45:37.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 743.3664ms +2024-05-23 00:45:37.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:45:37.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 781.1914ms +2024-05-23 00:46:25.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:46:25.244 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:25.359 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:25.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.532ms +2024-05-23 00:46:59.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:46:59.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:46:59.813 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.813 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:46:59.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:46:59.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:46:59.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:46:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:46:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.2694ms +2024-05-23 00:46:59.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:46:59.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.0398ms +2024-05-23 00:47:00.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:00.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:00.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 197.102ms +2024-05-23 00:47:00.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 200.5149ms +2024-05-23 00:47:00.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:00.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 445.5365ms +2024-05-23 00:47:00.265 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:00.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 451.128ms +2024-05-23 00:47:00.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:00.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 507.3599ms +2024-05-23 00:47:04.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:04.716 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:04.889 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:04.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.9661ms +2024-05-23 00:47:05.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:47:05.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:05.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:05.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:06.133 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:06.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.5731ms +2024-05-23 00:47:06.139 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:06.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.2768ms +2024-05-23 00:47:31.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:31.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:31.742 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:31.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.3261ms +2024-05-23 00:47:32.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:32.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:32.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:32.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.3516ms +2024-05-23 00:47:34.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:34.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:34.917 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:34.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.3871ms +2024-05-23 00:47:37.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:47:37.157 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:37.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:47:37.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.4159ms +2024-05-23 00:48:15.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:48:15.411 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:15.592 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:15.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.7033ms +2024-05-23 00:48:17.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:48:17.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:18.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:18.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.7434ms +2024-05-23 00:48:19.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:48:19.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:48:19.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:48:19.250 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:48:19.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:48:19.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:48:19.254 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:48:19.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.361 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.7364ms +2024-05-23 00:48:19.363 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.7635ms +2024-05-23 00:48:19.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 171.8349ms +2024-05-23 00:48:19.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.5368ms +2024-05-23 00:48:19.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.4143ms +2024-05-23 00:48:19.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.2434ms +2024-05-23 00:48:19.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:19.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 524.5039ms +2024-05-23 00:48:27.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:48:27.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:48:27.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:27.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:27.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:27.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 190.5082ms +2024-05-23 00:48:27.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:48:27.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.1063ms +2024-05-23 00:50:00.087 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 22:50:00. +2024-05-23 00:50:11.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:50:11.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:50:11.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:50:11.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:50:11.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:50:11.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:50:11.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:50:11.398 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.401 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.508 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.4125ms +2024-05-23 00:50:11.509 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.6224ms +2024-05-23 00:50:11.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 177.5162ms +2024-05-23 00:50:11.571 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.3325ms +2024-05-23 00:50:11.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 207.6199ms +2024-05-23 00:50:11.601 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 206.7334ms +2024-05-23 00:50:11.881 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:11.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 493.6073ms +2024-05-23 00:50:22.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:50:22.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:50:22.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:22.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:23.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:23.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.9478ms +2024-05-23 00:50:23.115 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:50:23.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.1064ms +2024-05-23 00:54:07.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:54:07.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:54:07.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:54:07.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:54:07.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:54:07.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:54:07.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:54:07.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.5813ms +2024-05-23 00:54:07.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.8151ms +2024-05-23 00:54:07.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.4987ms +2024-05-23 00:54:07.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.7161ms +2024-05-23 00:54:07.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.996 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:07.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.6275ms +2024-05-23 00:54:07.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 193.2542ms +2024-05-23 00:54:08.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:08.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 503.1894ms +2024-05-23 00:54:31.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:54:31.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:54:31.365 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:31.365 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:31.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:31.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.1155ms +2024-05-23 00:54:31.545 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:31.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.0077ms +2024-05-23 00:54:45.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:54:45.056 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:45.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:45.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.7217ms +2024-05-23 00:54:50.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:54:50.953 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:51.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:51.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.0891ms +2024-05-23 00:54:53.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:54:53.885 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:53.995 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:54:53.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.5715ms +2024-05-23 00:55:01.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:55:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:55:01.063 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:55:01.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:55:01.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:55:01.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.069 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:55:01.070 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:55:01.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.072 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 120.1449ms +2024-05-23 00:55:01.217 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 147.4087ms +2024-05-23 00:55:01.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 196.7379ms +2024-05-23 00:55:01.263 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 205.8086ms +2024-05-23 00:55:01.264 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 202.6772ms +2024-05-23 00:55:01.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 229.6841ms +2024-05-23 00:55:01.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:01.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 530.7903ms +2024-05-23 00:55:07.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:55:07.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:07.891 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:07.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.6172ms +2024-05-23 00:55:27.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:55:27.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:55:27.785 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:55:27.785 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.786 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:55:27.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:55:27.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:55:27.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:55:27.787 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.788 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.0514ms +2024-05-23 00:55:27.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.6144ms +2024-05-23 00:55:27.967 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.6937ms +2024-05-23 00:55:27.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:27.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.1021ms +2024-05-23 00:55:28.000 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:28.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 215.3164ms +2024-05-23 00:55:28.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:28.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 284.2346ms +2024-05-23 00:55:28.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:28.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 488.182ms +2024-05-23 00:55:31.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:55:31.904 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:32.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:55:32.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.8284ms +2024-05-23 00:57:22.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 00:57:22.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 00:57:22.903 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 00:57:22.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 00:57:22.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:57:22.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:57:22.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 00:57:22.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:22.908 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.6492ms +2024-05-23 00:57:23.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.245ms +2024-05-23 00:57:23.085 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.085 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.4123ms +2024-05-23 00:57:23.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.335ms +2024-05-23 00:57:23.087 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 183.6719ms +2024-05-23 00:57:23.089 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.516ms +2024-05-23 00:57:23.384 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:23.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 488.9493ms +2024-05-23 00:57:27.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 00:57:27.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 00:57:27.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:27.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:28.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:28.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.5484ms +2024-05-23 00:57:28.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 00:57:28.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.1122ms +2024-05-23 01:00:00.072 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:00:00. +2024-05-23 01:04:05.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:04:05.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:04:05.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:04:05.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:04:05.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:04:05.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:04:05.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:04:05.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.360 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.8174ms +2024-05-23 01:04:05.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.6316ms +2024-05-23 01:04:05.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 189.7728ms +2024-05-23 01:04:05.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.6792ms +2024-05-23 01:04:05.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 220.0262ms +2024-05-23 01:04:05.717 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 471.5828ms +2024-05-23 01:04:05.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:05.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 534.4903ms +2024-05-23 01:04:13.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:04:13.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:04:13.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:13.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:13.892 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:13.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 178.7803ms +2024-05-23 01:04:13.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:04:13.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.6378ms +2024-05-23 01:10:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:10:00. +2024-05-23 01:13:28.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:13:28.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:13:28.411 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:13:28.412 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:13:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:13:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:13:28.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:13:28.416 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.4672ms +2024-05-23 01:13:28.526 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.926ms +2024-05-23 01:13:28.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.4645ms +2024-05-23 01:13:28.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.2436ms +2024-05-23 01:13:28.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 185.9606ms +2024-05-23 01:13:28.643 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 230.0181ms +2024-05-23 01:13:28.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:28.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 532.5758ms +2024-05-23 01:13:52.146 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:13:52.146 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:13:52.147 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:13:52.147 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.148 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:13:52.148 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:13:52.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:13:52.149 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:13:52.149 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.265 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.265 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.819ms +2024-05-23 01:13:52.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.2639ms +2024-05-23 01:13:52.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.5799ms +2024-05-23 01:13:52.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.614ms +2024-05-23 01:13:52.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.5725ms +2024-05-23 01:13:52.344 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 196.8586ms +2024-05-23 01:13:52.679 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:52.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 533.755ms +2024-05-23 01:13:58.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:13:58.570 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:58.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:13:58.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.1959ms +2024-05-23 01:14:00.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:14:00.318 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:00.424 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:00.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.6178ms +2024-05-23 01:14:23.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:14:23.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:14:23.841 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:23.841 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:24.033 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:24.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.7369ms +2024-05-23 01:14:24.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:14:24.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 199.0561ms +2024-05-23 01:18:26.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:18:26.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:18:26.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:18:26.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:18:26.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:18:26.354 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:18:26.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:18:26.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.838 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 488.1383ms +2024-05-23 01:18:26.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 559.5465ms +2024-05-23 01:18:26.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 583.4167ms +2024-05-23 01:18:26.971 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:26.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 617.9614ms +2024-05-23 01:18:27.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:27.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 706.3611ms +2024-05-23 01:18:27.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:27.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 742.0201ms +2024-05-23 01:18:27.185 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:27.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 830.8667ms +2024-05-23 01:18:41.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:18:41.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:18:41.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:41.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:41.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:41.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.3002ms +2024-05-23 01:18:41.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:18:41.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.4274ms +2024-05-23 01:20:00.081 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:20:00. +2024-05-23 01:27:45.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:27:45.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:27:45.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:27:45.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.766 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:27:45.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:27:45.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:27:45.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:27:45.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.874 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.6755ms +2024-05-23 01:27:45.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.3057ms +2024-05-23 01:27:45.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.1965ms +2024-05-23 01:27:45.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.3674ms +2024-05-23 01:27:45.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:45.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 219.7374ms +2024-05-23 01:27:46.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:46.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 529.1981ms +2024-05-23 01:27:46.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:27:46.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 553.5465ms +2024-05-23 01:28:11.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:28:11.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:28:11.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:11.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:11.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:11.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.0905ms +2024-05-23 01:28:11.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:11.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.5933ms +2024-05-23 01:28:48.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:28:48.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:48.621 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:48.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.5472ms +2024-05-23 01:28:54.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:28:54.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:28:54.026 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:28:54.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:28:54.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:28:54.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:28:54.034 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:28:54.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.156 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 124.5604ms +2024-05-23 01:28:54.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 127.0053ms +2024-05-23 01:28:54.208 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 185.2368ms +2024-05-23 01:28:54.222 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.9615ms +2024-05-23 01:28:54.224 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.9425ms +2024-05-23 01:28:54.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 224.6262ms +2024-05-23 01:28:54.522 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:54.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 496.5658ms +2024-05-23 01:28:58.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:28:58.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:28:58.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:58.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:58.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:58.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.9994ms +2024-05-23 01:28:59.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:28:59.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 222.2484ms +2024-05-23 01:30:00.080 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:30:00. +2024-05-23 01:31:02.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:31:02.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:31:02.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:31:02.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:31:02.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.707 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:31:02.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:31:02.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:31:02.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.825 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.3734ms +2024-05-23 01:31:02.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 124.303ms +2024-05-23 01:31:02.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.4498ms +2024-05-23 01:31:02.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 194.888ms +2024-05-23 01:31:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:02.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 192.3308ms +2024-05-23 01:31:02.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.5234ms +2024-05-23 01:31:03.246 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:03.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 540.7463ms +2024-05-23 01:31:15.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:31:15.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:15.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:31:15.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:15.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:15.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 172.6064ms +2024-05-23 01:31:15.905 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:31:15.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.5551ms +2024-05-23 01:33:38.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:33:38.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:33:38.257 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:33:38.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:33:38.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:33:38.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:33:38.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:33:38.265 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.265 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.4805ms +2024-05-23 01:33:38.371 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.5437ms +2024-05-23 01:33:38.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.2302ms +2024-05-23 01:33:38.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.99ms +2024-05-23 01:33:38.445 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.1517ms +2024-05-23 01:33:38.487 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 223.3315ms +2024-05-23 01:33:38.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:38.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 538.2509ms +2024-05-23 01:33:42.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:33:42.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:42.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:42.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.4527ms +2024-05-23 01:33:50.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:33:50.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:33:50.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:33:50.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:33:50.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:33:50.461 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.461 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:33:50.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:33:50.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.1109ms +2024-05-23 01:33:50.569 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.6344ms +2024-05-23 01:33:50.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.7359ms +2024-05-23 01:33:50.638 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.3664ms +2024-05-23 01:33:50.642 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 182.6533ms +2024-05-23 01:33:50.644 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:50.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.7568ms +2024-05-23 01:33:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 544.744ms +2024-05-23 01:33:55.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:33:55.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:33:55.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:55.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:55.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:55.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.1631ms +2024-05-23 01:33:55.656 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:33:55.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.773ms +2024-05-23 01:35:40.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:35:40.589 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:35:40.590 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:35:40.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:35:40.592 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:35:40.592 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:35:40.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:35:40.595 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.703 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.703 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.1566ms +2024-05-23 01:35:40.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.8727ms +2024-05-23 01:35:40.765 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.6658ms +2024-05-23 01:35:40.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:40.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.814ms +2024-05-23 01:35:40.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.8737ms +2024-05-23 01:35:41.073 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 478.8664ms +2024-05-23 01:35:41.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 595.1844ms +2024-05-23 01:35:41.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:35:41.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:35:41.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:35:41.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:35:41.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:35:41.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:35:41.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:35:41.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.5202ms +2024-05-23 01:35:41.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.2434ms +2024-05-23 01:35:41.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 177.4273ms +2024-05-23 01:35:41.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 179.5569ms +2024-05-23 01:35:41.652 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 186.6681ms +2024-05-23 01:35:41.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:41.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 524.5504ms +2024-05-23 01:35:42.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:35:42.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:35:42.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:35:42.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:35:42.022 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.022 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:35:42.022 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:35:42.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.021 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:35:42.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.0377ms +2024-05-23 01:35:42.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 176.062ms +2024-05-23 01:35:42.200 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.8495ms +2024-05-23 01:35:42.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 194.4095ms +2024-05-23 01:35:42.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 763.3011ms +2024-05-23 01:35:42.239 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 216.815ms +2024-05-23 01:35:42.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 389.888ms +2024-05-23 01:35:42.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:42.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 484.7015ms +2024-05-23 01:35:45.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:35:45.286 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:45.456 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:35:45.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.7975ms +2024-05-23 01:38:13.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:38:13.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:38:13.250 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:38:13.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:38:13.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:13.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:38:13.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:38:13.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:38:13.257 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:38:13.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:13.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:38:13.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:38:13.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:38:13.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:38:13.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.358 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.8302ms +2024-05-23 01:38:13.361 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.0934ms +2024-05-23 01:38:13.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 187.6193ms +2024-05-23 01:38:13.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.0775ms +2024-05-23 01:38:13.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.066ms +2024-05-23 01:38:13.549 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 290.5015ms +2024-05-23 01:38:13.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 328.5779ms +2024-05-23 01:38:13.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 326.6119ms +2024-05-23 01:38:13.587 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 328.0316ms +2024-05-23 01:38:13.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:38:13.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:38:13.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:38:13.603 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:38:13.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:13.607 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.607 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:38:13.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:38:13.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.610 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.664 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 405.9191ms +2024-05-23 01:38:13.688 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 429.1823ms +2024-05-23 01:38:13.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 438.4565ms +2024-05-23 01:38:13.724 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 121.7095ms +2024-05-23 01:38:13.758 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.2301ms +2024-05-23 01:38:13.763 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.2965ms +2024-05-23 01:38:13.776 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.7442ms +2024-05-23 01:38:13.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 569.954ms +2024-05-23 01:38:13.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 607.7178ms +2024-05-23 01:38:13.971 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:13.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 365.7212ms +2024-05-23 01:38:14.034 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:14.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 429.0074ms +2024-05-23 01:38:14.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:14.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 500.437ms +2024-05-23 01:38:17.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:17.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:17.359 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:17.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.0242ms +2024-05-23 01:38:35.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:38:35.669 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:38:35.670 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:38:35.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:38:35.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:38:35.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:35.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:38:35.672 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.672 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.1961ms +2024-05-23 01:38:35.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.2335ms +2024-05-23 01:38:35.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.483ms +2024-05-23 01:38:35.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.9847ms +2024-05-23 01:38:35.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 192.073ms +2024-05-23 01:38:35.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:35.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.9358ms +2024-05-23 01:38:36.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:36.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 528.0911ms +2024-05-23 01:38:39.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:38:39.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:38:39.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:39.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:39.797 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:39.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.0233ms +2024-05-23 01:38:39.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:38:39.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.1787ms +2024-05-23 01:39:03.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:39:03.749 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:39:03.750 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:39:03.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:39:03.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:39:03.754 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:39:03.755 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:39:03.757 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.2241ms +2024-05-23 01:39:03.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.0478ms +2024-05-23 01:39:03.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 174.3566ms +2024-05-23 01:39:03.934 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.2009ms +2024-05-23 01:39:03.935 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.6976ms +2024-05-23 01:39:03.937 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:03.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.3822ms +2024-05-23 01:39:04.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:04.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 481.003ms +2024-05-23 01:39:09.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:39:09.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:39:09.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:39:09.221 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.221 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.1194ms +2024-05-23 01:39:09.404 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.404 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:39:09.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.9176ms +2024-05-23 01:39:09.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.8928ms +2024-05-23 01:40:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:40:00. +2024-05-23 01:40:16.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:40:16.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:40:16.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:40:16.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:40:16.270 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:40:16.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:40:16.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.272 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:40:16.273 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.271 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.271 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.525ms +2024-05-23 01:40:16.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 120.8707ms +2024-05-23 01:40:16.439 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.4594ms +2024-05-23 01:40:16.453 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 187.3575ms +2024-05-23 01:40:16.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.1751ms +2024-05-23 01:40:16.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 199.414ms +2024-05-23 01:40:16.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:16.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 540.7496ms +2024-05-23 01:40:44.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:40:44.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:40:44.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:44.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:45.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:45.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.3157ms +2024-05-23 01:40:45.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:45.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.6291ms +2024-05-23 01:40:46.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:40:46.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:40:46.230 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:46.230 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:46.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:46.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.0984ms +2024-05-23 01:40:46.418 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:40:46.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.461ms +2024-05-23 01:41:01.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:41:01.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:41:01.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:01.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:41:01.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:41:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:41:01.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:41:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.3336ms +2024-05-23 01:41:01.709 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.2448ms +2024-05-23 01:41:01.768 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 176.6984ms +2024-05-23 01:41:01.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 192.345ms +2024-05-23 01:41:01.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.4374ms +2024-05-23 01:41:01.782 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:01.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.3482ms +2024-05-23 01:41:02.145 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:02.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 554.221ms +2024-05-23 01:41:04.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:04.049 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:04.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:04.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.5402ms +2024-05-23 01:41:05.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:41:05.940 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:41:05.941 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:41:05.941 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:05.942 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:41:05.942 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:41:05.943 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:05.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:41:05.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.5971ms +2024-05-23 01:41:06.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.3501ms +2024-05-23 01:41:06.126 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.4732ms +2024-05-23 01:41:06.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 184.5362ms +2024-05-23 01:41:06.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 226.0604ms +2024-05-23 01:41:06.187 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 245.0984ms +2024-05-23 01:41:06.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:06.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 482.3198ms +2024-05-23 01:41:23.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:23.417 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:23.522 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:23.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.2091ms +2024-05-23 01:41:27.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:27.640 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:27.756 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:27.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.0774ms +2024-05-23 01:41:30.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:30.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:30.408 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:30.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.6023ms +2024-05-23 01:41:33.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:33.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:33.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:33.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.5934ms +2024-05-23 01:41:36.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:41:36.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:41:36.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:41:36.545 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.545 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:41:36.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:41:36.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:41:36.549 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.549 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:41:36.550 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.653 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.8346ms +2024-05-23 01:41:36.663 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.137ms +2024-05-23 01:41:36.727 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.4002ms +2024-05-23 01:41:36.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.8992ms +2024-05-23 01:41:36.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.1002ms +2024-05-23 01:41:36.736 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:36.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 187.7756ms +2024-05-23 01:41:37.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:41:37.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 497.2874ms +2024-05-23 01:42:02.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:42:02.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:42:02.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:42:02.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.022 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:42:02.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:42:02.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:42:02.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:42:02.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.1392ms +2024-05-23 01:42:02.134 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.3596ms +2024-05-23 01:42:02.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.0615ms +2024-05-23 01:42:02.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.5904ms +2024-05-23 01:42:02.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.0292ms +2024-05-23 01:42:02.204 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.0537ms +2024-05-23 01:42:02.509 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:02.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 487.6069ms +2024-05-23 01:42:04.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:42:04.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:42:04.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:04.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:04.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:04.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 126.5713ms +2024-05-23 01:42:04.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:04.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.4003ms +2024-05-23 01:42:43.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:42:43.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:42:43.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:42:43.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:42:43.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:42:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:42:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:42:43.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.139 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.5164ms +2024-05-23 01:42:43.141 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.0414ms +2024-05-23 01:42:43.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 175.6461ms +2024-05-23 01:42:43.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.5772ms +2024-05-23 01:42:43.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.7689ms +2024-05-23 01:42:43.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.5137ms +2024-05-23 01:42:43.560 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:43.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 535.7842ms +2024-05-23 01:42:44.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:42:44.418 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:44.600 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:44.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.2933ms +2024-05-23 01:42:44.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:42:44.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:44.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:44.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.3298ms +2024-05-23 01:42:57.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:42:57.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:42:57.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:42:57.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:42:57.026 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:42:57.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:42:57.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:42:57.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.129 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 104.501ms +2024-05-23 01:42:57.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.847ms +2024-05-23 01:42:57.199 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.9174ms +2024-05-23 01:42:57.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.641ms +2024-05-23 01:42:57.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.9131ms +2024-05-23 01:42:57.209 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 182.5473ms +2024-05-23 01:42:57.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:42:57.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 482.8201ms +2024-05-23 01:44:22.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:44:22.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:44:22.417 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:44:22.418 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:44:22.602 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:44:22.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.4646ms +2024-05-23 01:44:22.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:44:22.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.139ms +2024-05-23 01:46:01.705 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-23 01:46:01.706 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-23 01:46:03.872 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-23 01:46:03.872 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 2166.4324ms +2024-05-23 01:46:20.009 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-23 01:46:20.010 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-23 01:46:20.847 +02:00 [INF] Received a message with ID: '7e364b95589140799b61d1fd027cb574', Correlation ID: '40276c0871d44cf18ebcc725faff6585', timestamp: 1716421580, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-23 01:46:20.859 +02:00 [INF] Handling a message: student_created with ID: 7e364b95589140799b61d1fd027cb574, Correlation ID: 40276c0871d44cf18ebcc725faff6585, retry: 0 +2024-05-23 01:46:20.902 +02:00 [INF] Associated profile picture with ID: 00000000-0000-0000-0000-000000000000 for student with ID: f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:46:20.904 +02:00 [INF] Handled a message: student_created with ID: 7e364b95589140799b61d1fd027cb574, Correlation ID: 40276c0871d44cf18ebcc725faff6585, retry: 0 +2024-05-23 01:46:21.630 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-23 01:46:21.631 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1621.5442ms +2024-05-23 01:46:31.107 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-23 01:46:31.108 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-23 01:46:32.671 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-23 01:46:32.672 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1564.3574ms +2024-05-23 01:46:35.110 +02:00 [INF] Received a message with ID: '5389cfd91a4945d096f90e87a1557833', Correlation ID: '41411a06252549a1bf3fd722d096450c', timestamp: 1716421595, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-23 01:46:35.111 +02:00 [INF] Handling a message: student_updated with ID: 5389cfd91a4945d096f90e87a1557833, Correlation ID: 41411a06252549a1bf3fd722d096450c, retry: 0 +2024-05-23 01:46:35.294 +02:00 [INF] Associated profile picture with ID: 46107efd-e233-4da7-affb-51e77f4a39ef for student with ID: f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:46:35.295 +02:00 [INF] Handled a message: student_updated with ID: 5389cfd91a4945d096f90e87a1557833, Correlation ID: 41411a06252549a1bf3fd722d096450c, retry: 0 +2024-05-23 01:46:41.613 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-23 01:46:41.614 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-23 01:46:43.359 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-23 01:46:43.359 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1745.5781ms +2024-05-23 01:46:45.973 +02:00 [INF] Received a message with ID: '0907fdb386d4488eb05e933bbd32e3d7', Correlation ID: 'd2d93907ca2342e1a860d17f68b75612', timestamp: 1716421605, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-23 01:46:45.974 +02:00 [INF] Handling a message: student_updated with ID: 0907fdb386d4488eb05e933bbd32e3d7, Correlation ID: d2d93907ca2342e1a860d17f68b75612, retry: 0 +2024-05-23 01:46:46.163 +02:00 [INF] Associated profile picture with ID: ab120f8e-985f-473c-ad07-dea8b6259952 for student with ID: f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:46:46.164 +02:00 [INF] Handled a message: student_updated with ID: 0907fdb386d4488eb05e933bbd32e3d7, Correlation ID: d2d93907ca2342e1a860d17f68b75612, retry: 0 +2024-05-23 01:46:52.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:46:52.109 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:52.417 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:52.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 308.5906ms +2024-05-23 01:46:56.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:46:56.660 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:46:56.662 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:46:56.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:46:56.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:46:56.663 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.663 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:46:56.663 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:46:56.664 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.664 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:46:56.665 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 117.0602ms +2024-05-23 01:46:56.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.088ms +2024-05-23 01:46:56.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.5584ms +2024-05-23 01:46:56.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 199.6735ms +2024-05-23 01:46:56.863 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 198.795ms +2024-05-23 01:46:56.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 218.5274ms +2024-05-23 01:46:56.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:56.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 294.6247ms +2024-05-23 01:46:57.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:46:57.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 517.0387ms +2024-05-23 01:47:30.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:47:30.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:47:30.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:47:30.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:47:30.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:47:30.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:47:30.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:47:30.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:47:30.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.799 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 127.7684ms +2024-05-23 01:47:30.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 126.4995ms +2024-05-23 01:47:30.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 194.7544ms +2024-05-23 01:47:30.992 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:30.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 196.0835ms +2024-05-23 01:47:31.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:31.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 210.8055ms +2024-05-23 01:47:31.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:31.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 268.4598ms +2024-05-23 01:47:31.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:31.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 307.2483ms +2024-05-23 01:47:31.375 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:31.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 579.333ms +2024-05-23 01:47:44.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:47:44.410 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:44.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:44.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.7509ms +2024-05-23 01:47:44.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:47:44.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:44.670 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:44.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.0425ms +2024-05-23 01:47:46.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:47:46.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:47.095 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:47.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.6345ms +2024-05-23 01:47:53.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:47:53.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:53.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:53.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 136.9022ms +2024-05-23 01:47:53.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:47:53.780 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:53.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:53.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 168.5995ms +2024-05-23 01:47:53.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:47:53.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 274.1439ms +2024-05-23 01:47:54.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:47:54.626 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:47:54.627 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:47:54.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:47:54.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:47:54.629 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.629 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:47:54.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:47:54.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:47:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 137.0904ms +2024-05-23 01:47:54.828 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 198.43ms +2024-05-23 01:47:54.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 204.951ms +2024-05-23 01:47:54.839 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.839 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 212.1816ms +2024-05-23 01:47:54.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 210.0819ms +2024-05-23 01:47:54.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:54.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 301.094ms +2024-05-23 01:47:55.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 421.2171ms +2024-05-23 01:47:55.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 535.4187ms +2024-05-23 01:47:55.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:47:55.682 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 125.0402ms +2024-05-23 01:47:55.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:47:55.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.951 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:55.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.4875ms +2024-05-23 01:47:55.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:47:55.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:56.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:47:56.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 248.9489ms +2024-05-23 01:48:10.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:48:10.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:10.657 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:10.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.3091ms +2024-05-23 01:48:29.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:48:29.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.566 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 127.573ms +2024-05-23 01:48:29.569 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:48:29.569 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.712 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.4262ms +2024-05-23 01:48:29.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:48:29.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 279.7564ms +2024-05-23 01:48:30.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:48:30.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:48:30.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:48:30.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:48:30.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:48:30.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:48:30.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:48:30.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:48:30.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.7595ms +2024-05-23 01:48:30.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 187.3964ms +2024-05-23 01:48:30.669 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 223.5443ms +2024-05-23 01:48:30.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.731 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 287.5043ms +2024-05-23 01:48:30.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 287.0021ms +2024-05-23 01:48:30.994 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:30.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 549.4691ms +2024-05-23 01:48:31.042 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:31.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 598.8571ms +2024-05-23 01:48:31.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:31.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 608.1955ms +2024-05-23 01:48:53.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:48:53.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:54.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:48:54.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.3713ms +2024-05-23 01:49:04.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:49:04.051 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:04.232 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:04.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.8066ms +2024-05-23 01:49:28.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:49:28.719 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:28.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:28.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 129.7849ms +2024-05-23 01:49:28.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:49:28.851 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:29.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:29.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 152.3282ms +2024-05-23 01:49:29.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:49:29.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:29.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:29.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 266.6423ms +2024-05-23 01:49:30.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:49:30.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:49:30.602 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:49:30.603 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:49:30.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:49:30.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:49:30.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:49:30.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:49:30.605 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.0584ms +2024-05-23 01:49:30.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 183.2144ms +2024-05-23 01:49:30.790 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.0858ms +2024-05-23 01:49:30.965 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 361.1217ms +2024-05-23 01:49:30.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:30.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 366.7537ms +2024-05-23 01:49:31.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 432.1813ms +2024-05-23 01:49:31.097 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 497.5195ms +2024-05-23 01:49:31.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 697.3408ms +2024-05-23 01:49:31.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:49:31.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.738 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.2267ms +2024-05-23 01:49:31.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:49:31.744 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:31.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 200.0013ms +2024-05-23 01:49:31.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:49:31.951 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:32.297 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:32.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 347.2838ms +2024-05-23 01:49:56.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:49:56.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:49:56.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:49:56.330 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:49:56.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:49:56.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:49:56.332 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:49:56.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:49:56.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.4931ms +2024-05-23 01:49:56.449 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 121.6306ms +2024-05-23 01:49:56.507 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 175.9628ms +2024-05-23 01:49:56.512 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.9601ms +2024-05-23 01:49:56.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 203.4099ms +2024-05-23 01:49:56.619 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.0929ms +2024-05-23 01:49:56.811 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 483.6804ms +2024-05-23 01:49:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:49:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 609.1963ms +2024-05-23 01:49:59.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:49:59.994 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:00.075 +02:00 [INF] Cleaned unmatched files for all entities at 05/22/2024 23:50:00. +2024-05-23 01:50:00.307 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:00.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 314.1693ms +2024-05-23 01:50:04.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:50:04.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:04.447 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:04.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 248.7502ms +2024-05-23 01:50:06.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:50:06.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:50:06.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:50:06.447 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.447 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:50:06.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:50:06.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:50:06.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:50:06.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:50:06.452 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.559 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.3719ms +2024-05-23 01:50:06.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.3583ms +2024-05-23 01:50:06.622 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 176.0779ms +2024-05-23 01:50:06.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.1829ms +2024-05-23 01:50:06.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.635 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.1615ms +2024-05-23 01:50:06.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 185.5803ms +2024-05-23 01:50:06.822 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 379.8731ms +2024-05-23 01:50:06.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:50:06.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 523.3334ms +2024-05-23 01:56:26.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:56:26.258 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:26.432 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:26.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.1077ms +2024-05-23 01:56:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:56:34.235 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:34.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:34.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 281.5527ms +2024-05-23 01:56:50.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:56:50.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:50.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:50.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 105.7168ms +2024-05-23 01:56:50.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:56:50.180 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:50.326 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:56:50.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7766ms +2024-05-23 01:57:15.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:57:15.385 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:15.660 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:15.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 277.2902ms +2024-05-23 01:57:15.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:57:15.778 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:15.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:15.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.2276ms +2024-05-23 01:57:17.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:57:17.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:17.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:17.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 295.1953ms +2024-05-23 01:57:38.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:57:38.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:57:38.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:57:38.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:57:38.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:57:38.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:57:38.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:57:38.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:57:38.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.874 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.8124ms +2024-05-23 01:57:38.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.4775ms +2024-05-23 01:57:38.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.0191ms +2024-05-23 01:57:38.951 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 188.8775ms +2024-05-23 01:57:38.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.7197ms +2024-05-23 01:57:38.974 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:38.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 213.927ms +2024-05-23 01:57:39.045 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:39.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 281.6809ms +2024-05-23 01:57:39.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:39.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 530.4348ms +2024-05-23 01:57:50.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:57:50.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:57:50.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:57:50.465 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:57:50.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.465 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.466 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 128.2109ms +2024-05-23 01:57:50.681 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.681 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 216.6731ms +2024-05-23 01:57:50.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 216.2519ms +2024-05-23 01:57:50.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:57:50.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 342.4673ms +2024-05-23 01:58:09.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:58:09.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:58:09.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:58:09.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:58:09.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:58:09.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:58:09.034 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:58:09.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:58:09.034 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.2946ms +2024-05-23 01:58:09.157 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 123.5789ms +2024-05-23 01:58:09.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 191.2053ms +2024-05-23 01:58:09.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 194.1123ms +2024-05-23 01:58:09.230 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 203.0783ms +2024-05-23 01:58:09.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 294.806ms +2024-05-23 01:58:09.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 507.4883ms +2024-05-23 01:58:09.657 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:09.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 629.2711ms +2024-05-23 01:58:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:58:16.790 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:58:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:58:16.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:16.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:16.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:16.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 195.9668ms +2024-05-23 01:58:17.016 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:17.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 226.7119ms +2024-05-23 01:58:17.120 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:17.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 330.8311ms +2024-05-23 01:58:31.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:58:31.271 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:31.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:31.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 200.0764ms +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:58:37.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:58:37.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:58:37.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:58:37.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:37.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.2756ms +2024-05-23 01:58:38.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.9099ms +2024-05-23 01:58:38.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.1277ms +2024-05-23 01:58:38.169 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.2126ms +2024-05-23 01:58:38.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 187.368ms +2024-05-23 01:58:38.173 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 187.7402ms +2024-05-23 01:58:38.322 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 337.3962ms +2024-05-23 01:58:38.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:58:38.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 542.6144ms +2024-05-23 01:59:01.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:59:01.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:59:01.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:01.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:59:01.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:59:01.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:59:01.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:01.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:01.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:59:01.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.8094ms +2024-05-23 01:59:02.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.6335ms +2024-05-23 01:59:02.145 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.146 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.0734ms +2024-05-23 01:59:02.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 180.3263ms +2024-05-23 01:59:02.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.8706ms +2024-05-23 01:59:02.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.1467ms +2024-05-23 01:59:02.236 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 273.0066ms +2024-05-23 01:59:02.455 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:02.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 493.0357ms +2024-05-23 01:59:03.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:03.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:03.399 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:03.400 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:03.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:03.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.2235ms +2024-05-23 01:59:03.583 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:03.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.592ms +2024-05-23 01:59:20.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:59:20.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:59:20.792 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.792 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:59:20.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:59:20.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:20.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:59:20.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:20.792 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:59:20.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.3105ms +2024-05-23 01:59:20.904 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.7402ms +2024-05-23 01:59:20.981 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.1418ms +2024-05-23 01:59:20.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.4328ms +2024-05-23 01:59:20.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 193.3061ms +2024-05-23 01:59:20.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:20.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 197.0714ms +2024-05-23 01:59:21.087 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:21.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 295.0597ms +2024-05-23 01:59:21.311 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:21.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 520.9227ms +2024-05-23 01:59:25.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:25.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:25.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:25.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:25.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:25.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.0375ms +2024-05-23 01:59:25.217 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:25.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 178.6233ms +2024-05-23 01:59:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 01:59:34.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 01:59:34.653 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 01:59:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:59:34.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:34.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 01:59:34.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 01:59:34.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:34.662 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.662 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.764 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 115.585ms +2024-05-23 01:59:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 196.2637ms +2024-05-23 01:59:34.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 196.8776ms +2024-05-23 01:59:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 200.0794ms +2024-05-23 01:59:34.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 199.5806ms +2024-05-23 01:59:34.883 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 226.0169ms +2024-05-23 01:59:34.955 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:34.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 301.2342ms +2024-05-23 01:59:35.159 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:35.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 504.9506ms +2024-05-23 01:59:51.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 01:59:51.088 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.9426ms +2024-05-23 01:59:51.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 01:59:51.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.8296ms +2024-05-23 01:59:51.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 01:59:51.554 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.796 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 01:59:51.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 242.0964ms +2024-05-23 02:00:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:00:00. +2024-05-23 02:00:22.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:00:22.653 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:22.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:22.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.7493ms +2024-05-23 02:00:22.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:00:22.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:22.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:22.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.8405ms +2024-05-23 02:00:22.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:00:22.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:23.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:23.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.4337ms +2024-05-23 02:00:40.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:00:40.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:40.458 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:00:40.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 286.1972ms +2024-05-23 02:01:21.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:01:21.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:01:21.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:01:21.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.3771ms +2024-05-23 02:03:34.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:03:34.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:03:34.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:03:34.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:34.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:34.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:34.136 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.136 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:03:34.137 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:03:34.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.289 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 155.3453ms +2024-05-23 02:03:34.291 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 155.1998ms +2024-05-23 02:03:34.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:34.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.321 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 189.3272ms +2024-05-23 02:03:34.365 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.365 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 231.0786ms +2024-05-23 02:03:34.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 229.3749ms +2024-05-23 02:03:34.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 229.5286ms +2024-05-23 02:03:34.448 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.3107ms +2024-05-23 02:03:34.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:34.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 348.267ms +2024-05-23 02:03:34.564 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.6063ms +2024-05-23 02:03:34.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:34.568 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.670 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 539.2389ms +2024-05-23 02:03:34.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:34.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.4114ms +2024-05-23 02:03:38.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:38.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.3382ms +2024-05-23 02:03:38.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:38.566 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.676 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.7144ms +2024-05-23 02:03:38.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:38.683 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.840 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:38.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.5235ms +2024-05-23 02:03:40.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:40.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:40.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:03:40.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:03:40.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:03:40.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:03:40.316 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:03:40.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:40.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.6628ms +2024-05-23 02:03:40.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.4233ms +2024-05-23 02:03:40.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 177.5921ms +2024-05-23 02:03:40.502 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 189.1577ms +2024-05-23 02:03:40.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.3978ms +2024-05-23 02:03:40.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 192.7128ms +2024-05-23 02:03:40.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 318.6051ms +2024-05-23 02:03:40.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:40.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:40.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 561.9699ms +2024-05-23 02:03:41.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.8516ms +2024-05-23 02:03:41.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:41.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 119.2684ms +2024-05-23 02:03:41.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:41.166 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.315 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.2667ms +2024-05-23 02:03:41.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:03:41.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:03:41.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:03:41.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:03:41.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:03:41.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:03:41.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:03:41.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:03:41.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.4125ms +2024-05-23 02:03:41.931 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 126.2035ms +2024-05-23 02:03:41.977 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.7575ms +2024-05-23 02:03:41.995 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.7142ms +2024-05-23 02:03:41.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:41.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.8199ms +2024-05-23 02:03:42.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:42.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 197.6968ms +2024-05-23 02:03:42.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:42.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 347.4213ms +2024-05-23 02:03:42.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:03:42.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 549.5522ms +2024-05-23 02:04:02.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:04:02.015 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:02.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:02.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.3733ms +2024-05-23 02:04:05.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:04:05.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:05.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:05.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.7068ms +2024-05-23 02:04:05.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:04:05.993 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.086ms +2024-05-23 02:04:06.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:04:06.103 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.245 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.516ms +2024-05-23 02:04:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:04:06.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:04:06.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:04:06.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.589 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:04:06.589 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:04:06.591 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:04:06.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:04:06.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:04:06.592 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.705 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.5036ms +2024-05-23 02:04:06.776 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.2733ms +2024-05-23 02:04:06.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 189.1569ms +2024-05-23 02:04:06.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 190.5952ms +2024-05-23 02:04:06.815 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 223.6819ms +2024-05-23 02:04:06.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 263.0084ms +2024-05-23 02:04:06.872 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:06.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 285.5962ms +2024-05-23 02:04:07.097 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:04:07.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 514.8957ms +2024-05-23 02:05:44.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:44.470 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.5152ms +2024-05-23 02:05:44.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:44.658 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.765 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.2536ms +2024-05-23 02:05:44.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:44.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:44.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.4896ms +2024-05-23 02:05:47.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:47.503 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 178.2809ms +2024-05-23 02:05:47.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:47.683 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.7432ms +2024-05-23 02:05:47.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:47.789 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.934 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:47.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7416ms +2024-05-23 02:05:49.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:05:49.439 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:05:49.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:05:49.447 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:05:49.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:49.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.452 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:05:49.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:49.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:49.455 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.559 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.0815ms +2024-05-23 02:05:49.599 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 145.8789ms +2024-05-23 02:05:49.629 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 180.2502ms +2024-05-23 02:05:49.636 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 194.4257ms +2024-05-23 02:05:49.733 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 279.9393ms +2024-05-23 02:05:49.864 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 410.1042ms +2024-05-23 02:05:49.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:49.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 506.3019ms +2024-05-23 02:05:49.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:49.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 660.0736ms +2024-05-23 02:05:50.126 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.3111ms +2024-05-23 02:05:50.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:50.135 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.240 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.3518ms +2024-05-23 02:05:50.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:50.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:50.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.3019ms +2024-05-23 02:05:52.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:52.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:52.964 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:52.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 190.2166ms +2024-05-23 02:05:52.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:52.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:53.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:53.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.5525ms +2024-05-23 02:05:53.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:53.082 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:53.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:53.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.5444ms +2024-05-23 02:05:54.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:05:54.526 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:05:54.527 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:05:54.528 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:05:54.529 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:05:54.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:05:54.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:05:54.532 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:05:54.533 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.641 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.641 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.8951ms +2024-05-23 02:05:54.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.0458ms +2024-05-23 02:05:54.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.7871ms +2024-05-23 02:05:54.708 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 178.0483ms +2024-05-23 02:05:54.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 181.9448ms +2024-05-23 02:05:54.812 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 283.2923ms +2024-05-23 02:05:54.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:54.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 464.2226ms +2024-05-23 02:05:55.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:05:55.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 526.9688ms +2024-05-23 02:06:10.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:06:10.857 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.029 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 172.4905ms +2024-05-23 02:06:11.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:06:11.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.2787ms +2024-05-23 02:06:11.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:06:11.144 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.288 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:11.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.9791ms +2024-05-23 02:06:12.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:06:12.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:06:12.242 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:06:12.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:06:12.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:06:12.246 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:06:12.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:06:12.250 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:06:12.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.9186ms +2024-05-23 02:06:12.353 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.8569ms +2024-05-23 02:06:12.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.7004ms +2024-05-23 02:06:12.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.2708ms +2024-05-23 02:06:12.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.9595ms +2024-05-23 02:06:12.431 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.4095ms +2024-05-23 02:06:12.962 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:12.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 725.1787ms +2024-05-23 02:06:13.073 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:13.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 820.5629ms +2024-05-23 02:06:26.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:06:26.175 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:26.526 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:26.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 352.1282ms +2024-05-23 02:06:27.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:06:27.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:06:27.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:06:27.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:06:27.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:06:27.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:06:27.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:06:27.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:27.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:06:27.941 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.046 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.4135ms +2024-05-23 02:06:28.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.5095ms +2024-05-23 02:06:28.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.4694ms +2024-05-23 02:06:28.124 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 190.5639ms +2024-05-23 02:06:28.124 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 193.0458ms +2024-05-23 02:06:28.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 213.724ms +2024-05-23 02:06:28.217 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 282.1573ms +2024-05-23 02:06:28.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:28.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 494.9541ms +2024-05-23 02:06:28.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:06:28.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.7718ms +2024-05-23 02:06:29.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:06:29.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.245 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.3794ms +2024-05-23 02:06:29.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:06:29.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.394 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:29.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.8122ms +2024-05-23 02:06:34.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:06:34.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.2738ms +2024-05-23 02:06:34.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:06:34.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.384 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.9476ms +2024-05-23 02:06:34.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:06:34.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.533 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:06:34.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.7989ms +2024-05-23 02:07:11.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:07:11.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.160 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 230.9321ms +2024-05-23 02:07:12.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:07:12.163 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 129.9301ms +2024-05-23 02:07:12.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:07:12.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.3436ms +2024-05-23 02:07:12.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:07:12.850 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:07:12.850 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:07:12.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:07:12.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:07:12.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:07:12.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.852 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 104.7912ms +2024-05-23 02:07:12.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:12.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.0138ms +2024-05-23 02:07:13.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 172.2022ms +2024-05-23 02:07:13.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.0492ms +2024-05-23 02:07:13.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 209.9856ms +2024-05-23 02:07:13.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 286.3562ms +2024-05-23 02:07:13.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 291.2083ms +2024-05-23 02:07:13.409 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:07:13.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 557.7499ms +2024-05-23 02:09:14.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:09:14.073 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 171.7597ms +2024-05-23 02:09:14.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:09:14.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.6256ms +2024-05-23 02:09:14.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:09:14.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.1042ms +2024-05-23 02:09:14.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:09:14.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:09:14.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:09:14.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:09:14.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:09:14.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:09:14.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:09:14.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.811 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:09:14.813 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.161ms +2024-05-23 02:09:14.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.453ms +2024-05-23 02:09:14.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:14.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.8915ms +2024-05-23 02:09:15.009 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:15.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 211.9753ms +2024-05-23 02:09:15.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:15.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 257.2187ms +2024-05-23 02:09:15.295 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:15.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 500.1976ms +2024-05-23 02:09:15.356 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:15.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 546.3147ms +2024-05-23 02:09:15.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:09:15.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 802.1324ms +2024-05-23 02:10:00.074 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:10:00. +2024-05-23 02:11:14.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:11:14.121 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 172.306ms +2024-05-23 02:11:14.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:11:14.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.414 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.606ms +2024-05-23 02:11:14.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:11:14.420 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.568 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:14.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.621ms +2024-05-23 02:11:15.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:11:15.647 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:11:15.648 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:11:15.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:11:15.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:11:15.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:11:15.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:11:15.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:11:15.651 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.2926ms +2024-05-23 02:11:15.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.706ms +2024-05-23 02:11:15.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 208.5161ms +2024-05-23 02:11:15.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 282.9376ms +2024-05-23 02:11:15.935 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 285.3463ms +2024-05-23 02:11:15.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:15.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 329.5472ms +2024-05-23 02:11:16.000 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:16.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 351.0795ms +2024-05-23 02:11:16.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:11:16.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 492.2659ms +2024-05-23 02:12:20.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:12:20.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:12:20.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:12:20.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:12:20.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:12:20.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:12:20.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:12:20.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:12:20.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.6948ms +2024-05-23 02:12:20.969 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 172.2677ms +2024-05-23 02:12:20.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.7019ms +2024-05-23 02:12:20.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 189.6556ms +2024-05-23 02:12:20.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:20.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 196.3016ms +2024-05-23 02:12:21.027 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:21.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 230.0546ms +2024-05-23 02:12:21.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:21.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 295.5306ms +2024-05-23 02:12:21.312 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:12:21.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 517.6093ms +2024-05-23 02:13:32.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:13:32.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:13:32.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:13:32.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:13:32.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.659 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.4999ms +2024-05-23 02:13:32.769 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.0932ms +2024-05-23 02:13:32.837 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.9984ms +2024-05-23 02:13:32.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:13:32.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 184.558ms +2024-05-23 02:15:42.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:15:42.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:15:42.876 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:15:42.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:15:42.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:15:42.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:15:42.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:15:42.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:15:42.880 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.880 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.791ms +2024-05-23 02:15:42.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:42.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.9383ms +2024-05-23 02:15:43.059 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 187.4496ms +2024-05-23 02:15:43.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.9625ms +2024-05-23 02:15:43.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.3256ms +2024-05-23 02:15:43.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 187.4815ms +2024-05-23 02:15:43.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 390.294ms +2024-05-23 02:15:43.401 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:43.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 526.3434ms +2024-05-23 02:15:44.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:15:44.232 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:15:44.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:15:44.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:15:44.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:15:44.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:15:44.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.9083ms +2024-05-23 02:15:44.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.4669ms +2024-05-23 02:15:44.408 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.7358ms +2024-05-23 02:15:44.413 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.4168ms +2024-05-23 02:15:44.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 185.1166ms +2024-05-23 02:15:44.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.5571ms +2024-05-23 02:15:44.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 290.0892ms +2024-05-23 02:15:44.725 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:44.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 490.6615ms +2024-05-23 02:15:46.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:15:46.855 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:15:46.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:15:46.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:15:46.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.961 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 105.6059ms +2024-05-23 02:15:46.962 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:46.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.9787ms +2024-05-23 02:15:47.029 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:47.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.3054ms +2024-05-23 02:15:47.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:15:47.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 175.8596ms +2024-05-23 02:16:03.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:03.404 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:03.405 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:03.406 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:03.408 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.0592ms +2024-05-23 02:16:03.518 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.2526ms +2024-05-23 02:16:03.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 186.537ms +2024-05-23 02:16:03.594 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:03.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 191.6828ms +2024-05-23 02:16:11.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:11.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:16:11.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:11.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:16:11.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:16:11.357 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:11.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:11.358 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:11.358 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.460 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.7116ms +2024-05-23 02:16:11.461 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.0284ms +2024-05-23 02:16:11.531 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 175.0979ms +2024-05-23 02:16:11.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 178.9938ms +2024-05-23 02:16:11.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.5403ms +2024-05-23 02:16:11.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 334.6356ms +2024-05-23 02:16:11.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 568.7366ms +2024-05-23 02:16:12.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:12.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 684.999ms +2024-05-23 02:16:17.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:17.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:17.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:17.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:17.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:17.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:17.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:17.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:18.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:18.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.8977ms +2024-05-23 02:16:18.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:18.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.4362ms +2024-05-23 02:16:18.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:18.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 180.9638ms +2024-05-23 02:16:18.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:18.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 222.9428ms +2024-05-23 02:16:32.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:16:32.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:32.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:16:32.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:32.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:32.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:32.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:32.341 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.339 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:16:32.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.340 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.343 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.466 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 132.427ms +2024-05-23 02:16:32.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 132.5547ms +2024-05-23 02:16:32.528 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 190.98ms +2024-05-23 02:16:32.544 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 210.9976ms +2024-05-23 02:16:32.603 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 263.5729ms +2024-05-23 02:16:32.642 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:32.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 303.7901ms +2024-05-23 02:16:33.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:33.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 663.9678ms +2024-05-23 02:16:33.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:33.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1240.9018ms +2024-05-23 02:16:39.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:39.498 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:39.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:39.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 319.9317ms +2024-05-23 02:16:52.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:52.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:16:52.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:16:52.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:52.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:52.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:52.702 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.702 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:16:52.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:52.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:52.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.815 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.815 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.8774ms +2024-05-23 02:16:52.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 116.8969ms +2024-05-23 02:16:52.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 274.2833ms +2024-05-23 02:16:52.885 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.885 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.4614ms +2024-05-23 02:16:52.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.4642ms +2024-05-23 02:16:52.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:52.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 195.571ms +2024-05-23 02:16:53.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 301.4953ms +2024-05-23 02:16:53.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 513.0395ms +2024-05-23 02:16:53.243 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 539.1058ms +2024-05-23 02:16:53.717 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:16:53.717 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:16:53.720 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:16:53.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:16:53.727 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:16:53.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:16:53.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:16:53.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:16:53.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.2695ms +2024-05-23 02:16:53.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 123.5928ms +2024-05-23 02:16:53.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 172.3529ms +2024-05-23 02:16:53.907 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.3806ms +2024-05-23 02:16:53.917 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 188.2183ms +2024-05-23 02:16:53.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:53.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.7069ms +2024-05-23 02:16:54.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:54.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 294.0403ms +2024-05-23 02:16:54.196 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:16:54.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 479.6423ms +2024-05-23 02:17:33.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:17:33.045 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:33.319 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:33.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 275.489ms +2024-05-23 02:17:37.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:17:37.028 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:17:37.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:17:37.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:17:37.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:17:37.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:17:37.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:17:37.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:17:37.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 103.4205ms +2024-05-23 02:17:37.134 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.6936ms +2024-05-23 02:17:37.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 176.2672ms +2024-05-23 02:17:37.211 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 181.1897ms +2024-05-23 02:17:37.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.0152ms +2024-05-23 02:17:37.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 182.7566ms +2024-05-23 02:17:37.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 287.0904ms +2024-05-23 02:17:37.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:17:37.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 479.0917ms +2024-05-23 02:19:24.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:19:24.955 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:19:24.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:19:24.956 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:19:24.957 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:19:24.957 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:19:24.958 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:19:24.958 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:24.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:19:24.958 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 127.951ms +2024-05-23 02:19:25.146 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.5936ms +2024-05-23 02:19:25.185 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 227.3884ms +2024-05-23 02:19:25.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 233.9415ms +2024-05-23 02:19:25.223 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 266.9584ms +2024-05-23 02:19:25.416 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 458.5371ms +2024-05-23 02:19:25.436 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 482.732ms +2024-05-23 02:19:25.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:19:25.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 790.5886ms +2024-05-23 02:20:00.082 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:20:00. +2024-05-23 02:21:34.998 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:21:34.998 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:35.356 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:35.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 358.4575ms +2024-05-23 02:21:37.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:21:37.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:37.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:37.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 309.3564ms +2024-05-23 02:21:40.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:21:40.079 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:21:40.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:21:40.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:21:40.082 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:21:40.082 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:21:40.083 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:21:40.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:21:40.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.199 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.2526ms +2024-05-23 02:21:40.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 192.2807ms +2024-05-23 02:21:40.278 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 196.2902ms +2024-05-23 02:21:40.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 256.7718ms +2024-05-23 02:21:40.413 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 329.9524ms +2024-05-23 02:21:40.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 338.4796ms +2024-05-23 02:21:40.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 397.6172ms +2024-05-23 02:21:40.740 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:21:40.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 659.4281ms +2024-05-23 02:22:09.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:22:09.785 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:10.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:10.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 293.6872ms +2024-05-23 02:22:11.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:22:11.869 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:22:11.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:22:11.870 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:22:11.871 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.871 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:22:11.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:22:11.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:22:11.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:22:11.871 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.872 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.8355ms +2024-05-23 02:22:11.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:11.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.9436ms +2024-05-23 02:22:12.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 179.0679ms +2024-05-23 02:22:12.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.0065ms +2024-05-23 02:22:12.059 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 188.4232ms +2024-05-23 02:22:12.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.7695ms +2024-05-23 02:22:12.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.966ms +2024-05-23 02:22:12.412 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:22:12.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 541.809ms +2024-05-23 02:23:44.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:23:44.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:44.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:44.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 280.0232ms +2024-05-23 02:23:45.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:23:45.719 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:23:45.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:23:45.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:23:45.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:23:45.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:23:45.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:23:45.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:23:45.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.0431ms +2024-05-23 02:23:45.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.6362ms +2024-05-23 02:23:45.896 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 177.3014ms +2024-05-23 02:23:45.925 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 201.9519ms +2024-05-23 02:23:45.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 208.6348ms +2024-05-23 02:23:45.933 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:45.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 211.8673ms +2024-05-23 02:23:46.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:46.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 334.9004ms +2024-05-23 02:23:46.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:23:46.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 508.3066ms +2024-05-23 02:30:00.079 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:30:00. +2024-05-23 02:32:58.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:32:58.944 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:32:59.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:32:59.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 277.2905ms +2024-05-23 02:33:04.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:04.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 282.038ms +2024-05-23 02:33:05.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:33:05.981 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:05.983 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:33:05.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:33:05.984 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.984 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:33:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:33:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:33:05.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:33:05.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:05.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.5337ms +2024-05-23 02:33:06.163 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.5294ms +2024-05-23 02:33:06.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 180.604ms +2024-05-23 02:33:06.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 184.555ms +2024-05-23 02:33:06.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.0569ms +2024-05-23 02:33:06.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 280.5221ms +2024-05-23 02:33:06.456 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 471.2943ms +2024-05-23 02:33:06.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:06.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 484.907ms +2024-05-23 02:33:08.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:08.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:09.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:09.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 279.5154ms +2024-05-23 02:33:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:33:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:33:25.977 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.978 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:33:25.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:33:25.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:33:25.982 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:33:25.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:33:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.985 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.984 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.094 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 117.4949ms +2024-05-23 02:33:26.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 127.6609ms +2024-05-23 02:33:26.173 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 193.1725ms +2024-05-23 02:33:26.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 195.049ms +2024-05-23 02:33:26.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.5456ms +2024-05-23 02:33:26.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 234.1267ms +2024-05-23 02:33:26.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 279.9749ms +2024-05-23 02:33:26.500 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:26.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 528.5583ms +2024-05-23 02:33:28.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:33:28.800 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:33:28.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:33:28.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:33:28.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:33:28.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:33:28.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:28.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:33:28.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.3142ms +2024-05-23 02:33:28.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.5336ms +2024-05-23 02:33:28.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.0503ms +2024-05-23 02:33:28.994 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:28.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 192.0859ms +2024-05-23 02:33:29.023 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:29.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 221.8056ms +2024-05-23 02:33:29.097 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:29.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 294.4564ms +2024-05-23 02:33:29.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:29.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 498.631ms +2024-05-23 02:33:29.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:29.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 522.18ms +2024-05-23 02:33:37.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:33:37.819 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:38.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:38.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 274.086ms +2024-05-23 02:33:53.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:33:53.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:33:53.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:33:53.616 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.720 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.9376ms +2024-05-23 02:33:53.721 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 106.5138ms +2024-05-23 02:33:53.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:53.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 208.6481ms +2024-05-23 02:33:54.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:33:54.568 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:54.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:33:54.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 209.9862ms +2024-05-23 02:35:17.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:35:17.017 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:17.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:17.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 216.4385ms +2024-05-23 02:35:18.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:35:18.519 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:35:18.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:35:18.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:35:18.529 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:35:18.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:35:18.528 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:35:18.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.532 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:35:18.533 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.636 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 109.6693ms +2024-05-23 02:35:18.642 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.8558ms +2024-05-23 02:35:18.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.8613ms +2024-05-23 02:35:18.710 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.7867ms +2024-05-23 02:35:18.710 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 183.4931ms +2024-05-23 02:35:18.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 212.1995ms +2024-05-23 02:35:18.815 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:18.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 284.9298ms +2024-05-23 02:35:19.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:19.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 491.1293ms +2024-05-23 02:35:35.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:35:35.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:35:35.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:35:35.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.154 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.141ms +2024-05-23 02:35:35.157 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 115.5265ms +2024-05-23 02:35:35.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:35.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.334ms +2024-05-23 02:35:39.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:35:39.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:35:39.895 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:35:39.898 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:35:39.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:35:39.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:35:39.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:35:39.903 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.900 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.900 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:35:39.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:39.906 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.4613ms +2024-05-23 02:35:40.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.9804ms +2024-05-23 02:35:40.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.0359ms +2024-05-23 02:35:40.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 182.1371ms +2024-05-23 02:35:40.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.9976ms +2024-05-23 02:35:40.084 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 186.7845ms +2024-05-23 02:35:40.185 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 286.3084ms +2024-05-23 02:35:40.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:40.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 505.7474ms +2024-05-23 02:35:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:35:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:35:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:35:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.659 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.6252ms +2024-05-23 02:35:46.660 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.941ms +2024-05-23 02:35:46.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:46.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.9255ms +2024-05-23 02:35:51.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:35:51.186 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:51.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:35:51.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.3554ms +2024-05-23 02:37:54.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:37:54.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:37:55.246 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:37:55.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 274.877ms +2024-05-23 02:38:23.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 02:38:23.750 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 02:38:23.752 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 02:38:23.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 02:38:23.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 02:38:23.754 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.754 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:38:23.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 02:38:23.755 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.755 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 02:38:23.756 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.1194ms +2024-05-23 02:38:23.864 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.5273ms +2024-05-23 02:38:23.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 171.8986ms +2024-05-23 02:38:23.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.8238ms +2024-05-23 02:38:23.931 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 176.3403ms +2024-05-23 02:38:23.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:23.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 178.348ms +2024-05-23 02:38:24.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:24.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 280.7275ms +2024-05-23 02:38:24.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:38:24.106 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:24.241 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:24.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 491.4623ms +2024-05-23 02:38:24.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:24.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 264.1484ms +2024-05-23 02:38:27.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 02:38:27.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:27.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 02:38:27.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 281.2595ms +2024-05-23 02:40:00.078 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:40:00. +2024-05-23 02:50:00.410 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 00:50:00. +2024-05-23 03:00:00.409 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 01:00:00. +2024-05-23 03:10:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 01:10:00. +2024-05-23 03:20:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 01:20:00. +2024-05-23 08:10:00.485 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 06:10:00. +2024-05-23 08:20:00.934 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 06:20:00. +2024-05-23 08:30:00.497 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 06:30:00. +2024-05-23 08:40:00.082 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 06:40:00. +2024-05-23 08:50:00.084 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 06:50:00. +2024-05-23 09:00:00.588 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:00:00. +2024-05-23 09:10:00.582 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:10:00. +2024-05-23 09:20:00.074 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:20:00. +2024-05-23 09:30:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:30:00. +2024-05-23 09:33:22.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 09:33:22.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 519.2044ms +2024-05-23 09:33:23.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 09:33:23.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 09:33:23.712 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 09:33:23.715 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 09:33:23.720 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 09:33:23.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 09:33:23.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 09:33:23.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 09:33:23.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:23.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 265.5265ms +2024-05-23 09:33:24.038 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 328.1396ms +2024-05-23 09:33:24.063 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 344.4069ms +2024-05-23 09:33:24.070 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 362.9032ms +2024-05-23 09:33:24.182 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 457.4949ms +2024-05-23 09:33:24.242 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 521.01ms +2024-05-23 09:33:24.286 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 567.112ms +2024-05-23 09:33:24.487 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 09:33:24.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 768.7398ms +2024-05-23 09:40:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:40:00. +2024-05-23 09:50:05.264 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 07:50:00. +2024-05-23 10:00:05.278 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 08:00:05. +2024-05-23 10:10:19.367 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 08:10:00. +2024-05-23 10:20:19.363 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 08:20:19. +2024-05-23 13:30:00.305 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 11:30:00. +2024-05-23 13:40:00.631 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 11:40:00. +2024-05-23 13:50:00.356 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 11:50:00. +2024-05-23 14:00:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:00:00. +2024-05-23 14:10:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:10:00. +2024-05-23 14:20:00.938 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:20:00. +2024-05-23 14:30:00.938 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:30:00. +2024-05-23 14:40:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:40:00. +2024-05-23 14:50:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 12:50:00. +2024-05-23 15:00:02.362 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:00:00. +2024-05-23 15:10:02.361 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:10:02. +2024-05-23 15:20:00.055 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:20:00. +2024-05-23 15:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:30:00. +2024-05-23 15:40:01.051 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:40:00. +2024-05-23 15:50:01.042 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 13:50:01. +2024-05-23 16:00:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:00:00. +2024-05-23 16:10:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:10:00. +2024-05-23 16:20:00.497 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:20:00. +2024-05-23 16:30:00.500 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:30:00. +2024-05-23 16:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:40:00. +2024-05-23 16:50:00.528 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 14:50:00. +2024-05-23 17:00:00.595 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:00:00. +2024-05-23 17:10:00.143 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:10:00. +2024-05-23 17:20:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:20:00. +2024-05-23 17:30:00.425 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:30:00. +2024-05-23 17:36:29.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 17:36:29.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:29.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:29.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 205.6093ms +2024-05-23 17:36:32.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 17:36:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:32.864 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:32.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.6923ms +2024-05-23 17:36:38.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 17:36:38.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 17:36:38.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 17:36:38.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 17:36:38.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 17:36:38.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.632 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 17:36:38.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 17:36:38.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:38.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 17:36:38.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 405.1406ms +2024-05-23 17:36:39.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 409.0225ms +2024-05-23 17:36:39.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 464.1861ms +2024-05-23 17:36:39.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 532.26ms +2024-05-23 17:36:39.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 621.9436ms +2024-05-23 17:36:39.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 708.9201ms +2024-05-23 17:36:39.391 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 757.689ms +2024-05-23 17:36:39.769 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:36:39.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 1136.5899ms +2024-05-23 17:37:45.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 17:37:45.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 17:37:45.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:37:45.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:37:46.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:37:46.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.9206ms +2024-05-23 17:37:46.346 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:37:46.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 379.9525ms +2024-05-23 17:40:00.427 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:40:00. +2024-05-23 17:50:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 15:50:00. +2024-05-23 17:51:19.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 17:51:19.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 17:51:19.085 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:51:19.085 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:51:19.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:51:19.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.6212ms +2024-05-23 17:51:19.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:51:19.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 452.955ms +2024-05-23 17:55:19.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 17:55:19.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 17:55:19.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 17:55:19.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 17:55:19.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 17:55:19.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 17:55:19.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 17:55:19.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 17:55:19.578 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.578 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 132.4644ms +2024-05-23 17:55:19.738 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 163.6296ms +2024-05-23 17:55:19.820 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 244.1118ms +2024-05-23 17:55:19.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 243.7942ms +2024-05-23 17:55:19.906 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 330.4766ms +2024-05-23 17:55:19.965 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:19.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 389.3986ms +2024-05-23 17:55:20.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:20.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 478.0098ms +2024-05-23 17:55:20.231 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 17:55:20.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 657.3801ms +2024-05-23 18:00:00.072 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:00:00. +2024-05-23 18:03:25.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:03:25.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:25.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:25.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.2328ms +2024-05-23 18:03:27.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:03:27.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:03:27.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:03:27.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:03:27.622 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.622 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:03:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:03:27.623 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.623 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:03:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:03:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.9363ms +2024-05-23 18:03:27.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.4987ms +2024-05-23 18:03:27.769 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.7469ms +2024-05-23 18:03:27.846 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 221.9791ms +2024-05-23 18:03:27.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:27.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 251.841ms +2024-05-23 18:03:28.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:28.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 379.174ms +2024-05-23 18:03:28.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:28.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 511.8938ms +2024-05-23 18:03:28.231 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:28.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 607.9254ms +2024-05-23 18:03:42.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:03:42.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:03:42.759 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:42.759 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:42.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:42.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.99ms +2024-05-23 18:03:42.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 219.9664ms +2024-05-23 18:03:44.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:03:44.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:03:44.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:44.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:44.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:44.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.6521ms +2024-05-23 18:03:44.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:03:44.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 214.2791ms +2024-05-23 18:05:09.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:05:09.670 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:09.885 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:09.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 215.5081ms +2024-05-23 18:05:09.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:05:09.889 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:10.001 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:10.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 112.9106ms +2024-05-23 18:05:14.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:05:14.221 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:05:14.224 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:05:14.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:05:14.226 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:05:14.227 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:05:14.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:05:14.226 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.228 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:05:14.228 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.228 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.308 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.6421ms +2024-05-23 18:05:14.312 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.1236ms +2024-05-23 18:05:14.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.0931ms +2024-05-23 18:05:14.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.8943ms +2024-05-23 18:05:14.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 238.2631ms +2024-05-23 18:05:14.604 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 377.1584ms +2024-05-23 18:05:14.611 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 383.2839ms +2024-05-23 18:05:14.626 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:05:14.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 404.7172ms +2024-05-23 18:10:00.079 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:10:00. +2024-05-23 18:10:39.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:10:39.273 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:39.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:39.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 251.9991ms +2024-05-23 18:10:39.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:10:39.535 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:39.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:39.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 115.8235ms +2024-05-23 18:10:41.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:10:41.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:10:41.834 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.836 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:10:41.848 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:10:41.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:10:41.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:10:41.851 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:10:41.851 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.853 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:10:41.855 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.850 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.1285ms +2024-05-23 18:10:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.5644ms +2024-05-23 18:10:41.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.0075ms +2024-05-23 18:10:41.990 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.9293ms +2024-05-23 18:10:41.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:41.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.6071ms +2024-05-23 18:10:42.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:42.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 407.4915ms +2024-05-23 18:10:42.263 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:42.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 430.857ms +2024-05-23 18:10:42.311 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:10:42.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 463.4982ms +2024-05-23 18:11:20.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:11:20.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:11:20.590 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:20.590 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:20.726 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:20.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.9628ms +2024-05-23 18:11:20.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:20.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.705ms +2024-05-23 18:11:26.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:11:26.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:26.353 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:26.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 213.6231ms +2024-05-23 18:11:26.359 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:11:26.360 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:26.473 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:26.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 113.9804ms +2024-05-23 18:11:27.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:11:27.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:11:27.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:11:27.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:11:27.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:11:27.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:11:27.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:11:27.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:11:27.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.379 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.8566ms +2024-05-23 18:11:27.381 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.3652ms +2024-05-23 18:11:27.432 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.9349ms +2024-05-23 18:11:27.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.7447ms +2024-05-23 18:11:27.436 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.5865ms +2024-05-23 18:11:27.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.9616ms +2024-05-23 18:11:27.510 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 215.0475ms +2024-05-23 18:11:27.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:27.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 457.0868ms +2024-05-23 18:11:50.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:11:50.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:11:50.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:11:50.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.160 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.2481ms +2024-05-23 18:11:50.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.2535ms +2024-05-23 18:11:50.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:11:50.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.855ms +2024-05-23 18:12:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:12:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:12:19.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:12:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:12:19.240 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.240 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:12:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:19.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:12:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.327 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6984ms +2024-05-23 18:12:19.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.0639ms +2024-05-23 18:12:19.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.5161ms +2024-05-23 18:12:19.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.3062ms +2024-05-23 18:12:19.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.4912ms +2024-05-23 18:12:19.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.5333ms +2024-05-23 18:12:19.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.2292ms +2024-05-23 18:12:19.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 408.0648ms +2024-05-23 18:12:19.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:19.828 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:19.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.6103ms +2024-05-23 18:12:19.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:12:19.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:20.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:20.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 120.4639ms +2024-05-23 18:12:20.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:20.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:20.343 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:20.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 302.8177ms +2024-05-23 18:12:21.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:21.736 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:21.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:21.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 114.0471ms +2024-05-23 18:12:21.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:12:21.853 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:22.023 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:22.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.7064ms +2024-05-23 18:12:22.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:22.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:22.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:22.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 214.1091ms +2024-05-23 18:12:30.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:30.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:30.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:30.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 202.782ms +2024-05-23 18:12:30.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:12:30.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:30.825 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:30.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 126.9526ms +2024-05-23 18:12:30.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:30.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:31.030 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:31.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.3293ms +2024-05-23 18:12:41.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:12:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:12:41.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:12:41.961 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.961 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:12:41.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:12:41.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:41.964 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:41.965 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:41.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:12:41.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.088 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 123.972ms +2024-05-23 18:12:42.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 174.0893ms +2024-05-23 18:12:42.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.8369ms +2024-05-23 18:12:42.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 188.674ms +2024-05-23 18:12:42.150 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 193.9229ms +2024-05-23 18:12:42.211 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 247.037ms +2024-05-23 18:12:42.243 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 278.8413ms +2024-05-23 18:12:42.580 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:42.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 620.6511ms +2024-05-23 18:12:42.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:12:42.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:43.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:43.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 109.5934ms +2024-05-23 18:12:43.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:12:43.004 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:43.210 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:12:43.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 207.3488ms +2024-05-23 18:14:36.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:14:36.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:14:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:14:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:14:36.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:14:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:14:36.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:14:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:14:36.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.173 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.174 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.9732ms +2024-05-23 18:14:36.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 102.5785ms +2024-05-23 18:14:36.220 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.6526ms +2024-05-23 18:14:36.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.2936ms +2024-05-23 18:14:36.232 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.0692ms +2024-05-23 18:14:36.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.9666ms +2024-05-23 18:14:36.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 290.4699ms +2024-05-23 18:14:36.479 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:14:36.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.0385ms +2024-05-23 18:17:26.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:17:26.533 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:17:26.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:17:26.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:17:26.536 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.536 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.536 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:17:26.537 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:17:26.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:17:26.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:17:26.539 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.539 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.539 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.627 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.3101ms +2024-05-23 18:17:26.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.1553ms +2024-05-23 18:17:26.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.0327ms +2024-05-23 18:17:26.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.0812ms +2024-05-23 18:17:26.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.5129ms +2024-05-23 18:17:26.689 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.7036ms +2024-05-23 18:17:26.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.0829ms +2024-05-23 18:17:26.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:26.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 438.8614ms +2024-05-23 18:17:53.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:17:53.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:17:53.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:17:53.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:17:53.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:17:53.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:17:53.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:17:53.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:17:53.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.226 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.4212ms +2024-05-23 18:17:53.230 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 99.5264ms +2024-05-23 18:17:53.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.6331ms +2024-05-23 18:17:53.279 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.7095ms +2024-05-23 18:17:53.286 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.9201ms +2024-05-23 18:17:53.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 161.0096ms +2024-05-23 18:17:53.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 236.2502ms +2024-05-23 18:17:53.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:17:53.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.542 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 411.4886ms +2024-05-23 18:17:53.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.8687ms +2024-05-23 18:17:53.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:17:53.717 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.809 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:53.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.9502ms +2024-05-23 18:17:54.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:17:54.120 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:54.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:17:54.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 115.6282ms +2024-05-23 18:18:14.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:18:14.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:18:14.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:18:14.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:18:14.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:18:14.384 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.384 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:18:14.385 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:18:14.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:18:14.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.4555ms +2024-05-23 18:18:14.474 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.3787ms +2024-05-23 18:18:14.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.6329ms +2024-05-23 18:18:14.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.7967ms +2024-05-23 18:18:14.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.5771ms +2024-05-23 18:18:14.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.1203ms +2024-05-23 18:18:14.605 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.1424ms +2024-05-23 18:18:14.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:14.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 391.219ms +2024-05-23 18:18:15.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:18:15.146 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.359 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 213.6952ms +2024-05-23 18:18:15.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:18:15.421 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.0216ms +2024-05-23 18:18:15.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:18:15.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:15.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 109.2634ms +2024-05-23 18:18:16.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:18:16.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:18:16.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:18:16.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:18:16.365 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.364 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:18:16.364 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.366 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:18:16.366 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:18:16.367 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.365 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:18:16.369 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.9745ms +2024-05-23 18:18:16.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.2961ms +2024-05-23 18:18:16.510 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.510 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.7258ms +2024-05-23 18:18:16.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7064ms +2024-05-23 18:18:16.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 152.2404ms +2024-05-23 18:18:16.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4059ms +2024-05-23 18:18:16.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.3356ms +2024-05-23 18:18:16.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:16.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.9691ms +2024-05-23 18:18:33.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:18:33.885 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:33.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:33.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.1826ms +2024-05-23 18:18:33.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:18:33.980 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:34.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:34.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 196.1147ms +2024-05-23 18:18:34.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:18:34.180 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:34.291 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:18:34.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 111.6703ms +2024-05-23 18:19:06.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:19:06.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:19:06.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:19:06.251 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:19:06.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:19:06.254 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:19:06.258 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:19:06.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:19:06.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.260 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.3208ms +2024-05-23 18:19:06.406 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.7662ms +2024-05-23 18:19:06.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.5847ms +2024-05-23 18:19:06.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 205.3451ms +2024-05-23 18:19:06.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 200.9421ms +2024-05-23 18:19:06.486 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.7744ms +2024-05-23 18:19:06.515 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 264.0124ms +2024-05-23 18:19:06.652 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:06.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 403.2188ms +2024-05-23 18:19:06.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:19:06.739 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:07.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:07.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 305.7551ms +2024-05-23 18:19:07.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:19:07.053 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:07.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:07.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 113.2963ms +2024-05-23 18:19:08.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:19:08.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:19:08.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:19:08.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:19:08.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:19:08.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:19:08.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:19:08.796 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:19:08.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 82.0928ms +2024-05-23 18:19:08.890 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.0045ms +2024-05-23 18:19:08.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.7721ms +2024-05-23 18:19:08.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.681ms +2024-05-23 18:19:08.948 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.2612ms +2024-05-23 18:19:08.953 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:08.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.1281ms +2024-05-23 18:19:09.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:09.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 230.1961ms +2024-05-23 18:19:09.192 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:09.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.4528ms +2024-05-23 18:19:33.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:19:33.435 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:33.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:33.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.1782ms +2024-05-23 18:19:33.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:19:33.668 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:33.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:33.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 111.7448ms +2024-05-23 18:19:37.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:19:37.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:19:37.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:19:37.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:19:37.265 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:19:37.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:19:37.266 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:19:37.266 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.266 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:19:37.267 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.7004ms +2024-05-23 18:19:37.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 110.0979ms +2024-05-23 18:19:37.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 152.7084ms +2024-05-23 18:19:37.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.3982ms +2024-05-23 18:19:37.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 165.4786ms +2024-05-23 18:19:37.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 251.2112ms +2024-05-23 18:19:37.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 273.1526ms +2024-05-23 18:19:37.811 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:37.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 548.4561ms +2024-05-23 18:19:41.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:19:41.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:41.090 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:41.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1262ms +2024-05-23 18:19:53.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:19:53.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:53.869 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:19:53.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.549ms +2024-05-23 18:20:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:20:00. +2024-05-23 18:20:15.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:20:15.607 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:15.825 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:15.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.4003ms +2024-05-23 18:20:15.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:20:15.828 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:15.938 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:15.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 110.4363ms +2024-05-23 18:20:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:20:21.575 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:21.820 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:21.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 246.0436ms +2024-05-23 18:20:21.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:20:21.824 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:21.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:21.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 120.4803ms +2024-05-23 18:20:23.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:20:23.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:23.394 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:23.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.9193ms +2024-05-23 18:20:42.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:20:42.729 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:20:42.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:20:42.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:20:42.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:20:42.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:20:42.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:20:42.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:20:42.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.5266ms +2024-05-23 18:20:42.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.0638ms +2024-05-23 18:20:42.883 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.883 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.8757ms +2024-05-23 18:20:42.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 154.3634ms +2024-05-23 18:20:42.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.052ms +2024-05-23 18:20:42.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.2112ms +2024-05-23 18:20:42.967 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:42.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 237.218ms +2024-05-23 18:20:43.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:43.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.559ms +2024-05-23 18:20:56.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:20:56.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:56.566 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:20:56.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.2405ms +2024-05-23 18:21:03.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:03.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 219.9183ms +2024-05-23 18:21:03.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:03.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 114.6127ms +2024-05-23 18:21:03.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:03.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.644 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:03.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 131.4749ms +2024-05-23 18:21:14.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:21:14.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:21:14.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:21:14.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:14.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:21:14.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:21:14.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:14.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:14.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 81.1432ms +2024-05-23 18:21:14.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.3083ms +2024-05-23 18:21:14.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.1077ms +2024-05-23 18:21:14.245 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.4498ms +2024-05-23 18:21:14.247 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.7681ms +2024-05-23 18:21:14.325 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.763ms +2024-05-23 18:21:14.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 384.3978ms +2024-05-23 18:21:14.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:14.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.4397ms +2024-05-23 18:21:15.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:21:15.751 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:21:15.754 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:21:15.757 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:15.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:21:15.763 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:21:15.768 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:15.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:15.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.839 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.1292ms +2024-05-23 18:21:15.855 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.8422ms +2024-05-23 18:21:15.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.6495ms +2024-05-23 18:21:15.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.6532ms +2024-05-23 18:21:15.929 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.5599ms +2024-05-23 18:21:15.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:15.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.2732ms +2024-05-23 18:21:16.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:16.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.276 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 505.9474ms +2024-05-23 18:21:16.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 200.9185ms +2024-05-23 18:21:16.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:16.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 114.4099ms +2024-05-23 18:21:16.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:16.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 677.496ms +2024-05-23 18:21:18.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:18.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:18.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:21:18.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:21:18.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:21:18.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:21:18.540 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.540 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:21:18.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:18.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.542 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.542 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.694 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.9249ms +2024-05-23 18:21:18.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 237.8845ms +2024-05-23 18:21:18.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 262.6028ms +2024-05-23 18:21:18.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 264.2787ms +2024-05-23 18:21:18.805 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 265.3661ms +2024-05-23 18:21:18.951 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:18.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 411.1193ms +2024-05-23 18:21:19.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:19.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 477.7935ms +2024-05-23 18:21:19.080 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:19.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 539.5942ms +2024-05-23 18:21:28.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:28.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:28.306 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:28.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.6135ms +2024-05-23 18:21:28.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:28.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:29.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:29.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 230.4111ms +2024-05-23 18:21:29.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:29.161 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:29.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:29.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 106.6709ms +2024-05-23 18:21:29.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:29.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:30.087 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.9616ms +2024-05-23 18:21:49.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:21:49.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:21:49.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:21:49.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:21:49.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:21:49.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:21:49.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:49.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:21:49.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.393 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.3266ms +2024-05-23 18:21:49.417 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 122.4946ms +2024-05-23 18:21:49.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.7088ms +2024-05-23 18:21:49.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.9052ms +2024-05-23 18:21:49.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 232.1923ms +2024-05-23 18:21:49.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 365.2985ms +2024-05-23 18:21:49.717 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 424.2145ms +2024-05-23 18:21:49.797 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:21:49.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 502.426ms +2024-05-23 18:21:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:21:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.6412ms +2024-05-23 18:22:00.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:22:00.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.312 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 111.2978ms +2024-05-23 18:22:00.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:22:00.316 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.395 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:00.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 79.2665ms +2024-05-23 18:22:17.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:22:17.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:22:17.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:22:17.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:22:17.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:22:17.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:22:17.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:22:17.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:22:17.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.5818ms +2024-05-23 18:22:17.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.4971ms +2024-05-23 18:22:17.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.0096ms +2024-05-23 18:22:17.500 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.56ms +2024-05-23 18:22:17.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 170.6093ms +2024-05-23 18:22:17.575 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 226.7361ms +2024-05-23 18:22:17.580 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.5927ms +2024-05-23 18:22:17.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:17.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 382.8459ms +2024-05-23 18:22:35.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:22:35.344 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:35.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:35.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 132.1443ms +2024-05-23 18:22:35.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:22:35.484 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:35.571 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:35.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.9361ms +2024-05-23 18:22:37.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:22:37.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:37.601 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:37.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 78.4203ms +2024-05-23 18:22:39.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:22:39.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:39.571 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:39.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.2205ms +2024-05-23 18:22:51.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:22:51.385 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:51.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:22:51.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 250.2462ms +2024-05-23 18:23:12.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:23:12.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.555 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.4378ms +2024-05-23 18:23:12.558 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:12.558 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.638 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 80.6134ms +2024-05-23 18:23:12.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:23:12.640 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:12.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 193.502ms +2024-05-23 18:23:18.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:23:18.753 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:18.755 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:23:18.757 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:23:18.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:23:18.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:23:18.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:23:18.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:23:18.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.759 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.75ms +2024-05-23 18:23:18.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 103.9395ms +2024-05-23 18:23:18.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.2048ms +2024-05-23 18:23:18.910 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.16ms +2024-05-23 18:23:18.917 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 159.7837ms +2024-05-23 18:23:18.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:18.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 163.4897ms +2024-05-23 18:23:19.008 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:19.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 252.6603ms +2024-05-23 18:23:19.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:19.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 391.425ms +2024-05-23 18:23:25.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:23:25.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:23:25.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:23:25.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:23:25.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:25.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:23:25.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:23:25.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:23:25.397 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2605ms +2024-05-23 18:23:25.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.404ms +2024-05-23 18:23:25.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.7882ms +2024-05-23 18:23:25.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.259ms +2024-05-23 18:23:25.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.8316ms +2024-05-23 18:23:25.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 174.7504ms +2024-05-23 18:23:25.718 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 324.5794ms +2024-05-23 18:23:25.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:23:25.842 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.960 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:25.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 118.6171ms +2024-05-23 18:23:25.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:25.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:26.046 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:26.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.9828ms +2024-05-23 18:23:26.408 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:26.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1015.3663ms +2024-05-23 18:23:44.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:44.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:23:44.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:44.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:44.482 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:44.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.1913ms +2024-05-23 18:23:44.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:44.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.1559ms +2024-05-23 18:23:45.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:23:45.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:23:45.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:45.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:45.971 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:45.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.3095ms +2024-05-23 18:23:46.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:23:46.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.9528ms +2024-05-23 18:24:01.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:24:01.434 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:24:01.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:24:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:24:01.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:24:01.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:24:01.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:24:01.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:24:01.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.112ms +2024-05-23 18:24:01.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1339ms +2024-05-23 18:24:01.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.5359ms +2024-05-23 18:24:01.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.073ms +2024-05-23 18:24:01.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 154.7988ms +2024-05-23 18:24:01.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 158.2704ms +2024-05-23 18:24:01.700 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 260.4378ms +2024-05-23 18:24:01.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:01.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 387.9554ms +2024-05-23 18:24:08.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:24:08.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.4598ms +2024-05-23 18:24:08.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:24:08.693 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.8789ms +2024-05-23 18:24:08.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:24:08.779 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:08.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.5816ms +2024-05-23 18:24:08.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:24:08.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.059 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 186.805ms +2024-05-23 18:24:09.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 18:24:09.330 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 18:24:09.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 18:24:09.332 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 18:24:09.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 18:24:09.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 18:24:09.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 18:24:09.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 18:24:09.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.8987ms +2024-05-23 18:24:09.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.9056ms +2024-05-23 18:24:09.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.3989ms +2024-05-23 18:24:09.489 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 156.0988ms +2024-05-23 18:24:09.492 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.4129ms +2024-05-23 18:24:09.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 188.0345ms +2024-05-23 18:24:09.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.8092ms +2024-05-23 18:24:09.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 18:24:09.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.737ms +2024-05-23 18:30:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:30:00. +2024-05-23 18:40:00.453 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:40:00. +2024-05-23 18:50:00.446 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 16:50:00. +2024-05-23 19:00:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:00:00. +2024-05-23 19:01:28.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:01:28.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.157 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.0962ms +2024-05-23 19:01:28.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:01:28.166 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.250 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.4367ms +2024-05-23 19:01:28.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:01:28.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.362 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 110.3852ms +2024-05-23 19:01:28.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:01:28.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:01:28.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:01:28.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:01:28.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:01:28.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:01:28.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:01:28.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:01:28.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.384 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 134.9277ms +2024-05-23 19:01:28.623 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 241.0701ms +2024-05-23 19:01:28.704 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 322.9712ms +2024-05-23 19:01:28.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 404.8656ms +2024-05-23 19:01:28.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 406.6675ms +2024-05-23 19:01:28.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 440.3941ms +2024-05-23 19:01:28.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 489.0896ms +2024-05-23 19:01:28.975 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:28.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 595.7711ms +2024-05-23 19:01:43.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:01:43.026 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:01:43.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:01:43.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:01:43.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:01:43.032 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:01:43.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:01:43.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:01:43.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.133 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.8227ms +2024-05-23 19:01:43.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.679ms +2024-05-23 19:01:43.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.3003ms +2024-05-23 19:01:43.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.5016ms +2024-05-23 19:01:43.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 146.2753ms +2024-05-23 19:01:43.348 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 316.3724ms +2024-05-23 19:01:43.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 411.5197ms +2024-05-23 19:01:43.459 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:43.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 434.1387ms +2024-05-23 19:01:44.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:01:44.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.9361ms +2024-05-23 19:01:44.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:01:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.1135ms +2024-05-23 19:01:44.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:01:44.696 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.805 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:01:44.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 110.029ms +2024-05-23 19:02:02.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:02:02.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:02:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:02:02.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:02.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:02:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:02:02.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:02.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.796 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.9608ms +2024-05-23 19:02:02.797 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.3029ms +2024-05-23 19:02:02.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:02.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.0604ms +2024-05-23 19:02:02.858 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.8689ms +2024-05-23 19:02:02.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.0514ms +2024-05-23 19:02:02.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:02.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.1245ms +2024-05-23 19:02:03.030 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 234.0966ms +2024-05-23 19:02:03.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:03.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 377.1246ms +2024-05-23 19:02:03.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.6836ms +2024-05-23 19:02:03.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:03.129 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.222 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.4743ms +2024-05-23 19:02:03.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:03.224 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 671.4483ms +2024-05-23 19:02:03.434 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:03.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 210.9694ms +2024-05-23 19:02:19.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:02:19.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:19.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:02:19.313 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.313 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.313 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:19.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:19.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:02:19.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:02:19.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:02:19.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.404 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.011ms +2024-05-23 19:02:19.414 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 100.1725ms +2024-05-23 19:02:19.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.7762ms +2024-05-23 19:02:19.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.9179ms +2024-05-23 19:02:19.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.0643ms +2024-05-23 19:02:19.475 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 161.0111ms +2024-05-23 19:02:19.644 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 331.411ms +2024-05-23 19:02:19.719 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:19.719 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.4856ms +2024-05-23 19:02:19.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:19.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 181.0859ms +2024-05-23 19:02:19.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:19.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:20.160 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:20.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 257.749ms +2024-05-23 19:02:23.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:23.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:23.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:23.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:23.171 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:23.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.8643ms +2024-05-23 19:02:23.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:23.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.8742ms +2024-05-23 19:02:27.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:27.107 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:27.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:27.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.5504ms +2024-05-23 19:02:27.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:27.265 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:27.453 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:27.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 189.0391ms +2024-05-23 19:02:28.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:28.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:28.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:28.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:28.693 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:28.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.8679ms +2024-05-23 19:02:28.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:28.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.6976ms +2024-05-23 19:02:41.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:41.574 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:41.818 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:41.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 244.1598ms +2024-05-23 19:02:41.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:41.820 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 182.9637ms +2024-05-23 19:02:42.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:42.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:42.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.479 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.9342ms +2024-05-23 19:02:42.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:42.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 192.3698ms +2024-05-23 19:02:43.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:43.184 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:43.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:43.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.5407ms +2024-05-23 19:02:43.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:43.338 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:43.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:43.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 189.7843ms +2024-05-23 19:02:44.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:44.277 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:44.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:44.277 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:44.361 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:44.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.5627ms +2024-05-23 19:02:44.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:44.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 208.1442ms +2024-05-23 19:02:46.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:46.980 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.112 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 132.1986ms +2024-05-23 19:02:47.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:47.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 191.6294ms +2024-05-23 19:02:47.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:47.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:47.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:47.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.0425ms +2024-05-23 19:02:48.042 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:48.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.5355ms +2024-05-23 19:02:51.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:51.425 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:51.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:51.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 165.2747ms +2024-05-23 19:02:51.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:51.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:51.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:51.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 194.8098ms +2024-05-23 19:02:53.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:53.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:53.038 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:53.038 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:53.128 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:53.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.3909ms +2024-05-23 19:02:53.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:53.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.7085ms +2024-05-23 19:02:56.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:02:56.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:02:56.028 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:02:56.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:56.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:56.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:56.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:02:56.030 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:02:56.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.7518ms +2024-05-23 19:02:56.148 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 118.8929ms +2024-05-23 19:02:56.170 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.0787ms +2024-05-23 19:02:56.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.4833ms +2024-05-23 19:02:56.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 173.7042ms +2024-05-23 19:02:56.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 177.6404ms +2024-05-23 19:02:56.276 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 247.8027ms +2024-05-23 19:02:56.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 394.7565ms +2024-05-23 19:02:56.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:02:56.574 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 112.4209ms +2024-05-23 19:02:56.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:56.692 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:56.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 184.051ms +2024-05-23 19:02:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:02:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:02:58.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:58.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:58.709 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:58.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.7199ms +2024-05-23 19:02:58.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:02:58.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.7758ms +2024-05-23 19:03:08.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:03:08.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:03:08.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:03:08.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:08.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:03:08.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:08.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:08.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:03:08.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.702 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.790 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.8403ms +2024-05-23 19:03:08.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.6644ms +2024-05-23 19:03:08.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.9423ms +2024-05-23 19:03:08.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 151.8763ms +2024-05-23 19:03:08.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4447ms +2024-05-23 19:03:08.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.6416ms +2024-05-23 19:03:08.945 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:08.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.1586ms +2024-05-23 19:03:09.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:09.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 414.4132ms +2024-05-23 19:03:14.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:14.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:14.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:14.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:14.810 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:14.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.2605ms +2024-05-23 19:03:14.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:14.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 227.8082ms +2024-05-23 19:03:19.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:19.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.394 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.6896ms +2024-05-23 19:03:19.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:19.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.592 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 196.1628ms +2024-05-23 19:03:19.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:19.595 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.677 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.8872ms +2024-05-23 19:03:19.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:19.679 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.872 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:19.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 193.1525ms +2024-05-23 19:03:23.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:23.818 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:23.822 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:03:23.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:03:23.824 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:03:23.825 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:03:23.826 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:03:23.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:23.832 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.832 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.830 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.7868ms +2024-05-23 19:03:23.922 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.8572ms +2024-05-23 19:03:23.964 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.9558ms +2024-05-23 19:03:23.974 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.9358ms +2024-05-23 19:03:23.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 159.5764ms +2024-05-23 19:03:23.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:23.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 164.4414ms +2024-05-23 19:03:24.055 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:24.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.4201ms +2024-05-23 19:03:24.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:24.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 382.8015ms +2024-05-23 19:03:25.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:25.141 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.284 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.3898ms +2024-05-23 19:03:25.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:25.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.487 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 200.3585ms +2024-05-23 19:03:25.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:25.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 78.0792ms +2024-05-23 19:03:25.569 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:25.569 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.762 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:25.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 192.7261ms +2024-05-23 19:03:26.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:26.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:26.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:26.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:26.351 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:26.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.9908ms +2024-05-23 19:03:26.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:26.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.6184ms +2024-05-23 19:03:29.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:29.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:29.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:29.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:29.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:29.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.7997ms +2024-05-23 19:03:29.672 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:29.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.269ms +2024-05-23 19:03:35.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:03:35.951 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:36.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:36.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.9683ms +2024-05-23 19:03:38.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:03:38.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:38.975 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.975 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:03:38.976 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:38.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:03:38.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:03:38.977 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.977 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.977 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:38.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:03:38.978 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:38.978 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1366ms +2024-05-23 19:03:39.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.4159ms +2024-05-23 19:03:39.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 155.9448ms +2024-05-23 19:03:39.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.245ms +2024-05-23 19:03:39.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.3111ms +2024-05-23 19:03:39.133 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.0146ms +2024-05-23 19:03:39.218 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 242.6186ms +2024-05-23 19:03:39.409 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 433.5428ms +2024-05-23 19:03:39.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:03:39.518 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.636 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 118.203ms +2024-05-23 19:03:39.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:39.638 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.844 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 205.8121ms +2024-05-23 19:03:39.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:39.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:39.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.7833ms +2024-05-23 19:03:39.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:39.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:03:40.087 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:03:40.088 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 203.5507ms +2024-05-23 19:03:40.278 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 190.8848ms +2024-05-23 19:03:40.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:03:40.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 333.1466ms +2024-05-23 19:04:25.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:04:25.367 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.2928ms +2024-05-23 19:04:25.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:04:25.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.705 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 192.3335ms +2024-05-23 19:04:25.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:04:25.709 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.791 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.5219ms +2024-05-23 19:04:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:04:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:25.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 190.1849ms +2024-05-23 19:04:27.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:04:27.677 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:04:27.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:04:27.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:04:27.679 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:04:27.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:04:27.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:04:27.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:04:27.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.681 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.681 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.681 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 100.7708ms +2024-05-23 19:04:27.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.5276ms +2024-05-23 19:04:27.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 155.7778ms +2024-05-23 19:04:27.837 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 158.3228ms +2024-05-23 19:04:27.838 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.7151ms +2024-05-23 19:04:27.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:27.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.6683ms +2024-05-23 19:04:28.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:28.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 387.4765ms +2024-05-23 19:04:28.080 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:28.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 403.4584ms +2024-05-23 19:04:40.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:04:40.909 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:04:40.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:04:40.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:04:40.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:04:40.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:04:40.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:40.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.003 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.255ms +2024-05-23 19:04:41.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.8326ms +2024-05-23 19:04:41.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.45ms +2024-05-23 19:04:41.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.6049ms +2024-05-23 19:04:41.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 181.5609ms +2024-05-23 19:04:41.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 242.8146ms +2024-05-23 19:04:41.154 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.2449ms +2024-05-23 19:04:41.313 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:41.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.8742ms +2024-05-23 19:04:52.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:04:52.243 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:52.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:04:52.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.5925ms +2024-05-23 19:05:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:05:11.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:05:12.035 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:05:12.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.4193ms +2024-05-23 19:10:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:10:00. +2024-05-23 19:18:00.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:18:00.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:18:00.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:18:00.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:18:00.602 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.602 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:18:00.606 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:18:00.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:18:00.608 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:18:00.607 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.609 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.890 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:00.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 285.9076ms +2024-05-23 19:18:01.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 399.3511ms +2024-05-23 19:18:01.092 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 491.4786ms +2024-05-23 19:18:01.124 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 517.8299ms +2024-05-23 19:18:01.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 575.1183ms +2024-05-23 19:18:01.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 713.8038ms +2024-05-23 19:18:01.340 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 733.4123ms +2024-05-23 19:18:01.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:18:01.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 774.604ms +2024-05-23 19:20:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:20:00. +2024-05-23 19:23:25.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:23:25.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:23:25.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:23:25.511 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:23:25.511 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:23:25.512 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.512 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.511 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:23:25.511 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.512 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.513 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.511 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:23:25.511 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:23:25.513 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.600 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.0199ms +2024-05-23 19:23:25.602 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.7905ms +2024-05-23 19:23:25.652 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.2774ms +2024-05-23 19:23:25.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.656 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.8518ms +2024-05-23 19:23:25.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.8233ms +2024-05-23 19:23:25.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 391.8406ms +2024-05-23 19:23:25.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:25.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 444.4397ms +2024-05-23 19:23:26.170 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:26.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 659.3226ms +2024-05-23 19:23:54.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:23:54.323 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:23:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.6618ms +2024-05-23 19:24:03.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:24:03.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:24:03.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:24:03.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:24:03.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:24:03.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:24:03.223 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:24:03.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:24:03.224 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.223 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.224 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.322 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.8496ms +2024-05-23 19:24:03.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 105.4153ms +2024-05-23 19:24:03.363 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.506ms +2024-05-23 19:24:03.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.0313ms +2024-05-23 19:24:03.376 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.9892ms +2024-05-23 19:24:03.416 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 194.4022ms +2024-05-23 19:24:03.644 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 423.281ms +2024-05-23 19:24:03.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:03.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 696.1684ms +2024-05-23 19:24:05.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:24:05.942 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:06.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:06.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.7085ms +2024-05-23 19:24:11.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:24:11.120 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:11.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:11.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.6158ms +2024-05-23 19:24:21.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:24:21.738 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:21.959 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:21.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.8462ms +2024-05-23 19:24:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:24:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:24:52.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:24:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:24:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:24:52.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:24:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:24:52.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.925 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:52.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:24:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6174ms +2024-05-23 19:24:53.016 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.3554ms +2024-05-23 19:24:53.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.5732ms +2024-05-23 19:24:53.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.9521ms +2024-05-23 19:24:53.080 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 158.016ms +2024-05-23 19:24:53.084 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.4086ms +2024-05-23 19:24:53.170 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.171 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 243.8726ms +2024-05-23 19:24:53.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:24:53.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 432.0325ms +2024-05-23 19:25:02.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:25:02.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:25:02.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:25:02.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:25:02.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:25:02.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:25:02.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:25:02.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:25:02.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.240 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.7714ms +2024-05-23 19:25:02.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.0042ms +2024-05-23 19:25:02.291 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.2914ms +2024-05-23 19:25:02.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.9847ms +2024-05-23 19:25:02.297 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.4509ms +2024-05-23 19:25:02.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.9417ms +2024-05-23 19:25:02.531 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 379.5753ms +2024-05-23 19:25:02.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:02.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 420.8232ms +2024-05-23 19:25:27.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:25:27.230 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:27.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:25:27.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.2612ms +2024-05-23 19:28:47.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:28:47.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:28:47.006 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:28:47.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:28:47.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:28:47.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:28:47.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:28:47.009 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:28:47.009 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.009 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.4799ms +2024-05-23 19:28:47.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2645ms +2024-05-23 19:28:47.146 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.5663ms +2024-05-23 19:28:47.148 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.3845ms +2024-05-23 19:28:47.154 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.2474ms +2024-05-23 19:28:47.175 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 167.9607ms +2024-05-23 19:28:47.230 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.0273ms +2024-05-23 19:28:47.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:47.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.1281ms +2024-05-23 19:28:54.359 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:28:54.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:28:54.360 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:28:54.360 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:28:54.361 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:28:54.361 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:28:54.361 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:28:54.362 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:28:54.362 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.8123ms +2024-05-23 19:28:54.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.4752ms +2024-05-23 19:28:54.505 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.4648ms +2024-05-23 19:28:54.531 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 169.695ms +2024-05-23 19:28:54.583 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.729ms +2024-05-23 19:28:54.601 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 242.4337ms +2024-05-23 19:28:54.696 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 335.4912ms +2024-05-23 19:28:54.922 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:28:54.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 562.7185ms +2024-05-23 19:29:17.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:29:17.870 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:29:18.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:29:18.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 169.8036ms +2024-05-23 19:30:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:30:00. +2024-05-23 19:33:19.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:33:19.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:33:19.475 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:33:19.476 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.476 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:33:19.478 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:33:19.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:33:19.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:33:19.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:33:19.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.484 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.564 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.5025ms +2024-05-23 19:33:19.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.6122ms +2024-05-23 19:33:19.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.7002ms +2024-05-23 19:33:19.637 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.9858ms +2024-05-23 19:33:19.640 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 167.3529ms +2024-05-23 19:33:19.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 231.9245ms +2024-05-23 19:33:19.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 379.7725ms +2024-05-23 19:33:19.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:19.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.0734ms +2024-05-23 19:33:30.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:33:30.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:30.269 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:33:30.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.2474ms +2024-05-23 19:34:02.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:34:02.571 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:34:02.716 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:34:02.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.8532ms +2024-05-23 19:34:06.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:34:06.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:34:06.617 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:34:06.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.1753ms +2024-05-23 19:35:14.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:35:14.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:35:14.232 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.232 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:35:14.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:35:14.234 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:35:14.235 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:35:14.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:35:14.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:35:14.237 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.237 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6437ms +2024-05-23 19:35:14.322 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.2555ms +2024-05-23 19:35:14.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.0761ms +2024-05-23 19:35:14.370 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.4011ms +2024-05-23 19:35:14.375 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.0316ms +2024-05-23 19:35:14.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.3623ms +2024-05-23 19:35:14.458 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.772ms +2024-05-23 19:35:14.676 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:14.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 444.5125ms +2024-05-23 19:35:19.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:35:19.332 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:35:19.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:35:19.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:35:19.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:35:19.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.418 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.5917ms +2024-05-23 19:35:19.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.3615ms +2024-05-23 19:35:19.478 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.982ms +2024-05-23 19:35:19.478 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.2631ms +2024-05-23 19:35:19.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.9825ms +2024-05-23 19:35:19.486 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.3446ms +2024-05-23 19:35:19.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 258.6911ms +2024-05-23 19:35:19.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:19.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 396.4543ms +2024-05-23 19:35:33.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:35:33.716 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:33.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:33.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.3114ms +2024-05-23 19:35:49.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:35:49.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:50.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:50.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.7634ms +2024-05-23 19:35:56.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:35:56.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:35:56.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:35:56.858 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.858 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:35:56.859 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:35:56.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:35:56.860 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:35:56.860 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.861 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:35:56.861 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.952 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.6451ms +2024-05-23 19:35:56.955 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:56.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.2104ms +2024-05-23 19:35:57.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:57.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.6418ms +2024-05-23 19:35:57.017 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:57.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.7497ms +2024-05-23 19:35:57.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:57.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 200.0246ms +2024-05-23 19:35:57.102 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:57.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 244.3732ms +2024-05-23 19:35:57.141 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:57.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 283.8409ms +2024-05-23 19:35:57.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:35:57.925 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:59.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:59.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 2268.7149ms +2024-05-23 19:35:59.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:35:59.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 1430.2116ms +2024-05-23 19:36:54.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:36:54.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:36:54.482 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:36:54.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:36:54.484 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.482 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:36:54.485 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:36:54.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:36:54.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:36:54.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.572 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2794ms +2024-05-23 19:36:54.573 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.2972ms +2024-05-23 19:36:54.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.3371ms +2024-05-23 19:36:54.628 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.8692ms +2024-05-23 19:36:54.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.1532ms +2024-05-23 19:36:54.668 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 184.9825ms +2024-05-23 19:36:54.733 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 246.9803ms +2024-05-23 19:36:54.969 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:36:54.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 486.9406ms +2024-05-23 19:37:02.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:37:02.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:37:02.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:37:02.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:37:02.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:37:02.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:37:02.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:37:02.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:37:02.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.2667ms +2024-05-23 19:37:02.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2413ms +2024-05-23 19:37:02.338 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.0033ms +2024-05-23 19:37:02.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.8474ms +2024-05-23 19:37:02.363 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 161.9359ms +2024-05-23 19:37:02.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.7295ms +2024-05-23 19:37:02.533 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 332.5335ms +2024-05-23 19:37:02.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:02.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 411.4191ms +2024-05-23 19:37:05.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:37:05.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:05.289 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:05.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.2905ms +2024-05-23 19:37:13.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:37:13.904 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:14.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:37:14.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.0964ms +2024-05-23 19:39:11.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:39:11.738 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:11.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:11.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.394ms +2024-05-23 19:39:16.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:39:16.864 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:39:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:39:16.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:39:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:39:16.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.876 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:39:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:39:16.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:39:16.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.876 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.980 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:16.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.665ms +2024-05-23 19:39:17.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 161.8863ms +2024-05-23 19:39:17.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 176.1046ms +2024-05-23 19:39:17.128 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 255.6768ms +2024-05-23 19:39:17.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 385.4487ms +2024-05-23 19:39:17.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 397.2015ms +2024-05-23 19:39:17.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 442.1284ms +2024-05-23 19:39:17.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:17.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 473.6203ms +2024-05-23 19:39:26.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:39:26.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:39:26.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:39:26.447 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:39:26.448 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:39:26.449 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:39:26.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:39:26.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:39:26.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.7796ms +2024-05-23 19:39:26.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.6065ms +2024-05-23 19:39:26.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.9676ms +2024-05-23 19:39:26.597 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.8022ms +2024-05-23 19:39:26.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 165.561ms +2024-05-23 19:39:26.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 221.4153ms +2024-05-23 19:39:26.676 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.7768ms +2024-05-23 19:39:26.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:26.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 554.5871ms +2024-05-23 19:39:29.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:39:29.810 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:29.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:39:29.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.6092ms +2024-05-23 19:40:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:40:00. +2024-05-23 19:41:27.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:41:27.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:41:27.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:41:27.262 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:41:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:41:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.261 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:41:27.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:41:27.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:41:27.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.349 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.349 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.1053ms +2024-05-23 19:41:27.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1716ms +2024-05-23 19:41:27.401 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.9371ms +2024-05-23 19:41:27.409 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.1686ms +2024-05-23 19:41:27.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.5599ms +2024-05-23 19:41:27.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 174.9002ms +2024-05-23 19:41:27.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.8353ms +2024-05-23 19:41:27.788 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:27.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 529.862ms +2024-05-23 19:41:30.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:41:30.855 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:41:30.857 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:41:30.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:41:30.859 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.859 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:41:30.862 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:41:30.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:41:30.863 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:41:30.864 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.941 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.2227ms +2024-05-23 19:41:30.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:30.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.9753ms +2024-05-23 19:41:31.004 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.1976ms +2024-05-23 19:41:31.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.2596ms +2024-05-23 19:41:31.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.6367ms +2024-05-23 19:41:31.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.261ms +2024-05-23 19:41:31.324 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 461.69ms +2024-05-23 19:41:31.405 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:31.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 550.1772ms +2024-05-23 19:41:48.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:41:48.158 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:48.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:48.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.1762ms +2024-05-23 19:41:53.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:41:53.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:53.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:41:53.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 211.4651ms +2024-05-23 19:42:00.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:42:00.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:42:00.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:42:00.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:42:00.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:42:00.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:42:00.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:42:00.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.204 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:42:00.204 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 154.3942ms +2024-05-23 19:42:00.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 171.3648ms +2024-05-23 19:42:00.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 206.2106ms +2024-05-23 19:42:00.488 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 286.1346ms +2024-05-23 19:42:00.507 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 305.5399ms +2024-05-23 19:42:00.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 322.1329ms +2024-05-23 19:42:00.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 504.2808ms +2024-05-23 19:42:00.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:42:00.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 590.2514ms +2024-05-23 19:45:58.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:45:58.209 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 307.9895ms +2024-05-23 19:45:58.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:45:58.886 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:45:58.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:45:58.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:45:58.889 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.889 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:45:58.890 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:45:58.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:45:58.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:45:58.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.974 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.5993ms +2024-05-23 19:45:58.976 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:58.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.3069ms +2024-05-23 19:45:59.026 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.9869ms +2024-05-23 19:45:59.027 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.7951ms +2024-05-23 19:45:59.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.3789ms +2024-05-23 19:45:59.034 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.2892ms +2024-05-23 19:45:59.112 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.6293ms +2024-05-23 19:45:59.314 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:45:59.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.0745ms +2024-05-23 19:46:27.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:46:27.744 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:46:27.748 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:46:27.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:46:27.759 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:46:27.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:46:27.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:46:27.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:46:27.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 104.1853ms +2024-05-23 19:46:27.863 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 108.3675ms +2024-05-23 19:46:27.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.2449ms +2024-05-23 19:46:27.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.3823ms +2024-05-23 19:46:27.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.8023ms +2024-05-23 19:46:27.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 179.6995ms +2024-05-23 19:46:27.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:27.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.6375ms +2024-05-23 19:46:28.153 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:28.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 412.4925ms +2024-05-23 19:46:51.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:46:51.469 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:46:51.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:46:51.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:46:51.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:46:51.488 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:46:51.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:46:51.494 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:46:51.495 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.565 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.1398ms +2024-05-23 19:46:51.578 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.5043ms +2024-05-23 19:46:51.622 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.5916ms +2024-05-23 19:46:51.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.9189ms +2024-05-23 19:46:51.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.7843ms +2024-05-23 19:46:51.635 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.0587ms +2024-05-23 19:46:51.700 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.8534ms +2024-05-23 19:46:51.891 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:46:51.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.8739ms +2024-05-23 19:48:20.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:48:20.823 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:48:20.826 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:48:20.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:48:20.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:48:20.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:48:20.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:48:20.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:48:20.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.836 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.837 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.981 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:20.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.2156ms +2024-05-23 19:48:21.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 235.687ms +2024-05-23 19:48:21.155 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 319.8335ms +2024-05-23 19:48:21.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 337.3766ms +2024-05-23 19:48:21.238 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 418.3142ms +2024-05-23 19:48:21.284 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 454.8433ms +2024-05-23 19:48:21.401 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 571.2663ms +2024-05-23 19:48:21.453 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:21.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 618.2012ms +2024-05-23 19:48:30.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:48:30.193 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:48:30.197 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:48:30.202 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:48:30.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:48:30.203 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:48:30.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:48:30.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:48:30.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.208 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.5819ms +2024-05-23 19:48:30.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.2556ms +2024-05-23 19:48:30.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.3937ms +2024-05-23 19:48:30.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.5038ms +2024-05-23 19:48:30.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.9433ms +2024-05-23 19:48:30.452 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 248.6279ms +2024-05-23 19:48:30.529 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 325.1007ms +2024-05-23 19:48:30.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:30.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 401.6409ms +2024-05-23 19:48:34.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:48:34.636 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:34.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:48:34.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.1282ms +2024-05-23 19:50:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 17:50:00. +2024-05-23 19:50:08.148 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:50:08.148 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:50:08.148 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.149 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:50:08.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:50:08.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:50:08.151 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:50:08.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:50:08.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:50:08.156 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.237 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.1491ms +2024-05-23 19:50:08.238 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.7147ms +2024-05-23 19:50:08.283 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 135.3391ms +2024-05-23 19:50:08.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.2531ms +2024-05-23 19:50:08.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.8362ms +2024-05-23 19:50:08.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.0474ms +2024-05-23 19:50:08.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:08.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.0061ms +2024-05-23 19:50:10.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:10.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 2711.9353ms +2024-05-23 19:50:20.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:50:20.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:50:20.116 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.116 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:50:20.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:50:20.117 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:50:20.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:50:20.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:50:20.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:50:20.117 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.118 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.203 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.5151ms +2024-05-23 19:50:20.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 174.7483ms +2024-05-23 19:50:20.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 192.4916ms +2024-05-23 19:50:20.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 223.1228ms +2024-05-23 19:50:20.370 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 252.9935ms +2024-05-23 19:50:20.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 308.0737ms +2024-05-23 19:50:20.450 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:20.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 335.6519ms +2024-05-23 19:50:21.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:21.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 894.9878ms +2024-05-23 19:50:22.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:50:22.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:50:22.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:50:22.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:50:22.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:50:22.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:50:22.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:50:22.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:50:22.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.570 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.6435ms +2024-05-23 19:50:22.573 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.6506ms +2024-05-23 19:50:22.630 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.5053ms +2024-05-23 19:50:22.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 154.8535ms +2024-05-23 19:50:22.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 175.0577ms +2024-05-23 19:50:22.715 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:22.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.1972ms +2024-05-23 19:50:23.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:23.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 610.2871ms +2024-05-23 19:50:23.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:50:23.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 617.7035ms +2024-05-23 19:51:56.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:51:56.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:51:56.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:51:56.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:51:56.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:51:56.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:51:56.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:51:56.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:51:56.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.809 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1717ms +2024-05-23 19:51:56.920 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 114.4895ms +2024-05-23 19:51:56.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.0392ms +2024-05-23 19:51:56.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.9413ms +2024-05-23 19:51:56.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.4167ms +2024-05-23 19:51:56.952 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:56.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.2117ms +2024-05-23 19:51:57.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:57.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.4077ms +2024-05-23 19:51:57.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:51:57.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 469.0588ms +2024-05-23 19:52:11.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:52:11.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:52:11.332 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:52:11.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:52:11.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:52:11.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:52:11.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.335 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.7667ms +2024-05-23 19:52:11.468 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.7444ms +2024-05-23 19:52:11.473 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.8961ms +2024-05-23 19:52:11.477 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.7413ms +2024-05-23 19:52:11.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 160.0157ms +2024-05-23 19:52:11.553 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 219.772ms +2024-05-23 19:52:11.733 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.2775ms +2024-05-23 19:52:11.842 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:52:11.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 509.8132ms +2024-05-23 19:55:22.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:55:22.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:55:22.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:55:22.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:55:22.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:55:22.330 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:55:22.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:55:22.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:55:22.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.334 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.436 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 112.9858ms +2024-05-23 19:55:22.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 107.8743ms +2024-05-23 19:55:22.489 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.5406ms +2024-05-23 19:55:22.491 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.9832ms +2024-05-23 19:55:22.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 172.1309ms +2024-05-23 19:55:22.710 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.6871ms +2024-05-23 19:55:22.886 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 561.597ms +2024-05-23 19:55:22.889 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:22.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 559.9197ms +2024-05-23 19:55:32.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:55:32.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:32.669 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:55:32.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.8676ms +2024-05-23 19:58:02.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:58:02.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:58:02.977 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:58:02.980 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.976 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:58:02.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:58:02.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.986 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:58:02.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:58:02.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:02.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:58:02.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.063 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.2508ms +2024-05-23 19:58:03.081 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.8446ms +2024-05-23 19:58:03.128 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.8992ms +2024-05-23 19:58:03.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.5639ms +2024-05-23 19:58:03.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 171.3575ms +2024-05-23 19:58:03.165 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.4121ms +2024-05-23 19:58:03.200 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.9671ms +2024-05-23 19:58:03.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:03.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 428.4935ms +2024-05-23 19:58:06.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:58:06.957 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:58:06.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:58:06.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:58:06.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:58:06.961 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:58:06.961 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:58:06.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:58:06.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:06.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.2888ms +2024-05-23 19:58:07.070 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 108.7016ms +2024-05-23 19:58:07.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.7933ms +2024-05-23 19:58:07.105 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.3279ms +2024-05-23 19:58:07.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 154.0281ms +2024-05-23 19:58:07.123 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.3283ms +2024-05-23 19:58:07.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.8621ms +2024-05-23 19:58:07.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:07.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 451.0477ms +2024-05-23 19:58:13.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:58:13.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:13.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:13.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.8884ms +2024-05-23 19:58:15.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:58:15.127 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:15.266 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:58:15.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.679ms +2024-05-23 19:59:15.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 19:59:15.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 19:59:15.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 19:59:15.624 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.624 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 19:59:15.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:59:15.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 19:59:15.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 19:59:15.626 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 19:59:15.626 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.4156ms +2024-05-23 19:59:15.756 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 131.6803ms +2024-05-23 19:59:15.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.2455ms +2024-05-23 19:59:15.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.652ms +2024-05-23 19:59:15.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.308ms +2024-05-23 19:59:15.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:15.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 361.982ms +2024-05-23 19:59:16.395 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:16.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 771.5382ms +2024-05-23 19:59:16.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:16.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 896.0512ms +2024-05-23 19:59:19.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:59:19.885 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:20.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:20.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.1152ms +2024-05-23 19:59:21.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 19:59:21.062 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:21.201 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 19:59:21.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.3942ms +2024-05-23 20:00:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:00:00. +2024-05-23 20:08:25.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:08:25.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:08:25.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:08:25.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:08:25.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:08:25.249 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:08:25.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:08:25.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:08:25.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.7355ms +2024-05-23 20:08:25.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.3732ms +2024-05-23 20:08:25.403 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 158.2259ms +2024-05-23 20:08:25.406 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.1485ms +2024-05-23 20:08:25.445 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 198.7296ms +2024-05-23 20:08:25.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.5046ms +2024-05-23 20:08:25.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 498.8379ms +2024-05-23 20:08:25.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:25.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 570.9335ms +2024-05-23 20:08:42.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:08:42.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:08:42.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:08:42.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.409 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:08:42.411 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:08:42.413 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:08:42.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:08:42.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:08:42.416 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.2066ms +2024-05-23 20:08:42.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.7314ms +2024-05-23 20:08:42.551 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.7863ms +2024-05-23 20:08:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.1763ms +2024-05-23 20:08:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.9508ms +2024-05-23 20:08:42.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 158.4148ms +2024-05-23 20:08:42.639 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.4316ms +2024-05-23 20:08:42.836 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:42.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 428.8483ms +2024-05-23 20:08:45.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:08:45.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:45.330 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:08:45.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.2313ms +2024-05-23 20:10:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:10:00. +2024-05-23 20:16:56.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:16:56.401 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:56.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:56.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.4642ms +2024-05-23 20:16:59.558 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:16:59.558 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.559 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:16:59.559 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:16:59.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:16:59.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:16:59.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:16:59.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.561 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:16:59.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:16:59.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.645 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.4296ms +2024-05-23 20:16:59.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.8394ms +2024-05-23 20:16:59.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 134.3918ms +2024-05-23 20:16:59.707 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.7374ms +2024-05-23 20:16:59.708 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.9775ms +2024-05-23 20:16:59.796 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.1349ms +2024-05-23 20:16:59.936 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 377.8434ms +2024-05-23 20:16:59.962 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:16:59.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 405.0021ms +2024-05-23 20:17:02.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:17:02.611 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:17:02.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:17:02.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:17:02.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:17:02.613 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:17:02.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:17:02.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:17:02.614 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.6591ms +2024-05-23 20:17:02.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.8403ms +2024-05-23 20:17:02.764 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 152.6418ms +2024-05-23 20:17:02.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 159.5432ms +2024-05-23 20:17:02.776 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 164.0908ms +2024-05-23 20:17:02.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.9832ms +2024-05-23 20:17:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:02.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 263.1887ms +2024-05-23 20:17:03.058 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:03.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 447.4549ms +2024-05-23 20:17:06.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:17:06.954 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:07.097 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:07.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.6969ms +2024-05-23 20:17:13.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:17:13.470 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:17:13.472 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:17:13.477 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:17:13.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:17:13.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.484 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:17:13.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:17:13.491 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:17:13.494 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.575 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.575 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.4592ms +2024-05-23 20:17:13.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.8979ms +2024-05-23 20:17:13.609 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.4468ms +2024-05-23 20:17:13.617 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.8751ms +2024-05-23 20:17:13.622 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.2332ms +2024-05-23 20:17:13.638 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 171.7032ms +2024-05-23 20:17:13.708 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 214.7689ms +2024-05-23 20:17:13.878 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:13.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.0979ms +2024-05-23 20:17:17.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:17:17.074 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:17:17.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:17:17.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:17:17.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:17:17.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:17:17.086 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.085 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:17:17.089 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:17:17.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.7425ms +2024-05-23 20:17:17.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1764ms +2024-05-23 20:17:17.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.4604ms +2024-05-23 20:17:17.230 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.230 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.9345ms +2024-05-23 20:17:17.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.5467ms +2024-05-23 20:17:17.234 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.6779ms +2024-05-23 20:17:17.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 213.4216ms +2024-05-23 20:17:17.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:17.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 417.1881ms +2024-05-23 20:17:20.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:17:20.515 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:20.656 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:17:20.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.7421ms +2024-05-23 20:18:18.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:18:18.427 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:18.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:18.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.912ms +2024-05-23 20:18:20.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:18:20.921 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:18:20.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:18:20.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:18:20.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:18:20.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.932 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:18:20.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:18:20.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:18:20.936 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:20.936 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.013 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.5401ms +2024-05-23 20:18:21.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.0398ms +2024-05-23 20:18:21.070 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.0326ms +2024-05-23 20:18:21.076 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.346ms +2024-05-23 20:18:21.092 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.4761ms +2024-05-23 20:18:21.315 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 395.9435ms +2024-05-23 20:18:21.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 415.3276ms +2024-05-23 20:18:21.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:21.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 600.4398ms +2024-05-23 20:18:33.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:18:33.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:18:33.504 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.504 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:18:33.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:18:33.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:18:33.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:18:33.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:18:33.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:18:33.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.646 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.4179ms +2024-05-23 20:18:33.653 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.7878ms +2024-05-23 20:18:33.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.1914ms +2024-05-23 20:18:33.740 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 232.7611ms +2024-05-23 20:18:33.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 264.3526ms +2024-05-23 20:18:33.851 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 344.922ms +2024-05-23 20:18:33.892 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.8006ms +2024-05-23 20:18:33.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:33.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 392.0267ms +2024-05-23 20:18:36.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:18:36.750 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:36.890 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:18:36.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.2469ms +2024-05-23 20:20:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:20:00. +2024-05-23 20:20:52.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:20:52.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:52.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:52.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.6271ms +2024-05-23 20:20:54.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:20:54.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:20:54.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:20:54.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:20:54.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:20:54.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:20:54.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:20:54.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:20:54.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.159 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.4154ms +2024-05-23 20:20:54.165 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6377ms +2024-05-23 20:20:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.9336ms +2024-05-23 20:20:54.232 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 154.9543ms +2024-05-23 20:20:54.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 156.9566ms +2024-05-23 20:20:54.234 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.4835ms +2024-05-23 20:20:54.466 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 391.5319ms +2024-05-23 20:20:54.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:20:54.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 407.465ms +2024-05-23 20:21:01.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:21:01.913 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:21:01.913 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:21:01.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:21:01.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:21:01.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:21:01.915 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:21:01.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:21:01.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:01.916 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6318ms +2024-05-23 20:21:02.004 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.9472ms +2024-05-23 20:21:02.058 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.6297ms +2024-05-23 20:21:02.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.8441ms +2024-05-23 20:21:02.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.6113ms +2024-05-23 20:21:02.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.9716ms +2024-05-23 20:21:02.144 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 230.5798ms +2024-05-23 20:21:02.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:02.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 822.166ms +2024-05-23 20:21:06.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:21:06.967 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:07.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:21:07.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 171.1723ms +2024-05-23 20:23:02.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:23:02.851 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:23:02.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:23:02.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.8943ms +2024-05-23 20:23:09.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:23:09.715 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:23:09.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:23:09.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3437ms +2024-05-23 20:24:47.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:24:47.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:47.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:47.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.6497ms +2024-05-23 20:24:48.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:24:48.215 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:48.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:48.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.1613ms +2024-05-23 20:24:56.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:24:56.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:56.455 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:24:56.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.6461ms +2024-05-23 20:27:07.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:27:07.907 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:27:07.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:27:07.909 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.909 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:27:07.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:27:07.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:27:07.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:27:07.912 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.912 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:27:07.913 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:07.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.5296ms +2024-05-23 20:27:07.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5217ms +2024-05-23 20:27:08.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.5476ms +2024-05-23 20:27:08.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 151.1354ms +2024-05-23 20:27:08.136 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.8607ms +2024-05-23 20:27:08.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 411.6119ms +2024-05-23 20:27:08.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 408.686ms +2024-05-23 20:27:08.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:08.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 530.2775ms +2024-05-23 20:27:13.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:27:13.190 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:13.329 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:27:13.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.5656ms +2024-05-23 20:28:16.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:28:16.310 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:28:16.452 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:28:16.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.8765ms +2024-05-23 20:30:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:30:00. +2024-05-23 20:34:06.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:34:06.126 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:34:06.129 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:34:06.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:34:06.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:34:06.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:34:06.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:34:06.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:34:06.132 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.3599ms +2024-05-23 20:34:06.215 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.7845ms +2024-05-23 20:34:06.264 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 133.6286ms +2024-05-23 20:34:06.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.3179ms +2024-05-23 20:34:06.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.6954ms +2024-05-23 20:34:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 216.7424ms +2024-05-23 20:34:06.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 399.9906ms +2024-05-23 20:34:06.625 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:06.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 494.326ms +2024-05-23 20:34:24.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:34:24.666 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:34:24.671 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:34:24.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:34:24.674 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:34:24.675 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.675 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:34:24.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:34:24.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:34:24.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.778 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 101.8381ms +2024-05-23 20:34:24.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 102.1084ms +2024-05-23 20:34:24.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.0875ms +2024-05-23 20:34:24.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.6722ms +2024-05-23 20:34:24.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.3633ms +2024-05-23 20:34:24.827 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.6596ms +2024-05-23 20:34:24.916 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:24.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 240.0846ms +2024-05-23 20:34:25.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:25.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 484.8744ms +2024-05-23 20:34:28.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:34:28.747 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:28.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:34:28.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.227ms +2024-05-23 20:35:04.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:35:04.219 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:35:04.364 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:35:04.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.1603ms +2024-05-23 20:36:25.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:36:25.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:36:25.284 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:36:25.287 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:36:25.289 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:36:25.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:36:25.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:36:25.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:36:25.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.379 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.4024ms +2024-05-23 20:36:25.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.5437ms +2024-05-23 20:36:25.432 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0205ms +2024-05-23 20:36:25.435 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.6585ms +2024-05-23 20:36:25.436 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.1195ms +2024-05-23 20:36:25.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.3984ms +2024-05-23 20:36:25.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 231.8044ms +2024-05-23 20:36:25.664 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:25.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 389.7531ms +2024-05-23 20:36:31.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:36:31.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:36:31.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:36:31.318 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:36:31.319 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:36:31.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:36:31.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:36:31.323 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:36:31.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.417 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.2189ms +2024-05-23 20:36:31.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.1445ms +2024-05-23 20:36:31.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 135.4854ms +2024-05-23 20:36:31.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.255ms +2024-05-23 20:36:31.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.6186ms +2024-05-23 20:36:31.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.3538ms +2024-05-23 20:36:31.557 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.3247ms +2024-05-23 20:36:31.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:31.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 377.8515ms +2024-05-23 20:36:46.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:36:46.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:46.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:36:46.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.9527ms +2024-05-23 20:37:49.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:37:49.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:37:49.550 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.550 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:37:49.551 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:37:49.552 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:37:49.553 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:37:49.553 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:37:49.553 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:37:49.554 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.641 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.6217ms +2024-05-23 20:37:49.643 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.3779ms +2024-05-23 20:37:49.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.0317ms +2024-05-23 20:37:49.696 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.0038ms +2024-05-23 20:37:49.697 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.2684ms +2024-05-23 20:37:49.699 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.524ms +2024-05-23 20:37:49.775 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.8841ms +2024-05-23 20:37:49.952 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:37:49.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.1368ms +2024-05-23 20:40:00.053 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:40:00. +2024-05-23 20:41:54.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:41:54.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:41:55.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:41:55.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.8145ms +2024-05-23 20:43:56.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:43:56.851 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:43:56.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:43:56.853 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:43:56.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:43:56.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:43:56.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:43:56.855 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.855 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:43:56.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.7003ms +2024-05-23 20:43:56.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.0398ms +2024-05-23 20:43:56.999 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:56.999 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:57.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.2273ms +2024-05-23 20:43:57.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.3897ms +2024-05-23 20:43:57.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:57.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.1154ms +2024-05-23 20:43:57.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:57.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.6756ms +2024-05-23 20:43:57.279 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:57.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 428.9747ms +2024-05-23 20:43:57.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:43:57.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 692.2879ms +2024-05-23 20:49:02.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:49:02.823 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:02.907 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:02.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.7843ms +2024-05-23 20:49:02.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:49:02.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 209.121ms +2024-05-23 20:49:03.569 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 20:49:03.570 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 20:49:03.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 20:49:03.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 20:49:03.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 20:49:03.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:49:03.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 20:49:03.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:49:03.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.673 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.2506ms +2024-05-23 20:49:03.724 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.6588ms +2024-05-23 20:49:03.737 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.4039ms +2024-05-23 20:49:03.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 273.4476ms +2024-05-23 20:49:03.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:03.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 313.7477ms +2024-05-23 20:49:04.004 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:04.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 435.6367ms +2024-05-23 20:49:04.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:04.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 559.5468ms +2024-05-23 20:49:04.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:49:04.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 597.5282ms +2024-05-23 20:50:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 18:50:00. +2024-05-23 20:57:55.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:57:55.474 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:55.560 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:55.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.4831ms +2024-05-23 20:57:55.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:57:55.567 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:55.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:55.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 192.1879ms +2024-05-23 20:57:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 20:57:58.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:58.418 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:58.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.8219ms +2024-05-23 20:57:58.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 20:57:58.420 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:58.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 20:57:58.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 195.7225ms +2024-05-23 21:00:00.055 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:00:00. +2024-05-23 21:01:05.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:01:05.992 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:06.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:06.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.0716ms +2024-05-23 21:01:06.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:01:06.089 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:06.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:06.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 215.462ms +2024-05-23 21:01:09.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:01:09.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:09.472 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:09.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.026ms +2024-05-23 21:01:09.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:01:09.476 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:09.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:09.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 189.8178ms +2024-05-23 21:01:10.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:01:10.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:01:10.618 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:01:10.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:01:10.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:01:10.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:01:10.623 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.624 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:01:10.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:01:10.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:10.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.4286ms +2024-05-23 21:01:11.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 529.5091ms +2024-05-23 21:01:11.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 641.1202ms +2024-05-23 21:01:11.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 735.2371ms +2024-05-23 21:01:11.378 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 753.414ms +2024-05-23 21:01:11.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 862.9375ms +2024-05-23 21:01:11.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 883.6365ms +2024-05-23 21:01:11.622 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:11.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 997.7123ms +2024-05-23 21:01:26.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:01:26.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:01:26.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:01:26.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.8504ms +2024-05-23 21:01:26.242 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.707ms +2024-05-23 21:01:26.247 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 150.3282ms +2024-05-23 21:01:26.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 203.196ms +2024-05-23 21:01:26.381 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 283.2841ms +2024-05-23 21:01:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 295.2799ms +2024-05-23 21:01:26.425 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 327.3734ms +2024-05-23 21:01:26.494 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:01:26.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 396.5766ms +2024-05-23 21:07:48.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:07:48.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:07:48.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:07:48.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:07:48.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:07:48.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:07:48.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:07:48.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:07:48.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.731 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.9014ms +2024-05-23 21:07:48.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 113.4337ms +2024-05-23 21:07:48.790 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 172.8583ms +2024-05-23 21:07:48.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 174.6797ms +2024-05-23 21:07:48.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 176.5226ms +2024-05-23 21:07:48.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:07:48.829 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.965 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:48.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 136.7811ms +2024-05-23 21:07:48.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:07:48.968 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.081 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 463.7253ms +2024-05-23 21:07:49.166 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 198.7042ms +2024-05-23 21:07:49.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 549.0741ms +2024-05-23 21:07:49.198 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 580.0495ms +2024-05-23 21:07:49.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:07:49.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:07:49.480 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:07:49.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:07:49.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:07:49.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:07:49.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:07:49.482 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.482 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.482 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:07:49.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 111.2634ms +2024-05-23 21:07:49.602 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 120.5574ms +2024-05-23 21:07:49.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 173.5635ms +2024-05-23 21:07:49.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 172.0848ms +2024-05-23 21:07:49.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 248.9322ms +2024-05-23 21:07:49.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 250.517ms +2024-05-23 21:07:49.771 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 289.3941ms +2024-05-23 21:07:49.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:07:49.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 419.2884ms +2024-05-23 21:10:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:10:00. +2024-05-23 21:20:06.142 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:20:00. +2024-05-23 21:30:06.135 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:30:06. +2024-05-23 21:32:02.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:32:02.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:32:02.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:32:02.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.8013ms +2024-05-23 21:32:39.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:32:39.648 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:32:39.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:32:39.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.1644ms +2024-05-23 21:40:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:40:00. +2024-05-23 21:40:14.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:40:14.144 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:14.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:14.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.9588ms +2024-05-23 21:40:17.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:40:17.571 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:40:17.573 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:40:17.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:40:17.575 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:40:17.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:40:17.576 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:40:17.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:40:17.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.577 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.979 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:17.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 408.7937ms +2024-05-23 21:40:18.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 484.6238ms +2024-05-23 21:40:18.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 492.9504ms +2024-05-23 21:40:18.108 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 535.8823ms +2024-05-23 21:40:18.150 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 575.6943ms +2024-05-23 21:40:18.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 575.5851ms +2024-05-23 21:40:18.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 712.0449ms +2024-05-23 21:40:18.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:18.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 752.4435ms +2024-05-23 21:40:21.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:40:21.063 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:21.203 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:21.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.1864ms +2024-05-23 21:40:25.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:40:25.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:25.365 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:40:25.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.1838ms +2024-05-23 21:46:09.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:46:09.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:46:09.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:46:09.019 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:46:09.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:46:09.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:46:09.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:46:09.026 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.024 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.025 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:46:09.029 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.125 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 101.078ms +2024-05-23 21:46:09.133 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 110.3766ms +2024-05-23 21:46:09.156 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.857ms +2024-05-23 21:46:09.168 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.2259ms +2024-05-23 21:46:09.169 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.7138ms +2024-05-23 21:46:09.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 399.271ms +2024-05-23 21:46:09.674 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 650.7982ms +2024-05-23 21:46:09.738 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 714.886ms +2024-05-23 21:46:09.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:46:09.823 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:09.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.7561ms +2024-05-23 21:46:09.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:46:09.920 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:10.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:46:10.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 213.1277ms +2024-05-23 21:47:28.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:47:28.259 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:28.404 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:28.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.9622ms +2024-05-23 21:47:30.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:47:30.858 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:30.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:30.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.0409ms +2024-05-23 21:47:35.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:47:35.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:47:35.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:47:35.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:47:35.585 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:47:35.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:47:35.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:47:35.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:47:35.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.674 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.674 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2576ms +2024-05-23 21:47:35.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.1179ms +2024-05-23 21:47:35.727 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.3817ms +2024-05-23 21:47:35.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.0693ms +2024-05-23 21:47:35.742 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.9874ms +2024-05-23 21:47:35.744 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 160.5523ms +2024-05-23 21:47:35.836 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:35.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 251.2039ms +2024-05-23 21:47:36.000 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:36.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 419.994ms +2024-05-23 21:47:36.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:47:36.415 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:36.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:36.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.4067ms +2024-05-23 21:47:36.499 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:47:36.500 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:36.685 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:47:36.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 186.1694ms +2024-05-23 21:49:16.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:49:16.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:49:16.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:49:16.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:49:16.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:49:16.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:49:16.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:49:16.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:49:16.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:16.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2037ms +2024-05-23 21:49:17.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 112.1318ms +2024-05-23 21:49:17.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.7656ms +2024-05-23 21:49:17.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.3989ms +2024-05-23 21:49:17.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.2128ms +2024-05-23 21:49:17.137 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.591ms +2024-05-23 21:49:17.223 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.7819ms +2024-05-23 21:49:17.372 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:17.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 412.3345ms +2024-05-23 21:49:23.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:49:23.104 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:23.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:23.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.7032ms +2024-05-23 21:49:23.192 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:49:23.192 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:23.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:23.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 196.5469ms +2024-05-23 21:49:29.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:49:29.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:29.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:29.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.2352ms +2024-05-23 21:49:33.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:49:33.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:49:33.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:49:33.064 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.064 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.064 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:49:33.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:49:33.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:49:33.066 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.066 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:49:33.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:49:33.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.066 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.159 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.7625ms +2024-05-23 21:49:33.162 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.2916ms +2024-05-23 21:49:33.204 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.0977ms +2024-05-23 21:49:33.209 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.7318ms +2024-05-23 21:49:33.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.3529ms +2024-05-23 21:49:33.220 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.3596ms +2024-05-23 21:49:33.315 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 249.9319ms +2024-05-23 21:49:33.482 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:49:33.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 417.9676ms +2024-05-23 21:50:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 19:50:00. +2024-05-23 21:50:04.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:04.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:05.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:05.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.8402ms +2024-05-23 21:50:17.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:50:17.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:50:17.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:50:17.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:50:17.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:50:17.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:17.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:50:17.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:17.115 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.114 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.115 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.204 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.8157ms +2024-05-23 21:50:17.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.226ms +2024-05-23 21:50:17.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.4339ms +2024-05-23 21:50:17.286 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 172.699ms +2024-05-23 21:50:17.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 174.5271ms +2024-05-23 21:50:17.355 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 240.155ms +2024-05-23 21:50:17.534 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 421.6868ms +2024-05-23 21:50:17.651 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:17.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 536.8896ms +2024-05-23 21:50:20.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:50:20.694 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:20.878 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:20.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 183.9895ms +2024-05-23 21:50:29.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:29.491 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:29.575 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:29.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.3984ms +2024-05-23 21:50:29.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:29.580 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:29.874 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:29.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 295.1482ms +2024-05-23 21:50:30.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:50:30.458 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:50:30.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:50:30.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.459 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:50:30.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:30.463 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:30.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:50:30.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:50:30.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.554 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.554 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.5119ms +2024-05-23 21:50:30.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.5277ms +2024-05-23 21:50:30.610 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.611 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.0864ms +2024-05-23 21:50:30.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.6527ms +2024-05-23 21:50:30.620 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.8454ms +2024-05-23 21:50:30.647 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 190.5685ms +2024-05-23 21:50:30.697 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.4718ms +2024-05-23 21:50:30.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:30.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.7076ms +2024-05-23 21:50:36.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:36.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:36.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:36.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.758ms +2024-05-23 21:50:36.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:36.527 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:36.723 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:36.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.1944ms +2024-05-23 21:50:37.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:50:37.695 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:50:37.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:50:37.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:50:37.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:37.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:50:37.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:37.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:50:37.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.7235ms +2024-05-23 21:50:37.802 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.2822ms +2024-05-23 21:50:37.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.9ms +2024-05-23 21:50:37.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.5163ms +2024-05-23 21:50:37.854 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.9006ms +2024-05-23 21:50:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.8892ms +2024-05-23 21:50:37.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:37.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 236.5873ms +2024-05-23 21:50:38.133 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:38.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 439.2723ms +2024-05-23 21:50:50.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:50.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:50.698 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:50.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.9086ms +2024-05-23 21:50:50.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:50.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:50.896 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:50.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 196.4328ms +2024-05-23 21:50:55.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:55.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:56.196 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:56.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.5256ms +2024-05-23 21:50:57.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:50:57.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:50:57.216 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.216 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:57.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:50:57.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:50:57.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:50:57.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.222 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:50:57.223 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.221 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:50:57.227 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.303 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.0562ms +2024-05-23 21:50:57.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.6821ms +2024-05-23 21:50:57.358 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.1825ms +2024-05-23 21:50:57.360 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.2577ms +2024-05-23 21:50:57.362 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.3175ms +2024-05-23 21:50:57.362 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.2392ms +2024-05-23 21:50:57.451 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.3779ms +2024-05-23 21:50:57.628 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:57.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 413.2702ms +2024-05-23 21:50:58.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:50:58.264 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:58.466 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:50:58.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 202.6424ms +2024-05-23 21:51:01.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:51:01.479 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:01.567 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:01.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.964ms +2024-05-23 21:51:01.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:51:01.574 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:01.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:01.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.5263ms +2024-05-23 21:51:03.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:51:03.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:03.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:03.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.1669ms +2024-05-23 21:51:57.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:51:57.027 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.05ms +2024-05-23 21:51:57.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:51:57.124 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.2633ms +2024-05-23 21:51:57.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:51:57.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:51:57.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:51:57.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:51:57.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:51:57.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:51:57.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:51:57.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:57.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:51:57.932 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.018 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.0666ms +2024-05-23 21:51:58.020 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.5139ms +2024-05-23 21:51:58.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 119.251ms +2024-05-23 21:51:58.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.9658ms +2024-05-23 21:51:58.081 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.885ms +2024-05-23 21:51:58.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.7407ms +2024-05-23 21:51:58.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 236.8519ms +2024-05-23 21:51:58.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:51:58.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1354ms +2024-05-23 21:51:58.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:51:58.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.687 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 198.8933ms +2024-05-23 21:51:58.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:51:58.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 870.4447ms +2024-05-23 21:52:12.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:12.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:12.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:12.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 250.5733ms +2024-05-23 21:52:13.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:52:13.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:13.348 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:13.348 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.348 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:52:13.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:52:13.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:52:13.349 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.349 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:52:13.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:13.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.350 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.443 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.0984ms +2024-05-23 21:52:13.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.7753ms +2024-05-23 21:52:13.486 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.7174ms +2024-05-23 21:52:13.488 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.0384ms +2024-05-23 21:52:13.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.4227ms +2024-05-23 21:52:13.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 165.612ms +2024-05-23 21:52:13.577 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.0048ms +2024-05-23 21:52:13.745 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:13.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 396.219ms +2024-05-23 21:52:23.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:52:23.442 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:52:23.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:52:23.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:52:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:23.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.445 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:23.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:52:23.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.9973ms +2024-05-23 21:52:23.588 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.3092ms +2024-05-23 21:52:23.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.9588ms +2024-05-23 21:52:23.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.4324ms +2024-05-23 21:52:23.642 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 197.5876ms +2024-05-23 21:52:23.681 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.9811ms +2024-05-23 21:52:23.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 276.0726ms +2024-05-23 21:52:23.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:23.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 438.7494ms +2024-05-23 21:52:30.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:30.257 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:30.399 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:30.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.6172ms +2024-05-23 21:52:31.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:52:31.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:31.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:52:31.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:52:31.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.656 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:52:31.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:31.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:31.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:52:31.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.0458ms +2024-05-23 21:52:31.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.0536ms +2024-05-23 21:52:31.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.7665ms +2024-05-23 21:52:31.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.7116ms +2024-05-23 21:52:31.803 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.803 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.2253ms +2024-05-23 21:52:31.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.0756ms +2024-05-23 21:52:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:31.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.2924ms +2024-05-23 21:52:32.084 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:32.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.858ms +2024-05-23 21:52:33.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:33.283 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:33.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:33.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.5366ms +2024-05-23 21:52:41.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:41.036 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:41.264 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:41.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.1061ms +2024-05-23 21:52:41.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:41.273 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:41.358 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:41.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.3441ms +2024-05-23 21:52:45.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:52:45.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:45.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:52:45.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:52:45.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.898 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:45.901 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:52:45.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:52:45.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:52:45.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.903 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.0757ms +2024-05-23 21:52:45.991 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:45.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.3455ms +2024-05-23 21:52:46.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.4384ms +2024-05-23 21:52:46.050 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.9746ms +2024-05-23 21:52:46.058 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 164.7248ms +2024-05-23 21:52:46.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 178.1728ms +2024-05-23 21:52:46.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 237.7422ms +2024-05-23 21:52:46.304 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:46.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 411.8222ms +2024-05-23 21:52:56.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:52:56.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:52:56.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:56.714 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:56.808 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:56.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.7506ms +2024-05-23 21:52:56.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:52:56.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 237.2965ms +2024-05-23 21:54:25.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:54:25.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:54:25.541 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:54:25.542 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:54:25.626 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:54:25.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.3216ms +2024-05-23 21:54:25.766 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:54:25.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.973ms +2024-05-23 21:56:05.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 21:56:05.485 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 21:56:05.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 21:56:05.486 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:56:05.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 21:56:05.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:56:05.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 21:56:05.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 21:56:05.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.574 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.2101ms +2024-05-23 21:56:05.584 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.8322ms +2024-05-23 21:56:05.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.5852ms +2024-05-23 21:56:05.641 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.1253ms +2024-05-23 21:56:05.648 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 158.7438ms +2024-05-23 21:56:05.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.9349ms +2024-05-23 21:56:05.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 246.276ms +2024-05-23 21:56:05.881 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:05.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.0703ms +2024-05-23 21:56:05.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 21:56:05.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:06.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:06.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 206.3408ms +2024-05-23 21:56:06.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 21:56:06.140 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:06.231 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 21:56:06.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.0762ms +2024-05-23 22:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:00:00. +2024-05-23 22:10:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:10:00. +2024-05-23 22:10:43.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:10:43.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:10:43.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:10:43.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:10:43.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:10:43.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:10:43.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:10:43.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:10:43.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 436.5487ms +2024-05-23 22:10:43.935 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 543.9562ms +2024-05-23 22:10:43.962 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:43.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 572.8263ms +2024-05-23 22:10:44.020 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:44.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 628.8741ms +2024-05-23 22:10:44.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:44.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 713.8179ms +2024-05-23 22:10:44.163 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:44.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 775.0502ms +2024-05-23 22:10:44.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:44.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 820.7791ms +2024-05-23 22:10:44.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:44.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 828.5983ms +2024-05-23 22:10:52.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:10:52.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:52.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:10:52.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.4329ms +2024-05-23 22:11:05.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:11:05.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:05.613 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:05.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.2331ms +2024-05-23 22:11:21.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:11:21.493 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:11:21.493 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:11:21.495 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:11:21.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:11:21.496 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.496 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:11:21.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:11:21.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:11:21.498 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.586 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.5196ms +2024-05-23 22:11:21.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.65ms +2024-05-23 22:11:21.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.4041ms +2024-05-23 22:11:21.643 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.2689ms +2024-05-23 22:11:21.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.3277ms +2024-05-23 22:11:21.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 405.3229ms +2024-05-23 22:11:21.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:21.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 413.6073ms +2024-05-23 22:11:22.558 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:22.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1065.8089ms +2024-05-23 22:11:24.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:11:24.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:11:24.760 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:11:24.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:11:24.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:11:24.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:11:24.766 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:11:24.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:11:24.769 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.858 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.6354ms +2024-05-23 22:11:24.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.2827ms +2024-05-23 22:11:24.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.7162ms +2024-05-23 22:11:24.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.9226ms +2024-05-23 22:11:24.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:24.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.7898ms +2024-05-23 22:11:24.999 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:25.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.129ms +2024-05-23 22:11:25.017 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:25.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 256.8907ms +2024-05-23 22:11:26.508 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:26.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1751.4839ms +2024-05-23 22:11:42.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:11:42.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:42.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:42.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.0388ms +2024-05-23 22:11:50.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:11:50.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:50.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:50.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.2548ms +2024-05-23 22:11:51.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:11:51.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:11:51.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:11:51.498 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:11:51.501 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:11:51.501 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.502 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:11:51.502 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:11:51.503 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:11:51.503 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.587 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.1898ms +2024-05-23 22:11:51.597 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.7746ms +2024-05-23 22:11:51.638 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.9307ms +2024-05-23 22:11:51.639 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.2674ms +2024-05-23 22:11:51.640 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.9399ms +2024-05-23 22:11:51.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.1257ms +2024-05-23 22:11:51.726 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.6416ms +2024-05-23 22:11:51.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:11:51.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 405.4816ms +2024-05-23 22:12:23.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:12:23.652 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:23.740 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:23.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.4906ms +2024-05-23 22:12:25.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:12:25.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:26.048 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:26.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.6443ms +2024-05-23 22:12:27.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:12:27.400 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:27.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:27.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.0817ms +2024-05-23 22:12:30.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:12:30.579 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:12:30.581 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:12:30.582 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:12:30.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:12:30.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:12:30.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:12:30.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:12:30.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.586 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.675 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.6087ms +2024-05-23 22:12:30.680 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.8422ms +2024-05-23 22:12:30.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.6343ms +2024-05-23 22:12:30.744 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.744 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 159.2334ms +2024-05-23 22:12:30.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 159.293ms +2024-05-23 22:12:30.745 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.5729ms +2024-05-23 22:12:30.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:30.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 238.6907ms +2024-05-23 22:12:31.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:12:31.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 433.2829ms +2024-05-23 22:13:59.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:13:59.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.104 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3277ms +2024-05-23 22:14:00.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:14:00.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:00.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:14:00.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:14:00.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:14:00.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:14:00.932 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:14:00.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.933 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:00.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:14:00.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.9694ms +2024-05-23 22:14:01.016 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.363ms +2024-05-23 22:14:01.073 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.6199ms +2024-05-23 22:14:01.073 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.6144ms +2024-05-23 22:14:01.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.078 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.029ms +2024-05-23 22:14:01.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.6626ms +2024-05-23 22:14:01.153 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.0458ms +2024-05-23 22:14:01.313 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 385.4552ms +2024-05-23 22:14:01.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:14:01.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.597 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:01.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 114.961ms +2024-05-23 22:14:05.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:14:05.385 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:14:05.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:14:05.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:14:05.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:14:05.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:14:05.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.477 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.477 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.7637ms +2024-05-23 22:14:05.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.7631ms +2024-05-23 22:14:05.528 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.4558ms +2024-05-23 22:14:05.535 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.5811ms +2024-05-23 22:14:05.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.9509ms +2024-05-23 22:14:05.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 151.5568ms +2024-05-23 22:14:05.608 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.43ms +2024-05-23 22:14:05.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:05.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.2695ms +2024-05-23 22:14:21.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:14:21.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:14:21.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:14:21.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.376 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:14:21.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:14:21.383 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:21.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:14:21.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:14:21.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.466 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.2658ms +2024-05-23 22:14:21.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.5636ms +2024-05-23 22:14:21.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.2831ms +2024-05-23 22:14:21.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.7011ms +2024-05-23 22:14:21.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 257.4687ms +2024-05-23 22:14:21.795 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 420.013ms +2024-05-23 22:14:21.838 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 462.9035ms +2024-05-23 22:14:21.922 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:21.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 534.5256ms +2024-05-23 22:14:23.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:23.886 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:24.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:24.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 138.9658ms +2024-05-23 22:14:26.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:26.862 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:26.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:26.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.2165ms +2024-05-23 22:14:33.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:14:33.429 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:14:33.429 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:14:33.431 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.431 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.432 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:14:33.432 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:14:33.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:14:33.433 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.433 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.523 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.0078ms +2024-05-23 22:14:33.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.2111ms +2024-05-23 22:14:33.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.2352ms +2024-05-23 22:14:33.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.7937ms +2024-05-23 22:14:33.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.6797ms +2024-05-23 22:14:33.662 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 231.2899ms +2024-05-23 22:14:33.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.6857ms +2024-05-23 22:14:33.855 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:33.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 426.863ms +2024-05-23 22:14:47.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:14:47.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:47.916 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:14:47.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 216.5527ms +2024-05-23 22:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:20:00. +2024-05-23 22:28:49.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:28:49.083 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:28:49.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:28:49.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.6824ms +2024-05-23 22:30:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:30:00. +2024-05-23 22:30:26.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:30:26.692 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:26.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 227.3074ms +2024-05-23 22:30:30.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:30:30.738 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:30.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:30.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.0335ms +2024-05-23 22:30:31.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:30:31.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:30:31.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:30:31.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:30:31.396 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:30:31.397 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:30:31.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:30:31.398 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:30:31.399 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.399 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.531 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.6481ms +2024-05-23 22:30:31.617 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 218.3321ms +2024-05-23 22:30:31.745 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 348.8698ms +2024-05-23 22:30:31.976 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 578.3631ms +2024-05-23 22:30:31.977 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:31.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 579.9913ms +2024-05-23 22:30:32.070 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:32.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 676.5952ms +2024-05-23 22:30:32.085 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:32.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 689.7674ms +2024-05-23 22:30:32.099 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:30:32.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 703.2231ms +2024-05-23 22:33:35.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:33:35.737 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:33:35.958 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:33:35.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.5189ms +2024-05-23 22:33:42.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:33:42.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:33:43.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:33:43.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.1811ms +2024-05-23 22:34:50.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:34:50.693 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:34:50.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:34:50.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.1628ms +2024-05-23 22:38:04.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:38:04.381 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:04.604 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:04.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.4151ms +2024-05-23 22:38:07.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:38:07.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:38:07.298 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.298 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:38:07.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:38:07.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:38:07.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:38:07.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:38:07.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:38:07.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.6181ms +2024-05-23 22:38:07.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.0098ms +2024-05-23 22:38:07.445 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.6219ms +2024-05-23 22:38:07.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 194.5706ms +2024-05-23 22:38:07.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.5946ms +2024-05-23 22:38:07.738 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:07.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 441.3688ms +2024-05-23 22:38:08.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:08.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 763.0328ms +2024-05-23 22:38:08.201 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:08.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 900.0046ms +2024-05-23 22:38:11.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:38:11.494 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:11.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:38:11.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.6321ms +2024-05-23 22:40:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:40:00. +2024-05-23 22:40:46.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:40:46.790 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:40:46.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:40:46.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:40:46.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:40:46.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:40:46.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:40:46.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:40:46.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.873 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.1895ms +2024-05-23 22:40:46.878 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.833ms +2024-05-23 22:40:46.925 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 134.6229ms +2024-05-23 22:40:46.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.930 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:46.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.9016ms +2024-05-23 22:40:46.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.6773ms +2024-05-23 22:40:47.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:40:47.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:47.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:47.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.9099ms +2024-05-23 22:40:47.203 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:47.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 413.2032ms +2024-05-23 22:40:47.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:47.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 419.4984ms +2024-05-23 22:40:47.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:47.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 498.4928ms +2024-05-23 22:40:51.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:40:51.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:51.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:40:51.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.9058ms +2024-05-23 22:47:22.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:47:22.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:47:22.288 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.290 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:47:22.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:47:22.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:47:22.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:47:22.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:47:22.308 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:47:22.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.393 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.2293ms +2024-05-23 22:47:22.396 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 99.1764ms +2024-05-23 22:47:22.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 157.9042ms +2024-05-23 22:47:22.446 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.6999ms +2024-05-23 22:47:22.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 168.0425ms +2024-05-23 22:47:22.473 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.9074ms +2024-05-23 22:47:22.549 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 250.5467ms +2024-05-23 22:47:22.709 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:22.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 425.387ms +2024-05-23 22:47:30.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:47:30.067 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:30.158 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:30.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.5458ms +2024-05-23 22:47:31.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:47:31.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:32.053 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:47:32.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.955ms +2024-05-23 22:49:32.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:49:32.877 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:32.974 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:32.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.6904ms +2024-05-23 22:49:33.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:49:33.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:49:33.590 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:49:33.591 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:49:33.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:49:33.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:49:33.592 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:49:33.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.593 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:49:33.595 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.679 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.9518ms +2024-05-23 22:49:33.683 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.1451ms +2024-05-23 22:49:33.741 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 154.4038ms +2024-05-23 22:49:33.768 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 175.815ms +2024-05-23 22:49:33.829 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 237.0813ms +2024-05-23 22:49:33.845 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 252.7175ms +2024-05-23 22:49:33.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:49:33.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:33.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 394.7271ms +2024-05-23 22:49:34.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 148.2759ms +2024-05-23 22:49:34.049 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 460.1973ms +2024-05-23 22:49:34.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:49:34.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:49:34.519 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:49:34.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:49:34.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:49:34.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:49:34.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:49:34.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:49:34.524 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.524 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.523 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.6781ms +2024-05-23 22:49:34.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.3454ms +2024-05-23 22:49:34.639 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 120.9845ms +2024-05-23 22:49:34.668 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.9588ms +2024-05-23 22:49:34.670 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.5762ms +2024-05-23 22:49:34.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 170.8585ms +2024-05-23 22:49:34.884 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 368.7111ms +2024-05-23 22:49:34.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:49:34.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 423.6565ms +2024-05-23 22:50:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 20:50:00. +2024-05-23 22:50:25.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:50:25.759 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:25.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:25.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.6574ms +2024-05-23 22:50:29.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:50:29.228 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.316 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5524ms +2024-05-23 22:50:29.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:50:29.875 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:50:29.880 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:50:29.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:50:29.885 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.885 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:50:29.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:50:29.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:50:29.890 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:50:29.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.968 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.5002ms +2024-05-23 22:50:29.976 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:29.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.3238ms +2024-05-23 22:50:30.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.2238ms +2024-05-23 22:50:30.020 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.8579ms +2024-05-23 22:50:30.054 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.055 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 172.5951ms +2024-05-23 22:50:30.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 173.6289ms +2024-05-23 22:50:30.115 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.7842ms +2024-05-23 22:50:30.268 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:50:30.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 394.9863ms +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-23 22:53:36.697 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.697 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-23 22:53:36.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-23 22:53:36.698 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-23 22:53:36.697 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-23 22:53:36.697 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.699 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.2386ms +2024-05-23 22:53:36.824 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 127.3969ms +2024-05-23 22:53:36.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 153.2857ms +2024-05-23 22:53:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 159.6701ms +2024-05-23 22:53:36.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 216.9156ms +2024-05-23 22:53:36.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 243.0765ms +2024-05-23 22:53:36.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:36.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 266.3746ms +2024-05-23 22:53:37.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-23 22:53:37.056 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:37.146 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:37.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.6545ms +2024-05-23 22:53:37.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-23 22:53:37.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 505.6884ms +2024-05-23 23:00:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:00:00. +2024-05-23 23:10:00.404 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:10:00. +2024-05-23 23:20:00.408 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:20:00. +2024-05-23 23:30:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:30:00. +2024-05-23 23:40:00.381 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:40:00. +2024-05-23 23:50:00.388 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 21:50:00. diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240524.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240524.txt new file mode 100644 index 000000000..ed3cd369f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240524.txt @@ -0,0 +1,2469 @@ +2024-05-24 00:00:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:00:00. +2024-05-24 00:10:00.732 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:10:00. +2024-05-24 00:20:00.727 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:20:00. +2024-05-24 00:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:30:00. +2024-05-24 00:40:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:40:00. +2024-05-24 00:50:00.359 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 22:50:00. +2024-05-24 01:00:00.361 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:00:00. +2024-05-24 01:10:00.082 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:10:00. +2024-05-24 01:20:00.411 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:20:00. +2024-05-24 01:30:00.404 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:30:00. +2024-05-24 01:40:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:40:00. +2024-05-24 01:50:00.927 +02:00 [INF] Cleaned unmatched files for all entities at 05/23/2024 23:50:00. +2024-05-24 02:00:00.975 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:00:00. +2024-05-24 02:10:00.133 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:10:00. +2024-05-24 02:20:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:20:00. +2024-05-24 02:30:00.416 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:30:00. +2024-05-24 02:40:00.414 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:40:00. +2024-05-24 02:50:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 00:50:00. +2024-05-24 03:00:00.469 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:00:00. +2024-05-24 03:10:00.458 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:10:00. +2024-05-24 03:20:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:20:00. +2024-05-24 03:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:30:00. +2024-05-24 03:40:00.489 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:40:00. +2024-05-24 03:50:00.482 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 01:50:00. +2024-05-24 04:00:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:00:00. +2024-05-24 04:10:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:10:00. +2024-05-24 04:20:00.350 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:20:00. +2024-05-24 04:30:00.350 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:30:00. +2024-05-24 04:40:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:40:00. +2024-05-24 04:50:00.437 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 02:50:00. +2024-05-24 05:00:00.432 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:00:00. +2024-05-24 05:10:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:10:00. +2024-05-24 05:20:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:20:00. +2024-05-24 05:30:00.451 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:30:00. +2024-05-24 05:40:00.449 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:40:00. +2024-05-24 05:50:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 03:50:00. +2024-05-24 06:00:00.057 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:00:00. +2024-05-24 06:10:00.528 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:10:00. +2024-05-24 06:20:00.521 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:20:00. +2024-05-24 06:30:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:30:00. +2024-05-24 06:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:40:00. +2024-05-24 06:50:00.376 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 04:50:00. +2024-05-24 07:00:00.377 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 05:00:00. +2024-05-24 07:10:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 05:10:00. +2024-05-24 07:20:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 05:20:00. +2024-05-24 07:30:00.447 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 05:30:00. +2024-05-24 07:40:00.438 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 05:40:00. +2024-05-24 14:21:58.603 +02:00 [INF] Deregistering a service [id: mediafiles-service:48da200f89b34292a7c675b052f46f38] from Consul... +2024-05-24 14:21:58.605 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/mediafiles-service:48da200f89b34292a7c675b052f46f38" +2024-05-24 14:21:58.606 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/mediafiles-service:48da200f89b34292a7c675b052f46f38 +2024-05-24 14:21:58.606 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/mediafiles-service:48da200f89b34292a7c675b052f46f38 +2024-05-24 14:21:58.627 +02:00 [INF] Received HTTP response headers after 20.3388ms - 200 +2024-05-24 14:21:58.627 +02:00 [INF] End processing HTTP request after 21.1947ms - 200 +2024-05-24 14:21:58.627 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 14:21:58.628 +02:00 [INF] Deregistered a service [id: mediafiles-service:48da200f89b34292a7c675b052f46f38] from Consul. +2024-05-24 14:22:07.904 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/wwwroot. Static files may be unavailable. +2024-05-24 14:22:08.034 +02:00 [INF] Registering a service [id: mediafiles-service:9bd75175cf3143f594653904529619f1] in Consul... +2024-05-24 14:22:08.051 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 14:22:08.055 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 14:22:08.055 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 14:22:08.068 +02:00 [INF] Received HTTP response headers after 10.0824ms - 200 +2024-05-24 14:22:08.070 +02:00 [INF] End processing HTTP request after 15.8068ms - 200 +2024-05-24 14:22:08.073 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 14:22:08.073 +02:00 [INF] Registered a service [id: mediafiles-service:9bd75175cf3143f594653904529619f1] in Consul. +2024-05-24 14:22:08.077 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.upload_media_file' with routing key: 'upload_media_file' for an exchange: 'mediafiles'. +2024-05-24 14:22:08.090 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.delete_media_file' with routing key: 'delete_media_file' for an exchange: 'mediafiles'. +2024-05-24 14:22:08.093 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.cleanup_unassociated_files' with routing key: 'cleanup_unassociated_files' for an exchange: 'mediafiles'. +2024-05-24 14:22:08.096 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_created' with routing key: 'student_created' for an exchange: 'students'. +2024-05-24 14:22:08.099 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_updated' with routing key: 'student_updated' for an exchange: 'students'. +2024-05-24 14:22:08.102 +02:00 [INF] Declaring a queue: 'mediafiles-service/posts.post_created' with routing key: 'post_created' for an exchange: 'posts'. +2024-05-24 14:22:08.105 +02:00 [INF] Declaring a queue: 'mediafiles-service/events.event_created' with routing key: 'event_created' for an exchange: 'events'. +2024-05-24 14:24:33.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 14:24:34.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:34.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:34.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 670.3861ms +2024-05-24 14:24:35.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 14:24:35.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 14:24:35.177 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.178 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 14:24:35.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 14:24:35.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 14:24:35.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 14:24:35.182 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 14:24:35.182 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.183 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.182 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 14:24:35.183 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.186 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 208.7326ms +2024-05-24 14:24:35.505 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 329.5905ms +2024-05-24 14:24:35.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 369.1205ms +2024-05-24 14:24:35.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 367.5257ms +2024-05-24 14:24:35.594 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 413.6137ms +2024-05-24 14:24:35.650 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 468.9725ms +2024-05-24 14:24:35.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 511.011ms +2024-05-24 14:24:35.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:24:35.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 720.276ms +2024-05-24 14:30:00.120 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 12:30:00. +2024-05-24 14:31:23.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 14:31:23.219 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:31:23.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:31:23.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.3335ms +2024-05-24 14:40:00.152 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 12:40:00. +2024-05-24 14:50:00.074 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 12:50:00. +2024-05-24 14:51:01.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 14:51:01.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 14:51:01.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 14:51:01.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 14:51:01.279 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 14:51:01.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 14:51:01.278 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.278 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.279 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 14:51:01.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 14:51:01.282 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.282 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 179.5624ms +2024-05-24 14:51:01.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 351.029ms +2024-05-24 14:51:01.775 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 499.308ms +2024-05-24 14:51:01.807 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 528.0392ms +2024-05-24 14:51:01.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 628.2658ms +2024-05-24 14:51:01.955 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:01.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 679.4859ms +2024-05-24 14:51:02.040 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:02.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 764.2852ms +2024-05-24 14:51:02.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 14:51:02.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 784.3899ms +2024-05-24 15:00:02.485 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:00:02. +2024-05-24 15:10:00.201 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:10:00. +2024-05-24 15:20:00.087 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:20:00. +2024-05-24 15:30:00.500 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:30:00. +2024-05-24 15:40:00.504 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:40:00. +2024-05-24 15:50:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 13:50:00. +2024-05-24 16:00:00.978 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:00:00. +2024-05-24 16:10:01.018 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:10:00. +2024-05-24 16:20:00.121 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:20:00. +2024-05-24 16:26:30.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 16:26:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 16:26:30.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 16:26:30.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 16:26:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 16:26:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 16:26:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 16:26:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 16:26:30.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.281 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.282 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.757 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 479.2311ms +2024-05-24 16:26:30.815 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 536.4646ms +2024-05-24 16:26:30.836 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 558.364ms +2024-05-24 16:26:30.873 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 595.2931ms +2024-05-24 16:26:30.890 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 610.723ms +2024-05-24 16:26:30.947 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:30.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 668.9069ms +2024-05-24 16:26:31.061 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:31.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 782.9904ms +2024-05-24 16:26:31.170 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:31.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 891.6852ms +2024-05-24 16:26:49.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 16:26:49.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:49.576 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:49.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.2663ms +2024-05-24 16:26:50.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 16:26:50.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 16:26:50.017 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 16:26:50.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 16:26:50.019 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 16:26:50.019 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 16:26:50.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 16:26:50.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 16:26:50.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.023 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.9778ms +2024-05-24 16:26:50.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.1072ms +2024-05-24 16:26:50.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.5219ms +2024-05-24 16:26:50.170 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.171 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.0541ms +2024-05-24 16:26:50.250 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.16ms +2024-05-24 16:26:50.294 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 273.7933ms +2024-05-24 16:26:50.352 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 331.2575ms +2024-05-24 16:26:50.447 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 16:26:50.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 432.0653ms +2024-05-24 16:30:00.082 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:30:00. +2024-05-24 16:40:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:40:00. +2024-05-24 16:50:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 14:50:00. +2024-05-24 17:00:00.546 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:00:00. +2024-05-24 17:00:15.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:00:15.555 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:00:15.557 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.557 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:00:15.557 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.558 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.559 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:00:15.559 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:00:15.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:00:15.561 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:00:15.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:00:15.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 204.6683ms +2024-05-24 17:00:15.805 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 248.7242ms +2024-05-24 17:00:15.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 257.7687ms +2024-05-24 17:00:15.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 366.4094ms +2024-05-24 17:00:15.992 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:15.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 432.3174ms +2024-05-24 17:00:16.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:16.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 461.8902ms +2024-05-24 17:00:16.025 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:16.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 464.7656ms +2024-05-24 17:00:16.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:00:16.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 519.7982ms +2024-05-24 17:10:00.542 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:10:00. +2024-05-24 17:20:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:20:00. +2024-05-24 17:27:06.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:27:06.590 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:27:06.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:27:06.591 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.592 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:27:06.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:27:06.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:27:06.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:27:06.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.594 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:27:06.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:27:06.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:27:06.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:27:06.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:27:06.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:27:06.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:27:06.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:27:06.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:27:06.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:27:06.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.809 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:06.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 395.5444ms +2024-05-24 17:27:07.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 481.9126ms +2024-05-24 17:27:07.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 590.1774ms +2024-05-24 17:27:07.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 594.1338ms +2024-05-24 17:27:07.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 678.0545ms +2024-05-24 17:27:07.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 469.0358ms +2024-05-24 17:27:07.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 485.6803ms +2024-05-24 17:27:07.309 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 712.5111ms +2024-05-24 17:27:07.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 565.2613ms +2024-05-24 17:27:07.374 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 572.9469ms +2024-05-24 17:27:07.382 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 577.6056ms +2024-05-24 17:27:07.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 794.2944ms +2024-05-24 17:27:07.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 598.226ms +2024-05-24 17:27:07.419 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 826.1368ms +2024-05-24 17:27:07.486 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 680.5866ms +2024-05-24 17:27:07.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 734.8254ms +2024-05-24 17:27:07.623 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:27:07.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 1029.6596ms +2024-05-24 17:30:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:30:00. +2024-05-24 17:35:39.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:35:39.319 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:35:39.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:35:39.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:35:39.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:35:39.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:35:39.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:35:39.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:35:39.327 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.329 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.412 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1629ms +2024-05-24 17:35:39.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.0385ms +2024-05-24 17:35:39.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.304ms +2024-05-24 17:35:39.469 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.6004ms +2024-05-24 17:35:39.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.6754ms +2024-05-24 17:35:39.551 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.6088ms +2024-05-24 17:35:39.721 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.3597ms +2024-05-24 17:35:39.760 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:35:39.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 436.991ms +2024-05-24 17:36:16.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:36:16.798 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:36:16.800 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:36:16.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:36:16.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.801 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:36:16.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:36:16.802 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:36:16.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:36:16.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.1237ms +2024-05-24 17:36:16.889 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.3834ms +2024-05-24 17:36:16.931 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 134.7944ms +2024-05-24 17:36:16.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.0122ms +2024-05-24 17:36:16.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.6426ms +2024-05-24 17:36:16.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:16.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.2065ms +2024-05-24 17:36:17.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:17.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.9235ms +2024-05-24 17:36:17.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:17.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 383.7682ms +2024-05-24 17:36:51.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:36:51.419 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:51.565 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:51.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.5546ms +2024-05-24 17:36:55.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:36:55.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:36:55.567 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:36:55.569 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.567 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:36:55.569 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.569 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:36:55.570 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:36:55.571 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:36:55.572 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.6599ms +2024-05-24 17:36:55.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.7718ms +2024-05-24 17:36:55.703 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.9553ms +2024-05-24 17:36:55.704 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.6289ms +2024-05-24 17:36:55.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.0242ms +2024-05-24 17:36:55.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.3118ms +2024-05-24 17:36:55.791 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.268ms +2024-05-24 17:36:55.999 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:55.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 433.5415ms +2024-05-24 17:36:56.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:36:56.901 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:57.038 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:57.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.8058ms +2024-05-24 17:36:58.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:36:58.821 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:36:58.824 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:36:58.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:36:58.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:36:58.829 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.829 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.829 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:36:58.830 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:36:58.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:36:58.832 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.908 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.2005ms +2024-05-24 17:36:58.915 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6364ms +2024-05-24 17:36:58.961 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 134.2917ms +2024-05-24 17:36:58.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.2084ms +2024-05-24 17:36:58.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.2938ms +2024-05-24 17:36:58.969 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:58.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3132ms +2024-05-24 17:36:59.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:59.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.0423ms +2024-05-24 17:36:59.224 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:36:59.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.8488ms +2024-05-24 17:40:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:40:00. +2024-05-24 17:41:50.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:41:50.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:51.020 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:51.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.4763ms +2024-05-24 17:41:52.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:41:52.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:41:52.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:41:52.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:41:52.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:41:52.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:41:52.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.735 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:41:52.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:41:52.736 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.736 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.812 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 82.9865ms +2024-05-24 17:41:52.817 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.0169ms +2024-05-24 17:41:52.871 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.6253ms +2024-05-24 17:41:52.873 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.4889ms +2024-05-24 17:41:52.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.877 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.6557ms +2024-05-24 17:41:52.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.2184ms +2024-05-24 17:41:52.958 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:52.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.7917ms +2024-05-24 17:41:53.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:53.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.0715ms +2024-05-24 17:41:54.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:41:54.442 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:54.526 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:54.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.2605ms +2024-05-24 17:41:57.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:41:57.460 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:41:57.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:41:57.461 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.461 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:41:57.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:41:57.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:41:57.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:41:57.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:41:57.462 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.463 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.463 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.551 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.2068ms +2024-05-24 17:41:57.552 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.7726ms +2024-05-24 17:41:57.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.5558ms +2024-05-24 17:41:57.611 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.611 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.833ms +2024-05-24 17:41:57.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.0241ms +2024-05-24 17:41:57.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.5166ms +2024-05-24 17:41:57.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.1794ms +2024-05-24 17:41:57.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:57.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.6666ms +2024-05-24 17:41:58.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:41:58.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:58.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:41:58.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.9499ms +2024-05-24 17:42:07.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 17:42:07.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 17:42:07.464 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 17:42:07.465 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 17:42:07.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 17:42:07.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 17:42:07.468 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.467 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 17:42:07.469 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 17:42:07.470 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.554 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.7507ms +2024-05-24 17:42:07.556 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.9533ms +2024-05-24 17:42:07.605 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 137.4931ms +2024-05-24 17:42:07.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.9549ms +2024-05-24 17:42:07.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.2806ms +2024-05-24 17:42:07.615 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.4854ms +2024-05-24 17:42:07.699 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 231.8963ms +2024-05-24 17:42:07.848 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 17:42:07.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 385.1729ms +2024-05-24 17:50:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 15:50:00. +2024-05-24 18:00:06.023 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:00:00. +2024-05-24 18:10:06.025 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:10:05. +2024-05-24 18:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:20:00. +2024-05-24 18:24:18.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:24:18.184 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:18.321 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:18.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.9277ms +2024-05-24 18:24:20.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:24:20.382 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:24:20.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:24:20.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:24:20.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:24:20.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:24:20.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:24:20.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:24:20.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:24:20.455 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 376.967ms +2024-05-24 18:24:20.825 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 438.2284ms +2024-05-24 18:24:20.841 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 386.448ms +2024-05-24 18:24:20.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 565.8922ms +2024-05-24 18:24:20.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:20.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 599.5553ms +2024-05-24 18:24:21.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:21.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 618.8438ms +2024-05-24 18:24:21.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:21.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 643.9259ms +2024-05-24 18:24:21.042 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:21.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 653.2731ms +2024-05-24 18:24:21.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:21.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 743.9819ms +2024-05-24 18:24:22.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:24:22.936 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:24:22.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.938 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:24:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:24:22.940 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.940 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:22.939 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.027 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6414ms +2024-05-24 18:24:23.029 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.3009ms +2024-05-24 18:24:23.081 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.7571ms +2024-05-24 18:24:23.082 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 147.8057ms +2024-05-24 18:24:23.087 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.1951ms +2024-05-24 18:24:23.262 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 325.6027ms +2024-05-24 18:24:23.346 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 409.5236ms +2024-05-24 18:24:23.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:24:23.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 447.9161ms +2024-05-24 18:26:26.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:26:26.271 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.356 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.4783ms +2024-05-24 18:26:26.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:26:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:26:26.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:26:26.891 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:26:26.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:26:26.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:26:26.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:26:26.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:26:26.895 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.977 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.7589ms +2024-05-24 18:26:26.979 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:26.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.4053ms +2024-05-24 18:26:27.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.7845ms +2024-05-24 18:26:27.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.1499ms +2024-05-24 18:26:27.036 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.6996ms +2024-05-24 18:26:27.037 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.5917ms +2024-05-24 18:26:27.119 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.3618ms +2024-05-24 18:26:27.300 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:27.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 412.8339ms +2024-05-24 18:26:42.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:26:42.079 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.164 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.1112ms +2024-05-24 18:26:42.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:26:42.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:26:42.795 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:26:42.797 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:26:42.799 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:26:42.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:26:42.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.803 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:26:42.804 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:26:42.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.883 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.8404ms +2024-05-24 18:26:42.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.7941ms +2024-05-24 18:26:42.933 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.0413ms +2024-05-24 18:26:42.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.1713ms +2024-05-24 18:26:42.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.9998ms +2024-05-24 18:26:42.944 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:42.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.9095ms +2024-05-24 18:26:43.027 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:43.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.9403ms +2024-05-24 18:26:43.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:26:43.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 419.4712ms +2024-05-24 18:28:33.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:28:33.903 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:33.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:33.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.5041ms +2024-05-24 18:28:35.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:28:35.106 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:28:35.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:28:35.108 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:28:35.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:28:35.110 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.110 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:28:35.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:28:35.110 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:28:35.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1312ms +2024-05-24 18:28:35.199 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6765ms +2024-05-24 18:28:35.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.2147ms +2024-05-24 18:28:35.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.9348ms +2024-05-24 18:28:35.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.4962ms +2024-05-24 18:28:35.256 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 158.2529ms +2024-05-24 18:28:35.333 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.8352ms +2024-05-24 18:28:35.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:35.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.539ms +2024-05-24 18:28:39.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:28:39.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:39.766 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:39.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 132.8648ms +2024-05-24 18:28:41.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:28:41.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:28:41.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:28:41.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:28:41.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.723 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:28:41.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:28:41.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:28:41.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:28:41.724 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.810 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.810 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.8436ms +2024-05-24 18:28:41.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.6941ms +2024-05-24 18:28:41.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.7034ms +2024-05-24 18:28:41.867 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.3661ms +2024-05-24 18:28:41.875 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.4198ms +2024-05-24 18:28:41.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.9467ms +2024-05-24 18:28:41.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:41.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.7624ms +2024-05-24 18:28:42.129 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:28:42.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.2629ms +2024-05-24 18:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:30:00. +2024-05-24 18:37:12.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:37:12.715 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:37:12.850 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:37:12.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.7233ms +2024-05-24 18:40:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:40:00. +2024-05-24 18:50:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 16:50:00. +2024-05-24 18:51:41.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:51:41.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:51:41.783 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:51:41.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.0748ms +2024-05-24 18:52:19.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:52:19.354 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:52:19.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:52:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.3253ms +2024-05-24 18:53:19.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:53:19.951 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:20.404 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:20.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 453.5906ms +2024-05-24 18:53:21.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:53:21.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:53:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:53:21.080 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:53:21.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:53:21.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:53:21.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:53:21.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:53:21.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.081 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 194.6452ms +2024-05-24 18:53:21.589 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 514.3696ms +2024-05-24 18:53:21.870 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 789.9316ms +2024-05-24 18:53:21.949 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:21.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 871.7075ms +2024-05-24 18:53:22.005 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:22.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 924.0033ms +2024-05-24 18:53:22.086 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:22.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 1005.2575ms +2024-05-24 18:53:26.653 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:26.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 5575.9957ms +2024-05-24 18:53:26.769 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:53:26.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 5688.7524ms +2024-05-24 18:56:11.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:56:11.611 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:11.708 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:11.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 97.4957ms +2024-05-24 18:56:14.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:56:14.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.9724ms +2024-05-24 18:56:14.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 18:56:14.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 18:56:14.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 18:56:14.817 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 18:56:14.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 18:56:14.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 18:56:14.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 18:56:14.818 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.818 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 18:56:14.818 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.818 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.819 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.954 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:14.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.8455ms +2024-05-24 18:56:15.088 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 270.9105ms +2024-05-24 18:56:15.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 285.5718ms +2024-05-24 18:56:15.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 294.1981ms +2024-05-24 18:56:15.176 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 358.2643ms +2024-05-24 18:56:15.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 379.3372ms +2024-05-24 18:56:15.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 438.0262ms +2024-05-24 18:56:15.356 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 18:56:15.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 538.4092ms +2024-05-24 19:00:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:00:00. +2024-05-24 19:10:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:10:00. +2024-05-24 19:12:29.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:12:29.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:12:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:12:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:12:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:12:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:12:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:12:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:12:29.726 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.726 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 412.8257ms +2024-05-24 19:12:30.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 487.164ms +2024-05-24 19:12:30.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 488.6241ms +2024-05-24 19:12:30.219 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 495.0482ms +2024-05-24 19:12:30.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 568.2147ms +2024-05-24 19:12:30.326 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 601.3343ms +2024-05-24 19:12:30.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 658.9887ms +2024-05-24 19:12:30.463 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:30.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 738.9883ms +2024-05-24 19:12:32.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:12:32.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:32.999 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:12:32.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.4532ms +2024-05-24 19:20:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:20:00. +2024-05-24 19:30:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:30:00. +2024-05-24 19:34:23.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:34:23.781 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:23.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:23.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.0101ms +2024-05-24 19:34:29.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:34:29.320 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:34:29.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:34:29.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:34:29.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:34:29.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:34:29.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.323 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:34:29.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:34:29.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.706 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 384.1118ms +2024-05-24 19:34:29.712 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 394.0025ms +2024-05-24 19:34:29.851 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 529.7817ms +2024-05-24 19:34:29.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 535.6599ms +2024-05-24 19:34:29.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 541.5675ms +2024-05-24 19:34:29.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:29.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 575.3596ms +2024-05-24 19:34:30.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:30.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 696.1941ms +2024-05-24 19:34:30.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:30.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 702.5485ms +2024-05-24 19:34:35.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:34:35.033 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:35.112 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:35.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 79.8306ms +2024-05-24 19:34:53.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:34:53.876 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:34:53.878 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:34:53.880 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:34:53.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:34:53.881 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.881 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:34:53.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:34:53.883 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:34:53.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.973 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:53.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.7741ms +2024-05-24 19:34:54.009 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 133.1023ms +2024-05-24 19:34:54.020 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.3241ms +2024-05-24 19:34:54.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.5923ms +2024-05-24 19:34:54.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 235.2094ms +2024-05-24 19:34:54.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 268.0221ms +2024-05-24 19:34:54.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 316.9165ms +2024-05-24 19:34:54.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:34:54.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 442.4779ms +2024-05-24 19:37:07.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:37:07.850 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:07.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:07.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.3473ms +2024-05-24 19:37:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:37:12.626 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:37:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:37:12.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:37:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:37:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:37:12.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.632 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:37:12.632 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:37:12.633 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.631 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.709 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 82.0507ms +2024-05-24 19:37:12.719 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.8162ms +2024-05-24 19:37:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.7381ms +2024-05-24 19:37:12.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.6409ms +2024-05-24 19:37:12.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.5792ms +2024-05-24 19:37:12.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.2117ms +2024-05-24 19:37:12.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:12.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 233.7551ms +2024-05-24 19:37:13.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:37:13.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 427.7807ms +2024-05-24 19:38:05.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:38:05.384 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:38:05.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:38:05.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:38:05.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:38:05.391 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:38:05.392 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:38:05.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:38:05.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.2582ms +2024-05-24 19:38:05.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.6143ms +2024-05-24 19:38:05.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 133.0831ms +2024-05-24 19:38:05.534 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.0985ms +2024-05-24 19:38:05.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.3794ms +2024-05-24 19:38:05.551 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 164.878ms +2024-05-24 19:38:05.617 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.1896ms +2024-05-24 19:38:05.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:38:05.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 403.2373ms +2024-05-24 19:40:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:40:00. +2024-05-24 19:40:23.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:40:23.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:40:23.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:40:23.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:40:23.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:40:23.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:40:23.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:40:23.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:40:23.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.479 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.6705ms +2024-05-24 19:40:23.481 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.4337ms +2024-05-24 19:40:23.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.2487ms +2024-05-24 19:40:23.533 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.1045ms +2024-05-24 19:40:23.534 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 155.7805ms +2024-05-24 19:40:23.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.5991ms +2024-05-24 19:40:23.610 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.6814ms +2024-05-24 19:40:23.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:23.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.9125ms +2024-05-24 19:40:28.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:40:28.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:28.523 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:28.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.0681ms +2024-05-24 19:40:33.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:40:33.119 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:33.200 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:33.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.9554ms +2024-05-24 19:40:36.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:40:36.544 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:36.625 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:36.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.1342ms +2024-05-24 19:40:37.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:40:37.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:40:37.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:40:37.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.655 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:40:37.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:40:37.656 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.656 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:40:37.657 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:40:37.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:40:37.658 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.658 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.744 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.5267ms +2024-05-24 19:40:37.749 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.2487ms +2024-05-24 19:40:37.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.4626ms +2024-05-24 19:40:37.798 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.2783ms +2024-05-24 19:40:37.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.804 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.6393ms +2024-05-24 19:40:37.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.9898ms +2024-05-24 19:40:37.876 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:37.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.6079ms +2024-05-24 19:40:38.066 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:40:38.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 410.6001ms +2024-05-24 19:43:25.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:43:25.965 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:26.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:26.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.5282ms +2024-05-24 19:43:29.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:43:29.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:43:29.165 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.165 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:43:29.166 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:43:29.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:43:29.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:43:29.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:43:29.171 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.171 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.171 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:43:29.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.258 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.5417ms +2024-05-24 19:43:29.321 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 157.3877ms +2024-05-24 19:43:29.333 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 163.2809ms +2024-05-24 19:43:29.334 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 170.5601ms +2024-05-24 19:43:29.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 171.6806ms +2024-05-24 19:43:29.394 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.7246ms +2024-05-24 19:43:29.571 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.1785ms +2024-05-24 19:43:29.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:43:29.615 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.662 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 493.4966ms +2024-05-24 19:43:29.703 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:43:29.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.6636ms +2024-05-24 19:50:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 17:50:00. +2024-05-24 19:53:15.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:53:15.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:16.127 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:16.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.2443ms +2024-05-24 19:53:55.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:53:55.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:55.957 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:55.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.402ms +2024-05-24 19:53:59.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:53:59.138 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:59.225 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:53:59.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.1093ms +2024-05-24 19:54:27.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 19:54:27.220 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 19:54:27.226 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:54:27.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 19:54:27.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:54:27.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 19:54:27.239 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 19:54:27.240 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 19:54:27.241 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 183.3021ms +2024-05-24 19:54:27.506 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 266.8411ms +2024-05-24 19:54:27.758 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 527.496ms +2024-05-24 19:54:27.767 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 536.1666ms +2024-05-24 19:54:27.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 612.0127ms +2024-05-24 19:54:27.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:27.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 762.1306ms +2024-05-24 19:54:28.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:28.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 811.3533ms +2024-05-24 19:54:28.112 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:28.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 892.8826ms +2024-05-24 19:54:29.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:54:29.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:29.958 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:54:29.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 191.9662ms +2024-05-24 19:57:25.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 19:57:25.634 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:57:26.023 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:57:26.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 391.088ms +2024-05-24 19:57:27.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:57:27.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:57:27.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:57:27.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.4849ms +2024-05-24 19:58:03.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 19:58:03.393 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:58:03.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 19:58:03.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 111.758ms +2024-05-24 20:00:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:00:00. +2024-05-24 20:00:19.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:00:19.433 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:00:19.571 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:00:19.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.2449ms +2024-05-24 20:00:26.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:00:26.820 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:00:26.956 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:00:26.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.4396ms +2024-05-24 20:02:23.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:02:23.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:02:23.855 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:02:23.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.8265ms +2024-05-24 20:06:04.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 20:06:04.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:05.037 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:05.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.9774ms +2024-05-24 20:06:06.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 20:06:06.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 20:06:06.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 20:06:06.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:06:06.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 20:06:06.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 20:06:06.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 20:06:06.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 20:06:06.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.716 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.424ms +2024-05-24 20:06:06.987 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:06.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 282.1179ms +2024-05-24 20:06:07.069 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:07.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 364.5101ms +2024-05-24 20:06:07.157 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:07.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 446.9924ms +2024-05-24 20:06:07.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:07.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 620.0326ms +2024-05-24 20:06:07.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:07.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 766.4138ms +2024-05-24 20:06:08.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:08.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 1392.7709ms +2024-05-24 20:06:08.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:08.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1796.7154ms +2024-05-24 20:06:21.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:06:21.572 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:21.725 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:06:21.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 159.2897ms +2024-05-24 20:07:11.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 20:07:11.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 20:07:11.299 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 20:07:11.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 20:07:11.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 20:07:11.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 20:07:11.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 20:07:11.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:07:11.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.539 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 233.9299ms +2024-05-24 20:07:11.557 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 259.6522ms +2024-05-24 20:07:11.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 329.4692ms +2024-05-24 20:07:11.639 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 334.0334ms +2024-05-24 20:07:11.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 20:07:11.642 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.727 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 423.9238ms +2024-05-24 20:07:11.729 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.1002ms +2024-05-24 20:07:11.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:11.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 450.5904ms +2024-05-24 20:07:12.182 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:12.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 880.832ms +2024-05-24 20:07:12.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:12.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 926.3545ms +2024-05-24 20:07:51.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:07:51.854 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:51.993 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:07:51.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.7216ms +2024-05-24 20:10:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:10:00. +2024-05-24 20:15:13.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:15:13.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:15:13.840 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:15:13.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.7956ms +2024-05-24 20:19:34.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:19:34.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:19:34.475 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:19:34.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.2924ms +2024-05-24 20:20:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:20:00. +2024-05-24 20:23:17.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:23:17.351 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:23:17.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:23:17.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 169.7354ms +2024-05-24 20:26:11.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:26:11.008 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:26:11.152 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:26:11.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.9035ms +2024-05-24 20:30:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:30:00. +2024-05-24 20:30:03.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:30:03.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:30:04.028 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:30:04.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.8495ms +2024-05-24 20:32:05.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:32:05.109 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:05.250 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:05.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.4811ms +2024-05-24 20:32:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:32:16.550 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:16.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:16.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.0527ms +2024-05-24 20:32:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 20:32:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 20:32:20.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 20:32:20.732 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:32:20.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 20:32:20.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 20:32:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 20:32:20.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 20:32:20.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.734 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.927 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:20.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 194.6623ms +2024-05-24 20:32:21.121 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 387.5378ms +2024-05-24 20:32:21.209 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 476.7739ms +2024-05-24 20:32:21.266 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 533.9713ms +2024-05-24 20:32:21.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 542.0677ms +2024-05-24 20:32:21.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 571.7223ms +2024-05-24 20:32:21.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 637.2331ms +2024-05-24 20:32:21.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:32:21.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 767.1024ms +2024-05-24 20:35:36.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 20:35:36.360 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:35:36.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 20:35:36.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.1843ms +2024-05-24 20:40:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:40:00. +2024-05-24 20:50:00.055 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 18:50:00. +2024-05-24 21:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:00:00. +2024-05-24 21:09:44.447 +02:00 [WRN] As of ""2024-05-24T19:09:40.4195824+00:00"", the heartbeat has been running for ""00:00:02.9369767"" which is longer than ""00:00:01"". This could be caused by thread pool starvation. +2024-05-24 21:10:01.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:10:00. +2024-05-24 21:20:01.057 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:20:01. +2024-05-24 21:30:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:30:00. +2024-05-24 21:40:00.413 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:40:00. +2024-05-24 21:50:00.407 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 19:50:00. +2024-05-24 22:00:00.061 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:00:00. +2024-05-24 22:02:15.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:02:15.130 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:15.278 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:15.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.1362ms +2024-05-24 22:02:18.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:02:18.035 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:02:18.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:02:18.051 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:02:18.054 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:02:18.055 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:02:18.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:02:18.058 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.059 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:02:18.064 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:02:18.369 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.3155ms +2024-05-24 22:02:18.513 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 475.6939ms +2024-05-24 22:02:18.529 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 466.2246ms +2024-05-24 22:02:18.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 611.9875ms +2024-05-24 22:02:18.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 668.4058ms +2024-05-24 22:02:18.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 679.6917ms +2024-05-24 22:02:18.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 696.7605ms +2024-05-24 22:02:18.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:18.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 868.8324ms +2024-05-24 22:02:19.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:02:19.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 1530.2212ms +2024-05-24 22:10:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:10:00. +2024-05-24 22:10:32.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:10:32.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:32.254 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:32.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3693ms +2024-05-24 22:10:45.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:10:45.824 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:10:45.828 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:10:45.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:10:45.830 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.830 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:10:45.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:10:45.830 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:10:45.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:10:45.831 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.833 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.911 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.3769ms +2024-05-24 22:10:45.943 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.0128ms +2024-05-24 22:10:45.980 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:45.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.3801ms +2024-05-24 22:10:46.031 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 200.6838ms +2024-05-24 22:10:46.052 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.9595ms +2024-05-24 22:10:46.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.0401ms +2024-05-24 22:10:46.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 556.2744ms +2024-05-24 22:10:46.502 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 673.5657ms +2024-05-24 22:10:46.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:10:46.522 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.610 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:10:46.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.7544ms +2024-05-24 22:11:25.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:11:25.139 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:11:25.338 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:11:25.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 200.6619ms +2024-05-24 22:12:38.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:12:38.859 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:12:38.996 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:12:38.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.2941ms +2024-05-24 22:12:43.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:12:43.076 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:12:43.216 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:12:43.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.8541ms +2024-05-24 22:14:47.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:14:47.864 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:14:48.008 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:14:48.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.2694ms +2024-05-24 22:19:41.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:19:41.560 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:41.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:41.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.2439ms +2024-05-24 22:19:45.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:19:45.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:19:45.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:19:45.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:19:45.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:19:45.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:19:45.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:19:45.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:19:45.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.4544ms +2024-05-24 22:19:45.390 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.9021ms +2024-05-24 22:19:45.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.3984ms +2024-05-24 22:19:45.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.2682ms +2024-05-24 22:19:45.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.199ms +2024-05-24 22:19:45.520 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.205ms +2024-05-24 22:19:45.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:19:45.676 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.721 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 426.7153ms +2024-05-24 22:19:45.757 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:45.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.5386ms +2024-05-24 22:19:51.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:51.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 5709.7058ms +2024-05-24 22:19:51.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:19:51.904 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:52.045 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:19:52.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.3309ms +2024-05-24 22:20:00.056 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:20:00. +2024-05-24 22:21:47.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:21:47.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:21:47.666 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:21:47.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.1285ms +2024-05-24 22:22:27.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:22:27.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:27.391 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:27.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.0597ms +2024-05-24 22:22:29.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:22:29.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:22:29.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:22:29.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:22:29.253 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:22:29.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:22:29.254 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.254 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:22:29.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:22:29.251 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.255 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.256 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.339 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.9713ms +2024-05-24 22:22:29.344 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.196ms +2024-05-24 22:22:29.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.8212ms +2024-05-24 22:22:29.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.063ms +2024-05-24 22:22:29.396 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.396 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.9933ms +2024-05-24 22:22:29.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.6865ms +2024-05-24 22:22:29.473 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.2003ms +2024-05-24 22:22:29.646 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:29.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.1741ms +2024-05-24 22:22:33.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:22:33.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:33.431 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:33.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.8132ms +2024-05-24 22:22:35.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:22:35.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:22:35.987 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:22:35.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:22:35.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.989 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:22:35.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:22:35.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:22:35.990 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:35.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:22:35.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.075 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.0543ms +2024-05-24 22:22:36.077 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.8055ms +2024-05-24 22:22:36.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.3156ms +2024-05-24 22:22:36.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.1647ms +2024-05-24 22:22:36.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.3557ms +2024-05-24 22:22:36.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.4647ms +2024-05-24 22:22:36.211 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.2405ms +2024-05-24 22:22:36.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:22:36.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 442.113ms +2024-05-24 22:23:22.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:23:22.757 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:22.916 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:22.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.1376ms +2024-05-24 22:23:41.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:23:41.814 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:41.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:41.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.802ms +2024-05-24 22:23:42.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:23:42.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:23:42.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:23:42.437 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:23:42.437 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.437 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:23:42.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:23:42.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:23:42.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:23:42.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.439 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.527 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.1201ms +2024-05-24 22:23:42.591 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.6322ms +2024-05-24 22:23:42.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 155.0232ms +2024-05-24 22:23:42.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.9266ms +2024-05-24 22:23:42.623 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 185.1706ms +2024-05-24 22:23:42.631 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 192.8575ms +2024-05-24 22:23:42.682 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 245.0382ms +2024-05-24 22:23:42.870 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:23:42.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 434.4928ms +2024-05-24 22:27:55.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:27:55.662 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:27:55.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:27:55.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.9839ms +2024-05-24 22:30:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:30:00. +2024-05-24 22:30:01.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:30:01.158 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:30:01.303 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:30:01.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.0703ms +2024-05-24 22:31:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:31:39.521 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:39.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:39.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.55ms +2024-05-24 22:31:42.359 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 22:31:42.359 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 22:31:42.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 22:31:42.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 22:31:42.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 22:31:42.386 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 22:31:42.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 22:31:42.387 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.388 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.389 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 22:31:42.390 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.473 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1457ms +2024-05-24 22:31:42.476 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.3272ms +2024-05-24 22:31:42.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 144.9527ms +2024-05-24 22:31:42.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.9044ms +2024-05-24 22:31:42.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.4958ms +2024-05-24 22:31:42.541 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 155.2003ms +2024-05-24 22:31:42.611 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.5746ms +2024-05-24 22:31:42.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 22:31:42.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 415.319ms +2024-05-24 22:40:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:40:00. +2024-05-24 22:50:00.456 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 20:50:00. +2024-05-24 23:00:00.475 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:00:00. +2024-05-24 23:10:00.086 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:10:00. +2024-05-24 23:20:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:20:00. +2024-05-24 23:21:30.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:30.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:21:31.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:21:31.123 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:21:31.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:21:31.123 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.125 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:21:31.125 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:21:31.126 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.124 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:31.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:21:31.127 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.126 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 411.9409ms +2024-05-24 23:21:31.472 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 350.5233ms +2024-05-24 23:21:31.547 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 424.7722ms +2024-05-24 23:21:31.578 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 453.0344ms +2024-05-24 23:21:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 454.2344ms +2024-05-24 23:21:31.680 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 555.6333ms +2024-05-24 23:21:31.753 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 637.1748ms +2024-05-24 23:21:31.782 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 662.826ms +2024-05-24 23:21:31.886 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:31.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 765.8065ms +2024-05-24 23:21:34.688 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:34.689 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:34.770 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:34.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.3455ms +2024-05-24 23:21:35.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:21:35.890 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:21:35.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:21:35.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:21:35.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:21:35.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.892 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.893 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.9139ms +2024-05-24 23:21:35.985 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:35.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.3137ms +2024-05-24 23:21:36.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 133.4016ms +2024-05-24 23:21:36.038 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.4089ms +2024-05-24 23:21:36.040 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.2405ms +2024-05-24 23:21:36.114 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.2151ms +2024-05-24 23:21:36.221 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 329.4713ms +2024-05-24 23:21:36.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:36.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 573.4731ms +2024-05-24 23:21:50.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:21:50.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:21:50.649 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.649 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:21:50.649 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:50.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:21:50.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:21:50.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:21:50.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:21:50.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.650 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.651 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.740 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2564ms +2024-05-24 23:21:50.743 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.7299ms +2024-05-24 23:21:50.793 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.6284ms +2024-05-24 23:21:50.795 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.833ms +2024-05-24 23:21:50.798 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.6147ms +2024-05-24 23:21:50.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:50.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.5069ms +2024-05-24 23:21:51.039 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:51.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.5092ms +2024-05-24 23:21:51.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:51.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 412.3436ms +2024-05-24 23:21:51.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:21:51.369 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:51.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:51.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.7493ms +2024-05-24 23:21:53.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:21:53.248 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:21:53.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:21:53.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.252 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.390 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.390 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.0675ms +2024-05-24 23:21:53.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.0063ms +2024-05-24 23:21:53.530 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:21:53.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 280.3409ms +2024-05-24 23:22:17.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:22:17.521 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:22:17.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:22:17.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.0067ms +2024-05-24 23:22:35.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:22:35.155 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:22:35.298 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:22:35.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.4216ms +2024-05-24 23:23:00.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:23:00.244 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:00.331 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:00.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.9357ms +2024-05-24 23:23:00.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:23:00.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:00.443 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:00.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 110.2176ms +2024-05-24 23:23:06.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:23:06.276 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.408 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 132.7687ms +2024-05-24 23:23:06.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:23:06.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:23:06.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:23:06.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:23:06.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:23:06.968 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:23:06.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.966 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:23:06.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:23:06.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:06.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.4876ms +2024-05-24 23:23:07.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 102.2731ms +2024-05-24 23:23:07.101 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.8055ms +2024-05-24 23:23:07.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 146.5575ms +2024-05-24 23:23:07.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0854ms +2024-05-24 23:23:07.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.6988ms +2024-05-24 23:23:07.184 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.7952ms +2024-05-24 23:23:07.347 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:07.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 382.2686ms +2024-05-24 23:23:48.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:23:48.584 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:48.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:48.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.8096ms +2024-05-24 23:23:51.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:23:51.245 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:51.509 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:23:51.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 265.7957ms +2024-05-24 23:24:40.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:24:40.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:24:40.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:24:40.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:24:40.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:24:40.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.4207ms +2024-05-24 23:24:40.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:24:40.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.1771ms +2024-05-24 23:25:10.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:25:10.268 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:10.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:10.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 154.2307ms +2024-05-24 23:25:15.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:25:15.988 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:16.131 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:16.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.6969ms +2024-05-24 23:25:16.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:25:16.134 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:16.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:16.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 195.0431ms +2024-05-24 23:25:17.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:25:17.473 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:25:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:25:17.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:25:17.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:25:17.499 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:25:17.502 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:25:17.503 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.497 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:25:17.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.601 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 99.1571ms +2024-05-24 23:25:17.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 104.4746ms +2024-05-24 23:25:17.623 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.8721ms +2024-05-24 23:25:17.657 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.9629ms +2024-05-24 23:25:17.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.8359ms +2024-05-24 23:25:17.661 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 165.4301ms +2024-05-24 23:25:17.711 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.2802ms +2024-05-24 23:25:17.896 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:17.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 401.4054ms +2024-05-24 23:25:25.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:25:25.814 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:25.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:25.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.6956ms +2024-05-24 23:25:25.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:25:25.901 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:26.014 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:26.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 112.6663ms +2024-05-24 23:25:26.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:25:26.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:26.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:26.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 119.5193ms +2024-05-24 23:25:41.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:25:41.717 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:41.867 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:25:41.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.7857ms +2024-05-24 23:26:03.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:26:03.760 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:03.901 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:03.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.6447ms +2024-05-24 23:26:17.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:26:17.568 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:17.710 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:17.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.107ms +2024-05-24 23:26:17.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:26:17.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:17.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:17.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 187.4836ms +2024-05-24 23:26:17.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:26:17.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:18.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:18.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 111.3726ms +2024-05-24 23:26:20.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:26:20.722 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:20.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:20.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.7801ms +2024-05-24 23:26:20.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:26:20.873 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:21.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:21.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 196.8331ms +2024-05-24 23:26:21.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:26:21.084 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:21.190 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:21.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 106.9236ms +2024-05-24 23:26:23.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:26:23.487 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:26:23.488 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:26:23.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:26:23.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:26:23.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:26:23.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.490 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.489 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:26:23.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:26:23.491 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.491 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1648ms +2024-05-24 23:26:23.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.7127ms +2024-05-24 23:26:23.630 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.2747ms +2024-05-24 23:26:23.630 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.5415ms +2024-05-24 23:26:23.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.5474ms +2024-05-24 23:26:23.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.2369ms +2024-05-24 23:26:23.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.3561ms +2024-05-24 23:26:23.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:23.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 375.8419ms +2024-05-24 23:26:29.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:26:29.921 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:30.005 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:30.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.2315ms +2024-05-24 23:26:37.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:26:37.194 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:37.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:26:37.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 100.155ms +2024-05-24 23:27:09.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:27:09.052 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:09.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:09.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.856ms +2024-05-24 23:27:13.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:27:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:13.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:13.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.6237ms +2024-05-24 23:27:15.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:27:15.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:27:15.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:27:15.191 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.193 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:27:15.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:27:15.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:27:15.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.199 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:27:15.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:27:15.225 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.224 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.5836ms +2024-05-24 23:27:15.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.5331ms +2024-05-24 23:27:15.327 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 137.4479ms +2024-05-24 23:27:15.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.345 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.679ms +2024-05-24 23:27:15.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.3182ms +2024-05-24 23:27:15.371 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.5144ms +2024-05-24 23:27:15.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.4765ms +2024-05-24 23:27:15.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 427.3168ms +2024-05-24 23:27:15.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:27:15.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.922 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:15.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 118.3164ms +2024-05-24 23:27:15.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:27:15.934 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:16.144 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:16.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 210.5709ms +2024-05-24 23:27:16.148 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:27:16.148 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:16.263 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:16.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 115.616ms +2024-05-24 23:27:55.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:27:55.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:55.100 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:55.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.4292ms +2024-05-24 23:27:56.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:27:56.417 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:56.500 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:27:56.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.2326ms +2024-05-24 23:28:36.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:28:36.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:28:36.439 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:28:36.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 135.9224ms +2024-05-24 23:30:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:30:00. +2024-05-24 23:32:13.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:13.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.956ms +2024-05-24 23:32:14.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:14.075 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.294 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 219.8081ms +2024-05-24 23:32:14.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:14.297 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:14.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 105.361ms +2024-05-24 23:32:15.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:32:15.758 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:32:15.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:32:15.760 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.760 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:15.760 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:32:15.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:15.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:32:15.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:15.762 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.842 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.0632ms +2024-05-24 23:32:15.849 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.235ms +2024-05-24 23:32:15.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.485ms +2024-05-24 23:32:15.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.5577ms +2024-05-24 23:32:15.904 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.4272ms +2024-05-24 23:32:15.905 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.2244ms +2024-05-24 23:32:15.982 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:15.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.6211ms +2024-05-24 23:32:16.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:16.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 437.7656ms +2024-05-24 23:32:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:16.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:16.682 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:16.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 119.5348ms +2024-05-24 23:32:16.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:16.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:16.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:16.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 202.0926ms +2024-05-24 23:32:16.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:16.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.005 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 109.8307ms +2024-05-24 23:32:17.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:32:17.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:32:17.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:17.690 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.690 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:32:17.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:32:17.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:17.692 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:32:17.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:17.691 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.693 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.692 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.3366ms +2024-05-24 23:32:17.786 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.0299ms +2024-05-24 23:32:17.837 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.2878ms +2024-05-24 23:32:17.840 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.9576ms +2024-05-24 23:32:17.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 151.5794ms +2024-05-24 23:32:17.843 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.1103ms +2024-05-24 23:32:17.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:17.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.4664ms +2024-05-24 23:32:18.101 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:18.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 412.2668ms +2024-05-24 23:32:18.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:32:18.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:19.188 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:19.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 382.2147ms +2024-05-24 23:32:26.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:32:26.483 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:26.572 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:26.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5803ms +2024-05-24 23:32:31.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:32:31.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:31.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:32:31.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:32:31.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.847 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:32:31.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:31.849 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.849 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.933 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.2289ms +2024-05-24 23:32:31.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.8712ms +2024-05-24 23:32:31.986 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.7664ms +2024-05-24 23:32:31.988 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.5729ms +2024-05-24 23:32:31.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:31.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.494ms +2024-05-24 23:32:32.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 160.6528ms +2024-05-24 23:32:32.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.9737ms +2024-05-24 23:32:32.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:32.238 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.267 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 420.5787ms +2024-05-24 23:32:32.353 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 115.1528ms +2024-05-24 23:32:32.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:32:32.356 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.548 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 193.0746ms +2024-05-24 23:32:32.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:32:32.553 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.662 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:32.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 109.6875ms +2024-05-24 23:32:36.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:32:36.371 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:36.508 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:32:36.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.9436ms +2024-05-24 23:33:20.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:33:20.082 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.226 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 144.0266ms +2024-05-24 23:33:20.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:33:20.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.431 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 199.9221ms +2024-05-24 23:33:20.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:33:20.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:20.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 123.12ms +2024-05-24 23:33:48.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:33:48.360 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:33:48.361 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:33:48.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:33:48.362 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:33:48.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:33:48.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:33:48.363 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:33:48.363 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.363 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.363 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.363 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.4925ms +2024-05-24 23:33:48.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.107ms +2024-05-24 23:33:48.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.2525ms +2024-05-24 23:33:48.504 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.4814ms +2024-05-24 23:33:48.513 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 150.9589ms +2024-05-24 23:33:48.514 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.7045ms +2024-05-24 23:33:48.583 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.1867ms +2024-05-24 23:33:48.748 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:33:48.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.11ms +2024-05-24 23:40:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:40:00. +2024-05-24 23:49:12.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:49:12.747 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:49:12.845 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:49:12.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 102.7064ms +2024-05-24 23:49:42.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:49:42.031 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:49:42.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:49:42.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.0096ms +2024-05-24 23:50:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 21:50:00. +2024-05-24 23:52:07.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:52:07.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:52:07.272 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:52:07.272 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.273 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:52:07.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:52:07.274 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.274 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:52:07.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:52:07.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:52:07.275 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.275 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.275 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.818 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 545.4563ms +2024-05-24 23:52:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 588.4334ms +2024-05-24 23:52:07.928 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 654.6334ms +2024-05-24 23:52:07.941 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 668.5227ms +2024-05-24 23:52:07.945 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:07.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 672.398ms +2024-05-24 23:52:08.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:08.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 856.5807ms +2024-05-24 23:52:08.159 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:08.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 885.3404ms +2024-05-24 23:52:08.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:52:08.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 1043.0897ms +2024-05-24 23:56:40.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:56:40.229 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:56:40.231 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:56:40.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:56:40.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:56:40.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:56:40.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:56:40.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:56:40.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.1131ms +2024-05-24 23:56:40.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.5141ms +2024-05-24 23:56:40.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.3906ms +2024-05-24 23:56:40.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.2545ms +2024-05-24 23:56:40.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.4639ms +2024-05-24 23:56:40.643 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 414.7455ms +2024-05-24 23:56:40.737 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 502.1552ms +2024-05-24 23:56:40.814 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:40.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 579.3068ms +2024-05-24 23:56:40.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:56:40.856 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.242 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 386.7979ms +2024-05-24 23:56:41.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:56:41.247 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.441 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 195.2174ms +2024-05-24 23:56:41.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:56:41.444 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.555 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:56:41.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 111.0811ms +2024-05-24 23:57:11.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:57:11.963 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:12.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:12.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.4507ms +2024-05-24 23:57:21.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:57:21.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.329 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.2893ms +2024-05-24 23:57:21.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:57:21.332 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 187.0344ms +2024-05-24 23:57:21.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:57:21.524 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.632 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:21.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 109.0225ms +2024-05-24 23:57:49.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:57:49.535 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:57:49.535 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:57:49.537 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:57:49.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:57:49.542 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:57:49.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:57:49.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:57:49.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.621 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.6023ms +2024-05-24 23:57:49.629 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.8143ms +2024-05-24 23:57:49.670 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 135.7992ms +2024-05-24 23:57:49.672 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.6564ms +2024-05-24 23:57:49.677 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.5184ms +2024-05-24 23:57:49.691 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.4744ms +2024-05-24 23:57:49.766 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.8362ms +2024-05-24 23:57:49.960 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:49.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.3249ms +2024-05-24 23:57:49.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:57:49.991 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.103 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 112.7371ms +2024-05-24 23:57:50.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:57:50.106 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.297 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 190.8819ms +2024-05-24 23:57:50.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:57:50.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.413 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:50.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 114.1104ms +2024-05-24 23:57:57.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-24 23:57:57.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-24 23:57:57.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-24 23:57:57.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-24 23:57:57.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-24 23:57:57.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-24 23:57:57.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-24 23:57:57.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-24 23:57:57.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.380 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.2866ms +2024-05-24 23:57:57.382 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.2229ms +2024-05-24 23:57:57.426 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 134.8651ms +2024-05-24 23:57:57.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.6987ms +2024-05-24 23:57:57.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.4159ms +2024-05-24 23:57:57.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.3833ms +2024-05-24 23:57:57.516 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.9724ms +2024-05-24 23:57:57.700 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-24 23:57:57.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 410.05ms diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240525.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240525.txt new file mode 100644 index 000000000..2b46e438a --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/logs/logs20240525.txt @@ -0,0 +1,3089 @@ +2024-05-25 00:00:00.077 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:00:00. +2024-05-25 00:08:40.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:08:40.604 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:08:40.699 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:08:40.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 96.8179ms +2024-05-25 00:10:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:10:00. +2024-05-25 00:11:17.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:11:17.484 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.47ms +2024-05-25 00:11:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:11:17.638 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 195.4463ms +2024-05-25 00:11:17.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:11:17.839 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:17.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.1634ms +2024-05-25 00:11:23.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:11:23.902 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:24.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:24.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.6421ms +2024-05-25 00:11:24.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:11:24.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:24.240 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:24.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.0504ms +2024-05-25 00:11:26.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:11:26.298 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:11:26.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:11:26.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:11:26.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:11:26.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:11:26.328 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.312 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:11:26.331 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:11:26.333 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.548 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 223.1226ms +2024-05-25 00:11:26.690 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 378.215ms +2024-05-25 00:11:26.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 515.1309ms +2024-05-25 00:11:26.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 521.7667ms +2024-05-25 00:11:26.895 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 598.282ms +2024-05-25 00:11:26.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 567.785ms +2024-05-25 00:11:26.963 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:26.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 641.1237ms +2024-05-25 00:11:27.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:27.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 752.264ms +2024-05-25 00:11:35.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:11:35.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:11:35.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:11:35.151 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:11:35.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:11:35.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:11:35.151 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:11:35.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.152 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:11:35.153 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.243 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.4461ms +2024-05-25 00:11:35.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.9153ms +2024-05-25 00:11:35.294 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.294 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.6019ms +2024-05-25 00:11:35.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.8124ms +2024-05-25 00:11:35.307 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.4473ms +2024-05-25 00:11:35.381 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.8239ms +2024-05-25 00:11:35.459 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 308.3438ms +2024-05-25 00:11:35.726 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:35.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 575.1934ms +2024-05-25 00:11:35.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:11:35.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:36.013 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:36.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 129.8454ms +2024-05-25 00:11:36.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:11:36.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:36.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:36.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.771ms +2024-05-25 00:11:37.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:11:37.394 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:37.534 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:37.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.4552ms +2024-05-25 00:11:52.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:11:52.263 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:52.357 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:11:52.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.7707ms +2024-05-25 00:12:02.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:12:02.737 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:02.823 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:02.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.166ms +2024-05-25 00:12:30.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:12:30.996 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.130 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 134.5834ms +2024-05-25 00:12:31.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:12:31.133 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 187.3935ms +2024-05-25 00:12:31.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:12:31.324 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.442 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 119.4142ms +2024-05-25 00:12:31.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:12:31.652 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:12:31.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:12:31.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:12:31.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.680 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:12:31.684 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:12:31.685 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:12:31.686 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:12:31.686 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.7758ms +2024-05-25 00:12:31.774 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.1944ms +2024-05-25 00:12:31.819 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 165.1902ms +2024-05-25 00:12:31.828 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.2613ms +2024-05-25 00:12:31.828 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.829 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 152.1817ms +2024-05-25 00:12:31.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.3691ms +2024-05-25 00:12:31.912 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:31.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 259.1875ms +2024-05-25 00:12:32.043 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:32.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.2375ms +2024-05-25 00:12:35.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:12:35.395 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.543 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.0129ms +2024-05-25 00:12:35.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:12:35.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.782 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.7828ms +2024-05-25 00:12:35.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:12:35.793 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.909 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:35.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 118.1999ms +2024-05-25 00:12:46.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:12:46.325 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:46.458 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:46.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 134.1052ms +2024-05-25 00:12:46.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:12:46.461 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:46.649 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:46.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 188.7134ms +2024-05-25 00:12:47.144 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:12:47.144 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.146 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:12:47.146 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:12:47.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:12:47.148 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.147 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:12:47.149 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:12:47.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:12:47.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.150 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.147 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:12:47.151 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.235 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.8843ms +2024-05-25 00:12:47.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.3181ms +2024-05-25 00:12:47.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.3856ms +2024-05-25 00:12:47.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.8642ms +2024-05-25 00:12:47.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.848ms +2024-05-25 00:12:47.309 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 162.528ms +2024-05-25 00:12:47.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.4346ms +2024-05-25 00:12:47.550 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:47.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.9738ms +2024-05-25 00:12:55.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:12:55.068 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:55.205 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:12:55.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.4655ms +2024-05-25 00:13:04.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:13:04.876 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:05.015 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:05.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 139.7445ms +2024-05-25 00:13:17.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:13:17.880 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:18.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:18.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.1577ms +2024-05-25 00:13:22.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:13:22.139 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:22.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:22.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 132.6249ms +2024-05-25 00:13:22.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:13:22.274 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:22.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:22.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 191.4824ms +2024-05-25 00:13:25.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:13:25.936 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:26.076 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:26.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.786ms +2024-05-25 00:13:34.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:13:34.342 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:34.429 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:34.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.8299ms +2024-05-25 00:13:40.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:13:40.102 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:40.242 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:13:40.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.0976ms +2024-05-25 00:14:33.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:14:33.937 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:14:34.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:14:34.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 82.8975ms +2024-05-25 00:15:03.561 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:15:03.562 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:03.646 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:03.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.496ms +2024-05-25 00:15:04.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:15:04.308 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:15:04.311 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:15:04.311 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:15:04.312 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:15:04.312 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:15:04.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.311 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.395 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.3494ms +2024-05-25 00:15:04.402 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 91.4374ms +2024-05-25 00:15:04.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.8649ms +2024-05-25 00:15:04.459 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.4798ms +2024-05-25 00:15:04.459 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 147.8822ms +2024-05-25 00:15:04.464 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.8157ms +2024-05-25 00:15:04.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 213.7718ms +2024-05-25 00:15:04.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:04.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.6001ms +2024-05-25 00:15:10.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:15:10.005 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.151 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.6203ms +2024-05-25 00:15:10.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:15:10.154 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.343 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 188.7856ms +2024-05-25 00:15:10.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:15:10.346 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.458 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:10.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 112.3034ms +2024-05-25 00:15:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:15:36.744 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:36.830 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:36.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1549ms +2024-05-25 00:15:39.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:15:39.013 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:15:39.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:15:39.014 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:15:39.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:15:39.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:15:39.016 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:15:39.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:15:39.018 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.019 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.118 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 107.5255ms +2024-05-25 00:15:39.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 103.9651ms +2024-05-25 00:15:39.172 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 159.6588ms +2024-05-25 00:15:39.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 162.9674ms +2024-05-25 00:15:39.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 167.0093ms +2024-05-25 00:15:39.186 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 170.8296ms +2024-05-25 00:15:39.294 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 279.4203ms +2024-05-25 00:15:39.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:15:39.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.424 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 122.2071ms +2024-05-25 00:15:39.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:15:39.426 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 456.1126ms +2024-05-25 00:15:39.652 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.3643ms +2024-05-25 00:15:39.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:15:39.668 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:39.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 113.6088ms +2024-05-25 00:15:52.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:15:52.935 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:53.025 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:15:53.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.2185ms +2024-05-25 00:16:00.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:16:00.751 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:00.829 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:00.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 79.2534ms +2024-05-25 00:16:06.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:16:06.408 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.542 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 134.2364ms +2024-05-25 00:16:06.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:16:06.544 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.738 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 193.774ms +2024-05-25 00:16:06.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:16:06.743 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.852 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:06.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 109.7075ms +2024-05-25 00:16:07.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:16:07.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:16:07.375 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:16:07.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:16:07.376 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:16:07.375 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.376 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:16:07.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:16:07.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:16:07.378 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.378 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.9817ms +2024-05-25 00:16:07.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.8168ms +2024-05-25 00:16:07.515 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.5356ms +2024-05-25 00:16:07.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.518 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.1969ms +2024-05-25 00:16:07.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.2626ms +2024-05-25 00:16:07.523 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.4991ms +2024-05-25 00:16:07.600 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.5234ms +2024-05-25 00:16:07.780 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:16:07.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 405.2967ms +2024-05-25 00:19:12.468 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:19:12.468 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:19:13.754 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:19:13.754 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1286.804ms +2024-05-25 00:19:33.073 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:19:33.073 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:19:33.518 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:19:33.518 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 445.4721ms +2024-05-25 00:19:33.764 +02:00 [INF] Received a message with ID: '23ab514b9d054b8c8cc0b3c05df5fa69', Correlation ID: 'b9cc07e7113f4dcdb4c8b1335889bb1c', timestamp: 1716589173, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-25 00:19:33.778 +02:00 [INF] Handling a message: student_created with ID: 23ab514b9d054b8c8cc0b3c05df5fa69, Correlation ID: b9cc07e7113f4dcdb4c8b1335889bb1c, retry: 0 +2024-05-25 00:19:33.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:19:33.832 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:33.863 +02:00 [INF] Associated profile picture with ID: b3f64da8-8a43-46aa-b0e6-176fced74c27 for student with ID: a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8. +2024-05-25 00:19:33.866 +02:00 [INF] Handled a message: student_created with ID: 23ab514b9d054b8c8cc0b3c05df5fa69, Correlation ID: b9cc07e7113f4dcdb4c8b1335889bb1c, retry: 0 +2024-05-25 00:19:33.946 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:33.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 115.3708ms +2024-05-25 00:19:41.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:19:41.037 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:19:41.038 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:19:41.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:19:41.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:19:41.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:19:41.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:19:41.045 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:19:41.045 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:19:41.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.124 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.6365ms +2024-05-25 00:19:41.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.6524ms +2024-05-25 00:19:41.177 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.832ms +2024-05-25 00:19:41.186 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.0035ms +2024-05-25 00:19:41.194 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.6497ms +2024-05-25 00:19:41.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.8242ms +2024-05-25 00:19:41.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.0299ms +2024-05-25 00:19:41.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 401.4786ms +2024-05-25 00:19:41.542 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:19:41.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 497.4657ms +2024-05-25 00:20:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:20:00. +2024-05-25 00:21:37.637 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:21:37.637 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:21:39.753 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:21:39.753 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 2115.928ms +2024-05-25 00:21:48.216 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:21:48.216 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:21:48.819 +02:00 [INF] Received a message with ID: '2e173f944df649bab97c891b2f2f8e39', Correlation ID: 'fad6869357644f0bab08a5cf3ab78cc7', timestamp: 1716589308, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-25 00:21:48.822 +02:00 [INF] Handling a message: student_created with ID: 2e173f944df649bab97c891b2f2f8e39, Correlation ID: fad6869357644f0bab08a5cf3ab78cc7, retry: 0 +2024-05-25 00:21:48.851 +02:00 [INF] Associated profile picture with ID: 00000000-0000-0000-0000-000000000000 for student with ID: f0f9b005-5965-42e3-b719-ce3b39869295. +2024-05-25 00:21:48.851 +02:00 [INF] Handled a message: student_created with ID: 2e173f944df649bab97c891b2f2f8e39, Correlation ID: fad6869357644f0bab08a5cf3ab78cc7, retry: 0 +2024-05-25 00:21:49.826 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:21:49.827 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 1611.0858ms +2024-05-25 00:22:12.044 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:22:12.044 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:22:12.722 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:22:12.722 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 678.3117ms +2024-05-25 00:22:13.494 +02:00 [INF] Received a message with ID: '8f3484991af5464b928f8ba3ba28bffb', Correlation ID: 'd96a6cd0f206490da043737541f3691d', timestamp: 1716589333, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-25 00:22:13.495 +02:00 [INF] Handling a message: student_updated with ID: 8f3484991af5464b928f8ba3ba28bffb, Correlation ID: d96a6cd0f206490da043737541f3691d, retry: 0 +2024-05-25 00:22:13.613 +02:00 [INF] Associated profile picture with ID: c1933f58-e61b-446d-beee-d739a0d3fea4 for student with ID: f0f9b005-5965-42e3-b719-ce3b39869295. +2024-05-25 00:22:13.613 +02:00 [INF] Handled a message: student_updated with ID: 8f3484991af5464b928f8ba3ba28bffb, Correlation ID: d96a6cd0f206490da043737541f3691d, retry: 0 +2024-05-25 00:22:25.220 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:22:25.221 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:22:25.791 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:22:25.792 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 571.4508ms +2024-05-25 00:22:26.867 +02:00 [INF] Received a message with ID: '17ba5abc537a4909b07e097628f74a81', Correlation ID: '8fdcd0348db74e8bb02c074cf1546e5f', timestamp: 1716589346, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-25 00:22:26.867 +02:00 [INF] Handling a message: student_updated with ID: 17ba5abc537a4909b07e097628f74a81, Correlation ID: 8fdcd0348db74e8bb02c074cf1546e5f, retry: 0 +2024-05-25 00:22:27.018 +02:00 [INF] Associated profile picture with ID: d513d4aa-8190-41fa-baaa-fee0054f3733 for student with ID: f0f9b005-5965-42e3-b719-ce3b39869295. +2024-05-25 00:22:27.018 +02:00 [INF] Handled a message: student_updated with ID: 17ba5abc537a4909b07e097628f74a81, Correlation ID: 8fdcd0348db74e8bb02c074cf1546e5f, retry: 0 +2024-05-25 00:22:48.734 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:22:48.734 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:22:49.555 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:22:49.555 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 821.2675ms +2024-05-25 00:22:50.395 +02:00 [INF] Received a message with ID: '1b6e85aa3570480393c9fd82acb9229c', Correlation ID: 'c48e923933a64f28b7e8c82090674a67', timestamp: 1716589370, queue: mediafiles-service/students.student_updated, routing key: student_updated, exchange: students, payload: +2024-05-25 00:22:50.401 +02:00 [INF] Handling a message: student_updated with ID: 1b6e85aa3570480393c9fd82acb9229c, Correlation ID: c48e923933a64f28b7e8c82090674a67, retry: 0 +2024-05-25 00:22:50.618 +02:00 [INF] Associated profile picture with ID: 9be5c762-d755-4c38-bbb9-5e20b659bbeb for student with ID: f0f9b005-5965-42e3-b719-ce3b39869295. +2024-05-25 00:22:50.618 +02:00 [INF] Handled a message: student_updated with ID: 1b6e85aa3570480393c9fd82acb9229c, Correlation ID: c48e923933a64f28b7e8c82090674a67, retry: 0 +2024-05-25 00:22:57.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:22:57.269 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:22:57.382 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:22:57.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 113.9924ms +2024-05-25 00:23:03.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:23:03.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:23:03.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:23:03.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:23:03.103 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.103 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:23:03.104 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:23:03.104 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:23:03.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:23:03.105 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.102 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:23:03.106 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:23:03.105 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.107 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.218 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.218 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 116.6371ms +2024-05-25 00:23:03.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 113.9324ms +2024-05-25 00:23:03.228 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 127.0891ms +2024-05-25 00:23:03.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 154.8646ms +2024-05-25 00:23:03.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.290 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 188.9166ms +2024-05-25 00:23:03.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 186.5548ms +2024-05-25 00:23:03.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 250.4648ms +2024-05-25 00:23:03.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 397.1508ms +2024-05-25 00:23:03.521 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 424.1785ms +2024-05-25 00:23:03.549 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:03.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 445.262ms +2024-05-25 00:23:10.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:23:10.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:10.739 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:10.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 117.9176ms +2024-05-25 00:23:14.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:23:14.761 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:23:14.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:23:14.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.764 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:23:14.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:23:14.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.765 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:23:14.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:23:14.766 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.766 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:23:14.766 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:23:14.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:23:14.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.767 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.5409ms +2024-05-25 00:23:14.858 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.1725ms +2024-05-25 00:23:14.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 114.323ms +2024-05-25 00:23:14.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 121.4565ms +2024-05-25 00:23:14.906 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.8437ms +2024-05-25 00:23:14.916 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.3808ms +2024-05-25 00:23:14.917 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.917 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.0579ms +2024-05-25 00:23:14.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.0525ms +2024-05-25 00:23:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 231.2712ms +2024-05-25 00:23:15.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:23:15.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.4929ms +2024-05-25 00:25:39.337 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:25:39.338 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:25:39.570 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:25:39.570 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 232.52ms +2024-05-25 00:25:54.368 +02:00 [INF] Request starting HTTP/1.1 POST http://localhost:5000/media-files - application/json null +2024-05-25 00:25:54.368 +02:00 [INF] Executing endpoint 'HTTP: POST media-files' +2024-05-25 00:25:54.591 +02:00 [INF] Executed endpoint 'HTTP: POST media-files' +2024-05-25 00:25:54.591 +02:00 [INF] Request finished HTTP/1.1 POST http://localhost:5000/media-files - 200 null application/json 223.8783ms +2024-05-25 00:25:54.970 +02:00 [INF] Received a message with ID: 'f19fc420d326491eb5cfe0cbb05d28d0', Correlation ID: '53b2eb282e0e4f4abc03866730b923e5', timestamp: 1716589554, queue: mediafiles-service/students.student_created, routing key: student_created, exchange: students, payload: +2024-05-25 00:25:54.970 +02:00 [INF] Handling a message: student_created with ID: f19fc420d326491eb5cfe0cbb05d28d0, Correlation ID: 53b2eb282e0e4f4abc03866730b923e5, retry: 0 +2024-05-25 00:25:55.042 +02:00 [INF] Associated profile picture with ID: 7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 for student with ID: 266aa552-af23-4e37-90a6-84528857decf. +2024-05-25 00:25:55.043 +02:00 [INF] Handled a message: student_created with ID: f19fc420d326491eb5cfe0cbb05d28d0, Correlation ID: 53b2eb282e0e4f4abc03866730b923e5, retry: 0 +2024-05-25 00:25:55.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:25:55.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:55.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:55.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 90.9526ms +2024-05-25 00:25:57.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:25:57.612 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:25:57.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:25:57.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:25:57.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:25:57.620 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:25:57.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:25:57.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.621 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.619 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:25:57.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:25:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:25:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.722 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 106.1621ms +2024-05-25 00:25:57.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 105.4414ms +2024-05-25 00:25:57.742 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 120.0448ms +2024-05-25 00:25:57.750 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 127.8045ms +2024-05-25 00:25:57.753 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.0108ms +2024-05-25 00:25:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.4792ms +2024-05-25 00:25:57.761 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.1394ms +2024-05-25 00:25:57.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 159.7238ms +2024-05-25 00:25:57.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:57.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.7238ms +2024-05-25 00:25:58.033 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:25:58.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 421.0689ms +2024-05-25 00:26:44.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:26:44.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:26:44.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:26:44.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:26:44.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:26:44.168 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:26:44.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.169 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:26:44.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:26:44.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.172 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:26:44.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:26:44.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.2716ms +2024-05-25 00:26:44.260 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.5446ms +2024-05-25 00:26:44.288 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 117.4356ms +2024-05-25 00:26:44.291 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 120.0162ms +2024-05-25 00:26:44.312 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 145.6031ms +2024-05-25 00:26:44.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.5369ms +2024-05-25 00:26:44.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.9572ms +2024-05-25 00:26:44.320 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.4521ms +2024-05-25 00:26:44.405 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.1746ms +2024-05-25 00:26:44.587 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:26:44.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 416.6915ms +2024-05-25 00:29:59.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:29:59.543 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:29:59.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:29:59.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 82.4859ms +2024-05-25 00:30:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:30:00. +2024-05-25 00:30:06.501 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:30:06.501 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:30:06.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:30:06.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:30:06.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:30:06.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:30:06.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:30:06.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:30:06.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:30:06.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:30:06.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.507 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.594 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.9604ms +2024-05-25 00:30:06.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.677ms +2024-05-25 00:30:06.614 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 108.4591ms +2024-05-25 00:30:06.621 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 115.878ms +2024-05-25 00:30:06.672 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 167.7048ms +2024-05-25 00:30:06.695 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 190.2432ms +2024-05-25 00:30:06.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 199.8315ms +2024-05-25 00:30:06.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 246.5349ms +2024-05-25 00:30:06.837 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 333.1304ms +2024-05-25 00:30:06.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 413.894ms +2024-05-25 00:30:06.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:30:06.925 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:30:06.925 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:30:06.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:30:06.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:30:06.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:30:06.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:30:06.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:30:06.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:30:06.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:30:06.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:06.932 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.3916ms +2024-05-25 00:30:07.015 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.982ms +2024-05-25 00:30:07.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 91.121ms +2024-05-25 00:30:07.048 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 117.667ms +2024-05-25 00:30:07.051 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 124.6422ms +2024-05-25 00:30:07.069 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.0353ms +2024-05-25 00:30:07.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.9349ms +2024-05-25 00:30:07.074 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.0634ms +2024-05-25 00:30:07.123 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 194.8094ms +2024-05-25 00:30:07.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:07.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 407.9015ms +2024-05-25 00:30:48.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:30:48.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:30:48.095 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:30:48.096 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:30:48.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:30:48.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:30:48.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:30:48.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:30:48.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:30:48.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:30:48.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.191 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.7964ms +2024-05-25 00:30:48.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.4688ms +2024-05-25 00:30:48.213 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 115.1792ms +2024-05-25 00:30:48.215 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 117.1332ms +2024-05-25 00:30:48.239 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.0229ms +2024-05-25 00:30:48.244 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.3998ms +2024-05-25 00:30:48.246 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.6327ms +2024-05-25 00:30:48.259 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 161.0209ms +2024-05-25 00:30:48.318 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.0267ms +2024-05-25 00:30:48.494 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 399.992ms +2024-05-25 00:30:48.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:30:48.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:30:48.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:30:48.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:30:48.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:30:48.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:30:48.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:30:48.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:30:48.517 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:30:48.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.518 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 85.4753ms +2024-05-25 00:30:48.605 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 91.3988ms +2024-05-25 00:30:48.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.0197ms +2024-05-25 00:30:48.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.9103ms +2024-05-25 00:30:48.633 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 117.3673ms +2024-05-25 00:30:48.651 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.3265ms +2024-05-25 00:30:48.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 140.6178ms +2024-05-25 00:30:48.660 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.662ms +2024-05-25 00:30:48.735 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.8662ms +2024-05-25 00:30:48.926 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:30:48.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 413.0308ms +2024-05-25 00:31:50.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:31:50.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:31:50.881 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:31:50.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:31:50.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:31:50.886 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:31:50.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:31:50.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:31:50.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:31:50.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:31:50.888 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.889 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.971 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.4858ms +2024-05-25 00:31:50.972 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:50.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.4116ms +2024-05-25 00:31:51.001 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 114.8284ms +2024-05-25 00:31:51.011 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 123.2235ms +2024-05-25 00:31:51.023 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 143.9536ms +2024-05-25 00:31:51.025 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.1075ms +2024-05-25 00:31:51.026 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.831ms +2024-05-25 00:31:51.030 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.8865ms +2024-05-25 00:31:51.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.0353ms +2024-05-25 00:31:51.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 393.5667ms +2024-05-25 00:31:51.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:31:51.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:31:51.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:31:51.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:31:51.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:31:51.306 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:31:51.307 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:31:51.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:31:51.307 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.308 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.307 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.307 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 82.6069ms +2024-05-25 00:31:51.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.1236ms +2024-05-25 00:31:51.388 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.4422ms +2024-05-25 00:31:51.415 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 112.0406ms +2024-05-25 00:31:51.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 116.4537ms +2024-05-25 00:31:51.449 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.449 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.1616ms +2024-05-25 00:31:51.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.0916ms +2024-05-25 00:31:51.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.0997ms +2024-05-25 00:31:51.534 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.8715ms +2024-05-25 00:31:51.702 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:51.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 396.1958ms +2024-05-25 00:31:53.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:31:53.314 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:53.407 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:53.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 93.6549ms +2024-05-25 00:31:55.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:31:55.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:31:55.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:31:55.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.946 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:31:55.947 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:31:55.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.949 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.949 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:31:55.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.948 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:55.949 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 94.8883ms +2024-05-25 00:31:56.045 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 98.0859ms +2024-05-25 00:31:56.069 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 122.0565ms +2024-05-25 00:31:56.073 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 125.5728ms +2024-05-25 00:31:56.092 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.1459ms +2024-05-25 00:31:56.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 148.5812ms +2024-05-25 00:31:56.102 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.0843ms +2024-05-25 00:31:56.105 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 158.6595ms +2024-05-25 00:31:56.186 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.187 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 239.2251ms +2024-05-25 00:31:56.368 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:56.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 422.1493ms +2024-05-25 00:31:59.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:31:59.218 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:59.302 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:31:59.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 84.8072ms +2024-05-25 00:32:00.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:32:00.721 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:00.808 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:00.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 87.4048ms +2024-05-25 00:32:04.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:32:04.726 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:32:04.727 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:32:04.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:32:04.727 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:32:04.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:32:04.728 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.729 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:32:04.729 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:32:04.730 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:32:04.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:32:04.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.731 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.830 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 102.5494ms +2024-05-25 00:32:04.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 103.9477ms +2024-05-25 00:32:04.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.894 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 167.2847ms +2024-05-25 00:32:04.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 168.3842ms +2024-05-25 00:32:04.896 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 168.8468ms +2024-05-25 00:32:04.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 166.6963ms +2024-05-25 00:32:04.898 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 173.1734ms +2024-05-25 00:32:04.922 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:04.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 195.6164ms +2024-05-25 00:32:05.002 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 271.0775ms +2024-05-25 00:32:05.156 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 430.061ms +2024-05-25 00:32:05.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:32:05.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:32:05.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:32:05.193 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.194 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.193 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:32:05.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:32:05.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:32:05.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:32:05.196 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:32:05.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:32:05.197 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.196 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.197 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:32:05.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.285 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.6378ms +2024-05-25 00:32:05.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 88.6222ms +2024-05-25 00:32:05.289 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.3075ms +2024-05-25 00:32:05.310 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 115.3253ms +2024-05-25 00:32:05.317 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 123.0062ms +2024-05-25 00:32:05.319 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 126.4909ms +2024-05-25 00:32:05.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 138.908ms +2024-05-25 00:32:05.353 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 159.4213ms +2024-05-25 00:32:05.422 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 226.4798ms +2024-05-25 00:32:05.608 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:05.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 415.5458ms +2024-05-25 00:32:14.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:32:14.841 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:14.925 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:14.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 85.2561ms +2024-05-25 00:32:19.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:32:19.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:32:19.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.561 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:32:19.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:32:19.563 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.563 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:32:19.564 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:32:19.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:32:19.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:32:19.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:32:19.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.565 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:32:19.566 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.646 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.7683ms +2024-05-25 00:32:19.658 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.3876ms +2024-05-25 00:32:19.686 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 121.3196ms +2024-05-25 00:32:19.688 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 123.9336ms +2024-05-25 00:32:19.698 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.8498ms +2024-05-25 00:32:19.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.7662ms +2024-05-25 00:32:19.715 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.2412ms +2024-05-25 00:32:19.715 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.5304ms +2024-05-25 00:32:19.773 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 212.701ms +2024-05-25 00:32:19.989 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:19.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 426.9487ms +2024-05-25 00:32:19.999 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:32:19.999 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:32:20.000 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:32:20.001 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:32:20.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:32:20.002 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.002 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:32:20.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:32:20.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:32:20.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:32:20.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:32:20.004 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.003 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.004 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.085 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.1775ms +2024-05-25 00:32:20.091 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.7192ms +2024-05-25 00:32:20.108 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 107.3695ms +2024-05-25 00:32:20.117 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 116.0835ms +2024-05-25 00:32:20.120 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 117.1697ms +2024-05-25 00:32:20.143 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.8048ms +2024-05-25 00:32:20.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.149 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.0018ms +2024-05-25 00:32:20.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 150.0979ms +2024-05-25 00:32:20.214 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 211.3441ms +2024-05-25 00:32:20.379 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:20.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 380.5113ms +2024-05-25 00:32:41.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:32:41.309 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:41.392 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:41.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 86.0286ms +2024-05-25 00:32:43.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:32:43.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:32:43.969 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:32:43.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:32:43.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:32:43.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:32:43.971 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:32:43.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:32:43.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:32:43.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.973 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:32:43.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.972 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:43.975 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.057 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.6815ms +2024-05-25 00:32:44.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.9076ms +2024-05-25 00:32:44.079 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 106.5212ms +2024-05-25 00:32:44.093 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 120.9261ms +2024-05-25 00:32:44.106 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.3193ms +2024-05-25 00:32:44.110 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.7528ms +2024-05-25 00:32:44.116 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.2198ms +2024-05-25 00:32:44.119 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.3725ms +2024-05-25 00:32:44.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.8227ms +2024-05-25 00:32:44.348 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:32:44.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 379.5094ms +2024-05-25 00:33:42.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:33:42.881 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:33:42.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:33:42.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:33:42.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:33:42.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:33:42.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.882 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.881 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:33:42.886 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:33:42.887 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.969 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.284ms +2024-05-25 00:33:42.974 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.7475ms +2024-05-25 00:33:42.997 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 118.2256ms +2024-05-25 00:33:42.998 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:42.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 117.0925ms +2024-05-25 00:33:43.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.0294ms +2024-05-25 00:33:43.030 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 149.2083ms +2024-05-25 00:33:43.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 152.443ms +2024-05-25 00:33:43.032 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.2459ms +2024-05-25 00:33:43.107 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.057ms +2024-05-25 00:33:43.269 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:43.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.1508ms +2024-05-25 00:33:54.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:33:54.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:33:54.626 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.627 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:33:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:33:54.627 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:33:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:33:54.628 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.629 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:33:54.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:33:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:33:54.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:33:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.630 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.727 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.727 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.0592ms +2024-05-25 00:33:54.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 100.4998ms +2024-05-25 00:33:54.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 122.7312ms +2024-05-25 00:33:54.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 127.4423ms +2024-05-25 00:33:54.779 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 153.4076ms +2024-05-25 00:33:54.783 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 155.749ms +2024-05-25 00:33:54.784 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 157.1369ms +2024-05-25 00:33:54.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 156.8634ms +2024-05-25 00:33:54.861 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:54.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.9631ms +2024-05-25 00:33:55.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:33:55.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 395.3374ms +2024-05-25 00:34:44.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:44.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:44.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:44.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:44.045 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:44.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:44.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:44.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:44.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:44.048 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.046 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:44.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:44.049 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.049 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.6987ms +2024-05-25 00:34:44.139 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.8427ms +2024-05-25 00:34:44.160 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 116.2966ms +2024-05-25 00:34:44.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.881ms +2024-05-25 00:34:44.185 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 137.1184ms +2024-05-25 00:34:44.187 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 143.0807ms +2024-05-25 00:34:44.198 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.1837ms +2024-05-25 00:34:44.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 229.1653ms +2024-05-25 00:34:44.443 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 402.867ms +2024-05-25 00:34:44.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 413.5253ms +2024-05-25 00:34:44.508 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 460.9521ms +2024-05-25 00:34:44.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:44.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:44.513 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.513 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:44.513 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:44.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:44.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:44.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:44.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:44.515 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.515 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:44.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:44.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.517 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.515 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:44.518 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.603 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.214ms +2024-05-25 00:34:44.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 99.8265ms +2024-05-25 00:34:44.613 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 99.904ms +2024-05-25 00:34:44.639 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 124.9238ms +2024-05-25 00:34:44.642 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 130.1432ms +2024-05-25 00:34:44.655 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.5194ms +2024-05-25 00:34:44.659 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.0471ms +2024-05-25 00:34:44.667 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.4287ms +2024-05-25 00:34:44.670 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 157.2845ms +2024-05-25 00:34:44.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 234.4734ms +2024-05-25 00:34:44.904 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.0637ms +2024-05-25 00:34:44.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:44.922 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:44.923 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:44.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:44.924 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:44.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:44.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:44.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:44.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:44.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:44.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:44.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.926 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:44.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 86.9614ms +2024-05-25 00:34:45.014 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.3445ms +2024-05-25 00:34:45.015 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.0872ms +2024-05-25 00:34:45.018 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 93.3782ms +2024-05-25 00:34:45.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 96.3312ms +2024-05-25 00:34:45.048 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 124.1948ms +2024-05-25 00:34:45.048 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 123.3627ms +2024-05-25 00:34:45.065 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.1482ms +2024-05-25 00:34:45.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 146.6358ms +2024-05-25 00:34:45.115 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 194.3295ms +2024-05-25 00:34:45.309 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 383.8934ms +2024-05-25 00:34:45.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:45.315 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:45.316 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:45.317 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:45.319 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:45.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:45.320 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:45.320 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:45.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:45.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.321 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:45.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:45.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.322 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 89.3556ms +2024-05-25 00:34:45.414 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.414 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.2096ms +2024-05-25 00:34:45.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 94.3019ms +2024-05-25 00:34:45.421 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 105.5184ms +2024-05-25 00:34:45.428 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 111.0884ms +2024-05-25 00:34:45.438 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 118.5361ms +2024-05-25 00:34:45.439 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 117.7368ms +2024-05-25 00:34:45.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 120.331ms +2024-05-25 00:34:45.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 135.871ms +2024-05-25 00:34:45.536 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 215.6628ms +2024-05-25 00:34:45.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 377.7068ms +2024-05-25 00:34:45.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:45.700 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:45.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:45.701 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:45.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:45.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:45.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:45.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:45.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:45.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:45.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:45.707 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.707 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.2785ms +2024-05-25 00:34:45.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.6065ms +2024-05-25 00:34:45.795 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 90.8986ms +2024-05-25 00:34:45.812 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 112.8871ms +2024-05-25 00:34:45.816 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 114.0341ms +2024-05-25 00:34:45.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.821 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 115.679ms +2024-05-25 00:34:45.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 114.1787ms +2024-05-25 00:34:45.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 122.1935ms +2024-05-25 00:34:45.844 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.4919ms +2024-05-25 00:34:45.904 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:45.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.7343ms +2024-05-25 00:34:46.090 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 388.0384ms +2024-05-25 00:34:46.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:46.098 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:46.099 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:46.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:46.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:46.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:46.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.100 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:46.102 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:46.101 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.102 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.102 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.193 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.9722ms +2024-05-25 00:34:46.194 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.194 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.6257ms +2024-05-25 00:34:46.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 94.5699ms +2024-05-25 00:34:46.196 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 95.1419ms +2024-05-25 00:34:46.197 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 97.3433ms +2024-05-25 00:34:46.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 126.7135ms +2024-05-25 00:34:46.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 130.1358ms +2024-05-25 00:34:46.253 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 153.4386ms +2024-05-25 00:34:46.255 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 155.3552ms +2024-05-25 00:34:46.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 204.9931ms +2024-05-25 00:34:46.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 393.2813ms +2024-05-25 00:34:46.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:46.502 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:46.503 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:46.505 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:46.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:46.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:46.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.506 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:46.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:46.508 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:46.508 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:46.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:46.511 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.511 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.511 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.590 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.1949ms +2024-05-25 00:34:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.3424ms +2024-05-25 00:34:46.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 90.0475ms +2024-05-25 00:34:46.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 91.1413ms +2024-05-25 00:34:46.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 109.6169ms +2024-05-25 00:34:46.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 109.9725ms +2024-05-25 00:34:46.619 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 114.8054ms +2024-05-25 00:34:46.625 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 118.0122ms +2024-05-25 00:34:46.654 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.8918ms +2024-05-25 00:34:46.702 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 194.0896ms +2024-05-25 00:34:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 397.3106ms +2024-05-25 00:34:46.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:46.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:46.909 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.909 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:46.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:46.910 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:46.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:46.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.911 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:46.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:46.912 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.912 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:46.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:46.913 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.913 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:46.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:46.914 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.006 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 94.9317ms +2024-05-25 00:34:47.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 95.8658ms +2024-05-25 00:34:47.021 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 113.1595ms +2024-05-25 00:34:47.028 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 117.0215ms +2024-05-25 00:34:47.036 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 123.5705ms +2024-05-25 00:34:47.060 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.2335ms +2024-05-25 00:34:47.129 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.129 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 218.9663ms +2024-05-25 00:34:47.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 219.0482ms +2024-05-25 00:34:47.132 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.097ms +2024-05-25 00:34:47.261 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 352.4848ms +2024-05-25 00:34:47.282 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 373.7691ms +2024-05-25 00:34:47.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:47.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:47.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:47.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:47.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:47.291 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.292 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:47.293 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:47.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:47.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:47.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:47.294 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:47.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 88.8194ms +2024-05-25 00:34:47.385 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 91.3641ms +2024-05-25 00:34:47.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.386 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.2243ms +2024-05-25 00:34:47.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.7128ms +2024-05-25 00:34:47.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 94.0749ms +2024-05-25 00:34:47.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 119.4131ms +2024-05-25 00:34:47.414 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 120.1364ms +2024-05-25 00:34:47.418 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 124.3151ms +2024-05-25 00:34:47.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 149.4666ms +2024-05-25 00:34:47.499 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 208.2048ms +2024-05-25 00:34:47.730 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 439.1683ms +2024-05-25 00:34:47.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:47.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:34:47.738 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.738 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:34:47.740 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:34:47.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:34:47.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:34:47.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:34:47.742 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.742 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.742 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.742 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:34:47.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:34:47.743 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.743 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:34:47.744 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:34:47.746 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.831 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 90.0879ms +2024-05-25 00:34:47.832 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 94.707ms +2024-05-25 00:34:47.833 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5475ms +2024-05-25 00:34:47.834 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 91.0277ms +2024-05-25 00:34:47.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 92.0997ms +2024-05-25 00:34:47.862 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 117.4793ms +2024-05-25 00:34:47.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 124.2927ms +2024-05-25 00:34:47.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 124.7699ms +2024-05-25 00:34:47.881 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.6314ms +2024-05-25 00:34:47.939 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:47.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.9184ms +2024-05-25 00:34:48.138 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:34:48.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 398.0909ms +2024-05-25 00:35:02.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:35:02.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:35:02.108 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.108 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:35:02.109 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:35:02.110 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:35:02.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:35:02.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.111 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:35:02.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:35:02.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:35:02.112 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:35:02.113 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 100.0953ms +2024-05-25 00:35:02.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 99.9847ms +2024-05-25 00:35:02.241 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 130.4887ms +2024-05-25 00:35:02.245 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 135.606ms +2024-05-25 00:35:02.269 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 160.2639ms +2024-05-25 00:35:02.270 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 157.9454ms +2024-05-25 00:35:02.272 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 161.2774ms +2024-05-25 00:35:02.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 168.1923ms +2024-05-25 00:35:02.350 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 243.2249ms +2024-05-25 00:35:02.517 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:35:02.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.4025ms +2024-05-25 00:36:47.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:36:47.190 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:36:47.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:36:47.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.195 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:36:47.196 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:36:47.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:36:47.198 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.199 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:36:47.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:36:47.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:36:47.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:36:47.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.286 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.286 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1057ms +2024-05-25 00:36:47.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.2158ms +2024-05-25 00:36:47.307 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 113.0197ms +2024-05-25 00:36:47.311 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 117.0881ms +2024-05-25 00:36:47.332 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.5469ms +2024-05-25 00:36:47.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.7564ms +2024-05-25 00:36:47.342 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.5129ms +2024-05-25 00:36:47.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.5198ms +2024-05-25 00:36:47.427 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.7862ms +2024-05-25 00:36:47.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:47.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 403.3825ms +2024-05-25 00:36:49.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:36:49.326 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:49.411 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:49.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 86.3283ms +2024-05-25 00:36:54.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:36:54.039 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:36:54.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:36:54.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:36:54.040 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:36:54.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:36:54.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.041 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:36:54.042 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:36:54.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:36:54.043 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:36:54.044 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.135 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 98.5158ms +2024-05-25 00:36:54.144 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 106.5035ms +2024-05-25 00:36:54.150 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 109.1014ms +2024-05-25 00:36:54.159 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 116.8423ms +2024-05-25 00:36:54.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.1415ms +2024-05-25 00:36:54.188 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.2987ms +2024-05-25 00:36:54.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.195 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 156.1373ms +2024-05-25 00:36:54.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 152.1566ms +2024-05-25 00:36:54.252 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 212.1246ms +2024-05-25 00:36:54.423 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 384.8233ms +2024-05-25 00:36:54.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:36:54.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:36:54.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:36:54.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.450 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:36:54.451 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:36:54.452 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:36:54.452 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:36:54.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:36:54.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.454 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:36:54.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:36:54.455 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.455 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 88.254ms +2024-05-25 00:36:54.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.4181ms +2024-05-25 00:36:54.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 88.553ms +2024-05-25 00:36:54.574 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 120.6441ms +2024-05-25 00:36:54.574 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 121.2345ms +2024-05-25 00:36:54.588 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.65ms +2024-05-25 00:36:54.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 147.1579ms +2024-05-25 00:36:54.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 153.4012ms +2024-05-25 00:36:54.683 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 231.0032ms +2024-05-25 00:36:54.838 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:54.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 386.0544ms +2024-05-25 00:36:56.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:36:56.588 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:56.672 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:36:56.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 84.9135ms +2024-05-25 00:37:09.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:37:09.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:37:09.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:37:09.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:37:09.474 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:37:09.474 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.475 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:37:09.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:37:09.474 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.476 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.474 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:37:09.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:37:09.475 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.477 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:37:09.477 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.476 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.1061ms +2024-05-25 00:37:09.568 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 94.5707ms +2024-05-25 00:37:09.581 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 107.3166ms +2024-05-25 00:37:09.595 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 120.3466ms +2024-05-25 00:37:09.612 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.8297ms +2024-05-25 00:37:09.617 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.5384ms +2024-05-25 00:37:09.618 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 143.1335ms +2024-05-25 00:37:09.620 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.6636ms +2024-05-25 00:37:09.701 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.4401ms +2024-05-25 00:37:09.880 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 406.539ms +2024-05-25 00:37:09.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:37:09.894 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:37:09.895 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:37:09.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:37:09.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:37:09.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.896 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.897 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:37:09.898 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.978 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.0673ms +2024-05-25 00:37:09.984 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:09.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 89.5849ms +2024-05-25 00:37:10.007 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 112.1341ms +2024-05-25 00:37:10.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 115.2272ms +2024-05-25 00:37:10.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 117.1415ms +2024-05-25 00:37:10.013 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 117.437ms +2024-05-25 00:37:10.016 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 120.4941ms +2024-05-25 00:37:10.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.0229ms +2024-05-25 00:37:10.123 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 228.3496ms +2024-05-25 00:37:10.283 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:10.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 389.8525ms +2024-05-25 00:37:19.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:37:19.105 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:19.190 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:37:19.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 85.2288ms +2024-05-25 00:40:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:40:00. +2024-05-25 00:40:23.771 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:23.771 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:23.773 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:23.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:23.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:23.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.774 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:23.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:23.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:23.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:23.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:23.778 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.860 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.8629ms +2024-05-25 00:40:23.863 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.0727ms +2024-05-25 00:40:23.887 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 114.2794ms +2024-05-25 00:40:23.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 120.0408ms +2024-05-25 00:40:23.914 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.607ms +2024-05-25 00:40:23.919 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.3422ms +2024-05-25 00:40:23.920 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 145.3036ms +2024-05-25 00:40:23.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:23.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 151.0388ms +2024-05-25 00:40:24.001 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 230.8406ms +2024-05-25 00:40:24.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 390.0756ms +2024-05-25 00:40:24.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:24.182 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:24.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:24.183 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:24.185 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.183 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:24.187 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:24.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:24.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:24.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:24.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:24.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.273 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.6181ms +2024-05-25 00:40:24.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.274 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 89.8221ms +2024-05-25 00:40:24.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.4811ms +2024-05-25 00:40:24.301 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 118.6936ms +2024-05-25 00:40:24.305 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 118.2669ms +2024-05-25 00:40:24.307 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 122.4652ms +2024-05-25 00:40:24.327 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 141.4868ms +2024-05-25 00:40:24.328 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.1041ms +2024-05-25 00:40:24.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.0557ms +2024-05-25 00:40:24.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:24.411 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.490 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 80.3504ms +2024-05-25 00:40:24.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:24.492 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.568 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 384.5968ms +2024-05-25 00:40:24.599 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 106.7338ms +2024-05-25 00:40:24.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:24.605 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.794 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:24.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 189.6796ms +2024-05-25 00:40:29.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:29.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:29.377 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:29.378 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:29.378 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:29.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:29.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:29.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:29.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.380 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.379 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.462 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.5968ms +2024-05-25 00:40:29.465 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.6852ms +2024-05-25 00:40:29.491 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 112.9977ms +2024-05-25 00:40:29.496 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 117.5188ms +2024-05-25 00:40:29.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.3645ms +2024-05-25 00:40:29.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.7293ms +2024-05-25 00:40:29.522 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 144.3421ms +2024-05-25 00:40:29.524 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 146.4143ms +2024-05-25 00:40:29.593 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 216.2633ms +2024-05-25 00:40:29.794 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 414.7636ms +2024-05-25 00:40:29.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:29.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:29.805 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:29.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:29.807 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:29.808 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:29.809 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.806 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:29.812 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:29.815 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:29.816 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:29.817 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.900 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 87.7187ms +2024-05-25 00:40:29.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.9651ms +2024-05-25 00:40:29.913 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 108.5894ms +2024-05-25 00:40:29.918 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 111.7338ms +2024-05-25 00:40:29.921 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 116.5213ms +2024-05-25 00:40:29.923 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 107.0397ms +2024-05-25 00:40:29.926 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 115.2534ms +2024-05-25 00:40:29.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:29.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.8546ms +2024-05-25 00:40:30.005 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:30.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 199.7857ms +2024-05-25 00:40:30.183 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:30.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 380.6257ms +2024-05-25 00:40:35.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:40:35.131 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:35.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:35.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 81.7606ms +2024-05-25 00:40:50.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:50.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:50.199 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.199 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:50.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:50.200 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:50.201 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:50.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:50.205 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:50.205 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:50.205 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:50.206 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.207 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.292 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.6551ms +2024-05-25 00:40:50.296 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.2108ms +2024-05-25 00:40:50.321 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 115.0385ms +2024-05-25 00:40:50.336 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 136.499ms +2024-05-25 00:40:50.341 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.3503ms +2024-05-25 00:40:50.346 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.346 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 145.0787ms +2024-05-25 00:40:50.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 141.162ms +2024-05-25 00:40:50.371 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 167.2874ms +2024-05-25 00:40:50.426 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.4162ms +2024-05-25 00:40:50.582 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 384.1434ms +2024-05-25 00:40:50.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:50.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:50.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:50.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.596 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:50.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:50.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:50.598 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:50.599 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.597 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:50.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:50.600 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.600 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:50.601 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.690 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.690 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.477ms +2024-05-25 00:40:50.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 95.5764ms +2024-05-25 00:40:50.692 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 94.8309ms +2024-05-25 00:40:50.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 116.3732ms +2024-05-25 00:40:50.721 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 122.6366ms +2024-05-25 00:40:50.723 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 127.3008ms +2024-05-25 00:40:50.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.747 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 149.4842ms +2024-05-25 00:40:50.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 148.7436ms +2024-05-25 00:40:50.806 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 211.1849ms +2024-05-25 00:40:50.994 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:50.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 395.8092ms +2024-05-25 00:40:52.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:40:52.502 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:52.596 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:52.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 94.0441ms +2024-05-25 00:40:55.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:40:55.229 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:40:55.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:40:55.230 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.230 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:40:55.231 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:40:55.232 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:40:55.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:40:55.233 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:40:55.234 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:40:55.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:40:55.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.236 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.319 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1513ms +2024-05-25 00:40:55.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.8253ms +2024-05-25 00:40:55.338 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 109.6284ms +2024-05-25 00:40:55.347 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 114.555ms +2024-05-25 00:40:55.369 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 136.0742ms +2024-05-25 00:40:55.374 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.375 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 139.9845ms +2024-05-25 00:40:55.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.1155ms +2024-05-25 00:40:55.379 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.0641ms +2024-05-25 00:40:55.457 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 221.954ms +2024-05-25 00:40:55.606 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:40:55.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 378.1427ms +2024-05-25 00:43:47.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:43:47.173 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:43:47.175 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:43:47.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:43:47.181 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:43:47.181 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:43:47.181 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:43:47.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:43:47.185 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.185 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.185 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:43:47.186 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:43:47.188 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.316 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.8436ms +2024-05-25 00:43:47.323 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 142.3458ms +2024-05-25 00:43:47.400 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 219.9043ms +2024-05-25 00:43:47.401 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 221.4076ms +2024-05-25 00:43:47.430 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 244.2754ms +2024-05-25 00:43:47.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.485 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 297.4093ms +2024-05-25 00:43:47.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 304.4998ms +2024-05-25 00:43:47.538 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 354.9358ms +2024-05-25 00:43:47.556 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 383.6762ms +2024-05-25 00:43:47.678 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 494.396ms +2024-05-25 00:43:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:43:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:43:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:43:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:43:47.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:43:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:43:47.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:43:47.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:43:47.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:43:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:43:47.704 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.705 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.789 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.9806ms +2024-05-25 00:43:47.789 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 85.3082ms +2024-05-25 00:43:47.790 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 87.1885ms +2024-05-25 00:43:47.846 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 145.3562ms +2024-05-25 00:43:47.853 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 150.645ms +2024-05-25 00:43:47.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 177.9309ms +2024-05-25 00:43:47.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 195.9701ms +2024-05-25 00:43:47.909 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 206.8454ms +2024-05-25 00:43:47.975 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:47.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 271.0956ms +2024-05-25 00:43:48.280 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:48.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 577.1268ms +2024-05-25 00:43:50.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:43:50.478 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:50.563 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:50.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 88.1345ms +2024-05-25 00:43:53.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:43:53.641 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:43:53.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:43:53.643 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.643 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:43:53.644 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:43:53.645 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:43:53.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:43:53.645 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.645 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:43:53.646 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:43:53.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:43:53.647 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.647 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.723 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 80.9021ms +2024-05-25 00:43:53.732 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.1166ms +2024-05-25 00:43:53.751 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 106.1201ms +2024-05-25 00:43:53.752 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 109.9063ms +2024-05-25 00:43:53.777 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 130.8207ms +2024-05-25 00:43:53.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 138.5942ms +2024-05-25 00:43:53.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.2453ms +2024-05-25 00:43:53.941 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:53.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 296.5886ms +2024-05-25 00:43:54.010 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:54.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 369.3432ms +2024-05-25 00:43:54.012 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:43:54.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 369.2072ms +2024-05-25 00:44:43.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:44:43.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:44:43.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:44:43.951 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.951 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:44:43.952 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:44:43.953 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:44:43.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:44:43.959 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:44:43.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:44:43.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.961 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:44:43.962 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:43.960 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.042 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.0353ms +2024-05-25 00:44:44.044 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.5366ms +2024-05-25 00:44:44.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 112.3144ms +2024-05-25 00:44:44.064 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 114.4467ms +2024-05-25 00:44:44.089 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 139.3931ms +2024-05-25 00:44:44.094 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 135.7224ms +2024-05-25 00:44:44.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.7824ms +2024-05-25 00:44:44.102 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 146.3279ms +2024-05-25 00:44:44.167 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 215.571ms +2024-05-25 00:44:44.335 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 385.5323ms +2024-05-25 00:44:44.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:44:44.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:44:44.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:44:44.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:44:44.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:44:44.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:44:44.352 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:44:44.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.354 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:44:44.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:44:44.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:44:44.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.353 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.355 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.435 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 83.8142ms +2024-05-25 00:44:44.437 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.9239ms +2024-05-25 00:44:44.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 118.1844ms +2024-05-25 00:44:44.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 116.8897ms +2024-05-25 00:44:44.470 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 116.7858ms +2024-05-25 00:44:44.474 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 120.6326ms +2024-05-25 00:44:44.495 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 143.1036ms +2024-05-25 00:44:44.503 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.7289ms +2024-05-25 00:44:44.579 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 224.2768ms +2024-05-25 00:44:44.776 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:44.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 423.9294ms +2024-05-25 00:44:47.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:44:47.895 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:47.977 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:44:47.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 82.592ms +2024-05-25 00:45:36.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:45:36.295 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:45:36.296 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:45:36.298 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:45:36.298 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:45:36.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:45:36.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:45:36.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:45:36.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:45:36.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:45:36.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.301 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.302 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.377 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 83.138ms +2024-05-25 00:45:36.383 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 84.8298ms +2024-05-25 00:45:36.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.410 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 109.9919ms +2024-05-25 00:45:36.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 115.4347ms +2024-05-25 00:45:36.433 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 136.2563ms +2024-05-25 00:45:36.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 139.386ms +2024-05-25 00:45:36.444 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 144.27ms +2024-05-25 00:45:36.447 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 147.5419ms +2024-05-25 00:45:36.525 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 225.8274ms +2024-05-25 00:45:36.678 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 377.9171ms +2024-05-25 00:45:36.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:45:36.706 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:45:36.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:45:36.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:45:36.707 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:45:36.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:45:36.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:45:36.709 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.709 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:45:36.708 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.711 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:45:36.712 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:45:36.713 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.799 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 92.0328ms +2024-05-25 00:45:36.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.801 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 90.5056ms +2024-05-25 00:45:36.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 89.8134ms +2024-05-25 00:45:36.808 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 101.2176ms +2024-05-25 00:45:36.835 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 128.2937ms +2024-05-25 00:45:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 148.397ms +2024-05-25 00:45:36.858 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 151.6531ms +2024-05-25 00:45:36.865 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 159.2265ms +2024-05-25 00:45:36.933 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:36.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 222.0717ms +2024-05-25 00:45:37.098 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:37.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.4206ms +2024-05-25 00:45:40.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:45:40.943 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:41.024 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:45:41.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 81.7884ms +2024-05-25 00:47:55.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:47:55.670 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:47:55.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:47:55.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:47:55.673 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:47:55.674 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:47:55.674 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:47:55.675 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:47:55.676 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:47:55.676 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:47:55.678 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.757 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 85.0453ms +2024-05-25 00:47:55.764 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.1399ms +2024-05-25 00:47:55.785 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 111.9558ms +2024-05-25 00:47:55.787 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 111.4895ms +2024-05-25 00:47:55.809 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.809 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 137.0482ms +2024-05-25 00:47:55.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.2641ms +2024-05-25 00:47:55.811 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 135.6154ms +2024-05-25 00:47:55.813 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 138.7973ms +2024-05-25 00:47:55.893 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:55.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 220.997ms +2024-05-25 00:47:56.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 397.8489ms +2024-05-25 00:47:56.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:47:56.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:47:56.091 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.091 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:47:56.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:47:56.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:47:56.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:47:56.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:47:56.092 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:47:56.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.093 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:47:56.094 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:47:56.094 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.179 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.8811ms +2024-05-25 00:47:56.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 88.6564ms +2024-05-25 00:47:56.181 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 88.7269ms +2024-05-25 00:47:56.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 114.436ms +2024-05-25 00:47:56.207 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 115.9916ms +2024-05-25 00:47:56.212 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 119.1738ms +2024-05-25 00:47:56.227 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.5664ms +2024-05-25 00:47:56.233 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 140.2315ms +2024-05-25 00:47:56.293 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 201.9893ms +2024-05-25 00:47:56.483 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:47:56.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 392.9455ms +2024-05-25 00:48:00.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:48:00.167 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:00.248 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:00.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 82.0498ms +2024-05-25 00:48:02.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:48:02.790 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:48:02.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:48:02.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:48:02.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:48:02.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:48:02.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:48:02.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:48:02.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:48:02.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:48:02.791 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.794 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.879 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 86.5508ms +2024-05-25 00:48:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 86.6437ms +2024-05-25 00:48:02.897 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 108.253ms +2024-05-25 00:48:02.904 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 113.6279ms +2024-05-25 00:48:02.931 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 141.3052ms +2024-05-25 00:48:02.940 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 148.5232ms +2024-05-25 00:48:02.942 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 149.1945ms +2024-05-25 00:48:02.950 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:02.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 157.8412ms +2024-05-25 00:48:03.022 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:03.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 232.0159ms +2024-05-25 00:48:03.189 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:03.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 397.6571ms +2024-05-25 00:48:07.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - null null +2024-05-25 00:48:07.323 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:07.406 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:07.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/7baaf1f2-430c-4371-9cc0-e0ccaf2858a1 - 200 null application/json 83.1546ms +2024-05-25 00:48:10.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:48:10.399 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:48:10.399 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:48:10.400 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:48:10.400 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:48:10.401 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:48:10.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:48:10.402 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:48:10.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:48:10.403 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.403 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.402 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:48:10.404 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.493 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 90.7093ms +2024-05-25 00:48:10.494 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 93.9351ms +2024-05-25 00:48:10.510 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 110.3632ms +2024-05-25 00:48:10.519 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 116.4866ms +2024-05-25 00:48:10.537 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 137.7484ms +2024-05-25 00:48:10.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 140.0251ms +2024-05-25 00:48:10.540 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 138.2088ms +2024-05-25 00:48:10.544 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 142.7653ms +2024-05-25 00:48:10.619 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.2374ms +2024-05-25 00:48:10.792 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:10.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 394.0233ms +2024-05-25 00:48:20.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:48:20.083 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.162 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 79.6067ms +2024-05-25 00:48:20.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:48:20.164 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.271 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 107.9708ms +2024-05-25 00:48:20.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:48:20.274 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.471 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:20.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 197.7125ms +2024-05-25 00:48:21.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:48:21.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:48:21.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.927 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:48:21.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:48:21.928 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:48:21.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:48:21.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.929 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:48:21.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:48:21.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:48:21.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:48:21.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.931 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:21.930 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.009 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 81.4606ms +2024-05-25 00:48:22.017 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 91.5339ms +2024-05-25 00:48:22.041 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 111.9353ms +2024-05-25 00:48:22.047 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 116.8963ms +2024-05-25 00:48:22.062 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 136.2469ms +2024-05-25 00:48:22.067 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.068 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 141.242ms +2024-05-25 00:48:22.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 141.131ms +2024-05-25 00:48:22.072 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 142.4022ms +2024-05-25 00:48:22.147 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 218.7054ms +2024-05-25 00:48:22.287 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 361.1318ms +2024-05-25 00:48:22.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 00:48:22.300 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 00:48:22.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 00:48:22.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 00:48:22.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 00:48:22.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.303 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 00:48:22.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 00:48:22.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 00:48:22.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 00:48:22.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 00:48:22.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.304 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.305 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.387 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 87.0212ms +2024-05-25 00:48:22.396 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 92.578ms +2024-05-25 00:48:22.399 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 95.017ms +2024-05-25 00:48:22.420 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 116.1168ms +2024-05-25 00:48:22.426 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 124.1554ms +2024-05-25 00:48:22.440 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 137.7469ms +2024-05-25 00:48:22.454 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 150.7666ms +2024-05-25 00:48:22.455 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 151.2298ms +2024-05-25 00:48:22.497 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 194.9485ms +2024-05-25 00:48:22.684 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 00:48:22.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 387.1108ms +2024-05-25 00:50:00.065 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 22:50:00. +2024-05-25 01:02:32.228 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/wwwroot. Static files may be unavailable. +2024-05-25 01:02:32.403 +02:00 [INF] Registering a service [id: mediafiles-service:54c83ba0eaad4fd9813c38c5536e1a2d] in Consul... +2024-05-25 01:02:32.431 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-25 01:02:32.435 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:02:32.436 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:02:32.444 +02:00 [INF] Received HTTP response headers after 5.8712ms - 200 +2024-05-25 01:02:32.447 +02:00 [INF] End processing HTTP request after 12.2294ms - 200 +2024-05-25 01:02:32.449 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 01:02:32.449 +02:00 [INF] Registered a service [id: mediafiles-service:54c83ba0eaad4fd9813c38c5536e1a2d] in Consul. +2024-05-25 01:02:32.453 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.upload_media_file' with routing key: 'upload_media_file' for an exchange: 'mediafiles'. +2024-05-25 01:02:32.466 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.delete_media_file' with routing key: 'delete_media_file' for an exchange: 'mediafiles'. +2024-05-25 01:02:32.469 +02:00 [INF] Declaring a queue: 'mediafiles-service/mediafiles.cleanup_unassociated_files' with routing key: 'cleanup_unassociated_files' for an exchange: 'mediafiles'. +2024-05-25 01:02:32.472 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_created' with routing key: 'student_created' for an exchange: 'students'. +2024-05-25 01:02:32.476 +02:00 [INF] Declaring a queue: 'mediafiles-service/students.student_updated' with routing key: 'student_updated' for an exchange: 'students'. +2024-05-25 01:02:32.477 +02:00 [INF] Declaring a queue: 'mediafiles-service/posts.post_created' with routing key: 'post_created' for an exchange: 'posts'. +2024-05-25 01:02:32.479 +02:00 [INF] Declaring a queue: 'mediafiles-service/events.event_created' with routing key: 'event_created' for an exchange: 'events'. +2024-05-25 01:02:43.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:02:43.583 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:44.180 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:44.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 660.0688ms +2024-05-25 01:02:46.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 01:02:46.772 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 01:02:46.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:02:46.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 01:02:46.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 01:02:46.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 01:02:46.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 01:02:46.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 01:02:46.777 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.775 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.776 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:46.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 01:02:46.778 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.025 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 249.4869ms +2024-05-25 01:02:47.081 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 307.8637ms +2024-05-25 01:02:47.096 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 324.016ms +2024-05-25 01:02:47.113 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 339.4048ms +2024-05-25 01:02:47.134 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 361.6232ms +2024-05-25 01:02:47.193 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 418.734ms +2024-05-25 01:02:47.202 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 425.977ms +2024-05-25 01:02:47.206 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 432.3861ms +2024-05-25 01:02:47.484 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 715.6872ms +2024-05-25 01:02:47.505 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 732.3364ms +2024-05-25 01:02:47.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:02:47.528 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 01:02:47.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 01:02:47.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 01:02:47.529 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 01:02:47.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 01:02:47.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 01:02:47.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 01:02:47.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 01:02:47.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 01:02:47.530 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.531 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.532 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.624 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 95.2152ms +2024-05-25 01:02:47.648 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.648 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 119.4ms +2024-05-25 01:02:47.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 118.4815ms +2024-05-25 01:02:47.652 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 124.8535ms +2024-05-25 01:02:47.713 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 182.4766ms +2024-05-25 01:02:47.714 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 183.8115ms +2024-05-25 01:02:47.746 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 217.8949ms +2024-05-25 01:02:47.796 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 265.7646ms +2024-05-25 01:02:47.857 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 328.3519ms +2024-05-25 01:02:47.959 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:02:47.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 429.6747ms +2024-05-25 01:04:23.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:04:23.950 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:04:24.089 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:04:24.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 140.9006ms +2024-05-25 01:10:00.084 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 23:10:00. +2024-05-25 01:20:00.512 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 23:20:00. +2024-05-25 01:30:00.458 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 23:30:00. +2024-05-25 01:40:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 23:40:00. +2024-05-25 01:48:06.223 +02:00 [INF] Received a message with ID: '1a36fbc6e9944e9b867f10487c3be2e7', Correlation ID: '7aa3346f458e47ff86ef508aef80a159', timestamp: 1716594486, queue: mediafiles-service/events.event_created, routing key: event_created, exchange: events, payload: +2024-05-25 01:48:06.244 +02:00 [INF] Handling a message: event_created with ID: 1a36fbc6e9944e9b867f10487c3be2e7, Correlation ID: 7aa3346f458e47ff86ef508aef80a159, retry: 0 +2024-05-25 01:48:06.284 +02:00 [INF] Associated media files for event with ID: ab979053-477c-49b4-b42e-02c1c4ce59ad. +2024-05-25 01:48:06.287 +02:00 [INF] Handled a message: event_created with ID: 1a36fbc6e9944e9b867f10487c3be2e7, Correlation ID: 7aa3346f458e47ff86ef508aef80a159, retry: 0 +2024-05-25 01:50:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/24/2024 23:50:00. +2024-05-25 01:50:59.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 01:50:59.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 01:50:59.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 01:50:59.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.438 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 01:50:59.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 01:50:59.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 01:50:59.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.441 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.437 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 01:50:59.443 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.440 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 01:50:59.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:50:59.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 01:50:59.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.446 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.447 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.932 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:50:59.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 494.0761ms +2024-05-25 01:51:00.019 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 574.7148ms +2024-05-25 01:51:00.146 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 714.3298ms +2024-05-25 01:51:00.171 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 736.1873ms +2024-05-25 01:51:00.229 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 784.3408ms +2024-05-25 01:51:00.275 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 833.0276ms +2024-05-25 01:51:00.354 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 909.0423ms +2024-05-25 01:51:00.366 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 926.8366ms +2024-05-25 01:51:00.373 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 937.726ms +2024-05-25 01:51:00.501 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 1064.6966ms +2024-05-25 01:51:00.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - null null +2024-05-25 01:51:00.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:51:00.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 01:51:00.512 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - null null +2024-05-25 01:51:00.516 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 01:51:00.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 01:51:00.517 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.518 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - null null +2024-05-25 01:51:00.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - null null +2024-05-25 01:51:00.519 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.519 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.519 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.514 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - null null +2024-05-25 01:51:00.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - null null +2024-05-25 01:51:00.520 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.520 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.607 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 93.2519ms +2024-05-25 01:51:00.608 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4fb446a0-48e4-4410-98c3-ada8ba9782a1 - 200 null application/json 92.5866ms +2024-05-25 01:51:00.634 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 118.5784ms +2024-05-25 01:51:00.664 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.665 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/9be5c762-d755-4c38-bbb9-5e20b659bbeb - 200 null application/json 150.1353ms +2024-05-25 01:51:00.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/b3f64da8-8a43-46aa-b0e6-176fced74c27 - 200 null application/json 147.3688ms +2024-05-25 01:51:00.715 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 201.2664ms +2024-05-25 01:51:00.717 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/8e87be09-8732-4c69-b3e6-4ab5a0560d88 - 200 null application/json 201.4977ms +2024-05-25 01:51:00.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - null null +2024-05-25 01:51:00.773 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.826 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 314.1461ms +2024-05-25 01:51:00.836 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/63bda752-73d6-4779-91ad-13db59e685bd - 200 null application/json 318.3037ms +2024-05-25 01:51:00.881 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/3a409f39-d9c0-46ac-aa42-72726a4981a2 - 200 null application/json 109.0962ms +2024-05-25 01:51:00.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - null null +2024-05-25 01:51:00.884 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.899 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:00.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/4a515200-b9ee-45cb-81ca-893e186d77f5 - 200 null application/json 387.1286ms +2024-05-25 01:51:01.071 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:01.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/ab120f8e-985f-473c-ad07-dea8b6259952 - 200 null application/json 187.5082ms +2024-05-25 01:51:01.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - null null +2024-05-25 01:51:01.077 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:01.161 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:01.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/00994fe5-9379-4ee6-80f0-ae1282c3aa41 - 200 null application/json 84.5678ms +2024-05-25 01:51:19.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - null null +2024-05-25 01:51:19.652 +02:00 [INF] Executing endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:19.791 +02:00 [INF] Executed endpoint 'HTTP: GET media-files/{mediaFileId}' +2024-05-25 01:51:19.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/media-files/d37fb852-a3d8-4c49-9949-175682e37ebe - 200 null application/json 142.2551ms +2024-05-25 02:00:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:00:00. +2024-05-25 02:10:00.074 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:10:00. +2024-05-25 02:20:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:20:00. +2024-05-25 02:30:00.455 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:30:00. +2024-05-25 02:40:00.451 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:40:00. +2024-05-25 02:50:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 00:50:00. +2024-05-25 03:00:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:00:00. +2024-05-25 03:10:00.401 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:10:00. +2024-05-25 03:20:00.399 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:20:00. +2024-05-25 03:30:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:30:00. +2024-05-25 03:40:00.539 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:40:00. +2024-05-25 03:50:00.542 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 01:50:00. +2024-05-25 04:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:00:00. +2024-05-25 04:10:00.370 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:10:00. +2024-05-25 04:20:00.369 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:20:00. +2024-05-25 04:30:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:30:00. +2024-05-25 04:40:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:40:00. +2024-05-25 04:50:00.480 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 02:50:00. +2024-05-25 05:00:00.572 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:00:00. +2024-05-25 05:10:00.149 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:10:00. +2024-05-25 05:20:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:20:00. +2024-05-25 05:30:01.435 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:30:00. +2024-05-25 05:40:01.421 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:40:01. +2024-05-25 05:50:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 03:50:00. +2024-05-25 06:00:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:00:00. +2024-05-25 06:10:00.374 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:10:00. +2024-05-25 06:20:00.377 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:20:00. +2024-05-25 06:30:00.067 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:30:00. +2024-05-25 06:40:00.488 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:40:00. +2024-05-25 06:50:00.479 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 04:50:00. +2024-05-25 07:00:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:00:00. +2024-05-25 07:10:00.413 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:10:00. +2024-05-25 07:20:00.405 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:20:00. +2024-05-25 07:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:30:00. +2024-05-25 07:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:40:00. +2024-05-25 07:50:00.429 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 05:50:00. +2024-05-25 08:00:00.488 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:00:00. +2024-05-25 08:10:00.126 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:10:00. +2024-05-25 08:20:00.058 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:20:00. +2024-05-25 08:30:00.418 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:30:00. +2024-05-25 08:40:00.421 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:40:00. +2024-05-25 08:50:00.063 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 06:50:00. +2024-05-25 09:00:00.451 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:00:00. +2024-05-25 09:10:00.452 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:10:00. +2024-05-25 09:20:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:20:00. +2024-05-25 09:30:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:30:00. +2024-05-25 09:40:00.479 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:40:00. +2024-05-25 09:50:00.476 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 07:50:00. +2024-05-25 10:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:00:00. +2024-05-25 10:10:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:10:00. +2024-05-25 10:20:00.424 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:20:00. +2024-05-25 10:30:00.427 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:30:00. +2024-05-25 10:40:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:40:00. +2024-05-25 10:50:00.411 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 08:50:00. +2024-05-25 11:00:00.647 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:00:00. +2024-05-25 11:10:00.303 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:10:00. +2024-05-25 11:20:00.088 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:20:00. +2024-05-25 11:30:00.532 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:30:00. +2024-05-25 11:40:00.518 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:40:00. +2024-05-25 11:50:00.071 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 09:50:00. +2024-05-25 12:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:00:00. +2024-05-25 12:10:00.434 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:10:00. +2024-05-25 12:20:00.433 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:20:00. +2024-05-25 12:30:00.060 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:30:00. +2024-05-25 12:40:00.446 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:40:00. +2024-05-25 12:50:00.451 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 10:50:00. +2024-05-25 13:00:00.066 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:00:00. +2024-05-25 13:10:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:10:00. +2024-05-25 13:20:00.463 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:20:00. +2024-05-25 13:30:00.468 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:30:00. +2024-05-25 13:40:00.069 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:40:00. +2024-05-25 13:50:00.070 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 11:50:00. +2024-05-25 14:00:06.005 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:00:00. +2024-05-25 14:10:06.005 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:10:05. +2024-05-25 14:20:00.073 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:20:00. +2024-05-25 14:30:00.444 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:30:00. +2024-05-25 14:40:00.437 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:40:00. +2024-05-25 14:50:00.057 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 12:50:00. +2024-05-25 15:00:00.059 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:00:00. +2024-05-25 15:10:00.688 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:10:00. +2024-05-25 15:20:00.687 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:20:00. +2024-05-25 15:30:00.068 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:30:00. +2024-05-25 15:40:00.062 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:40:00. +2024-05-25 15:50:00.422 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 13:50:00. +2024-05-25 16:00:00.424 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 14:00:00. +2024-05-25 16:10:00.064 +02:00 [INF] Cleaned unmatched files for all entities at 05/25/2024 14:10:00. diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpac.D74A0F3E.Up2Date b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpac.D74A0F3E.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfo.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfo.cs new file mode 100644 index 000000000..0d674f7c1 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.MediaFiles.Api")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.MediaFiles.Api")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.MediaFiles.Api")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfoInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfoInputs.cache new file mode 100644 index 000000000..f9f50330f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +34642bf4aec12515975e9ff283184f759cb6ba48e8569308985a6a073d7dfb2a diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..d14da57e8 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = true +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.MediaFiles.Api +build_property.RootNamespace = MiniSpace.Services.MediaFiles.Api +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api +build_property._RazorSourceGeneratorDebug = diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GlobalUsings.g.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GlobalUsings.g.cs new file mode 100644 index 000000000..025530a29 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 000000000..4a3e44086 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("App.Metrics.AspNetCore.Mvc.Core")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("App.Metrics.AspNetCore.Mvc")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.Docs.Swagger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.Tracing.Jaeger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi.CQRS")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi.Swagger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("MiniSpace.Services.MediaFiles.Infrastructure")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenTracing.Contrib.NetCore")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Annotations")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.assets.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.assets.cache new file mode 100644 index 000000000..9fdc9d8b4 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.assets.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.AssemblyReference.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.AssemblyReference.cache new file mode 100644 index 000000000..ecf6fc115 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.CoreCompileInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..50c52d02f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7ae85c9da79a54bf996785e222320ecef5dbaa03592330ebb041cc6ac45dddc7 diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.FileListAbsolute.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..fac946194 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.FileListAbsolute.txt @@ -0,0 +1,188 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.Development.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.docker.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/appsettings.local.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.runtimeconfig.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/AWSSDK.SecurityToken.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Auth.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.HTTP.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Security.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/DnsClient.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Elasticsearch.Net.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Figgle.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Bson.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Driver.GridFS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Newtonsoft.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Polly.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/protobuf-net.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/RabbitMQ.Client.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Scrutor.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SharpCompress.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SixLabors.ImageSharp.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/SmartFormat.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Snappier.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/StackExchange.Redis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Security.Permissions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/System.Windows.Extensions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/Utf8Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/VaultSharp.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/ZstdSharp.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.MvcApplicationPartsAssemblyInfo.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.build.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.development.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.MiniSpace.Services.MediaFiles.Api.Microsoft.AspNetCore.StaticWebAssets.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.MediaFiles.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.MediaFiles.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.MediaFiles.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.pack.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/scopedcss/bundle/MiniSpace.Services.MediaFiles.Api.styles.css +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpac.D74A0F3E.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.genruntimeconfig.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Api.dll diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll new file mode 100644 index 000000000..e1e3eef19 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.genruntimeconfig.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.genruntimeconfig.cache new file mode 100644 index 000000000..2221cbff4 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.genruntimeconfig.cache @@ -0,0 +1 @@ +abd014cecef436afaea25d9f0e69fe1baa9a99a8518ff4ebccc5417f7f4abf03 diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb new file mode 100644 index 000000000..54682f3ed Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.sourcelink.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Api.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/apphost b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/apphost new file mode 100755 index 000000000..3532e920b Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/apphost differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Api.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Api.dll new file mode 100644 index 000000000..446c10425 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Api.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Api.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Api.dll new file mode 100644 index 000000000..446c10425 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Api.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.build.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 000000000..49f5bcd21 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "+pCy3+rwfbOPa1kfxLDQD3n+1LXXKtkZdqj/ozf6tMw=", + "Source": "MiniSpace.Services.MediaFiles.Api", + "BasePath": "_content/MiniSpace.Services.MediaFiles.Api", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.MediaFiles.Api.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.MediaFiles.Api.props new file mode 100644 index 000000000..5a6032a7c --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.MediaFiles.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.MediaFiles.Api.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.MediaFiles.Api.props new file mode 100644 index 000000000..d9a9a76c9 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.MediaFiles.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.MediaFiles.Api.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.MediaFiles.Api.props new file mode 100644 index 000000000..f1f641ca0 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.MediaFiles.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.dgspec.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.dgspec.json new file mode 100644 index 000000000..8ca59929b --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.dgspec.json @@ -0,0 +1,407 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Api", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Driver.GridFS": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.props new file mode 100644 index 000000000..bd5acb43b --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + + /home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0 + /home/kaliuser/.nuget/packages/awssdk.core/3.7.100.14 + /home/kaliuser/.nuget/packages/awssdk.securitytoken/3.7.100.14 + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.targets b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/MiniSpace.Services.MediaFiles.Api.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.assets.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.assets.json new file mode 100644 index 000000000..7766033a0 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.assets.json @@ -0,0 +1,12680 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "ApacheThrift/0.14.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Logging.Console": "3.1.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.1/Thrift.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": {} + } + }, + "App.Metrics/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "2.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Concurrency": "2.0.1", + "Microsoft.CSharp": "4.4.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "dependencies": { + "AWSSDK.Core": "[3.7.100.14, 4.0.0)" + }, + "compile": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + } + }, + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Auth/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "compile": { + "lib/net6.0/Convey.Auth.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": {} + } + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + } + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "compile": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + } + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "compile": { + "lib/net6.0/Convey.HTTP.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": {} + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + } + }, + "Convey.Logging/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.ElasticSearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "compile": { + "lib/net6.0/Convey.Logging.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": {} + } + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "compile": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + } + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + } + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "compile": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": {} + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + } + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": {} + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + } + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + } + }, + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Jaeger/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + } + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Newtonsoft.Json": "12.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.10.0", + "Microsoft.IdentityModel.Tokens": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.25.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver.Core": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.25.0": { + "type": "package", + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.GridFS/2.25.0": { + "type": "package", + "dependencies": { + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver": "2.25.0", + "MongoDB.Driver.Core": "2.25.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Libmongocrypt/1.8.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open.Serialization/2.3.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/Open.Serialization.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": {} + } + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + } + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + } + }, + "OpenTracing/0.12.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Hosting.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Logging": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Options": "[6.0.0, 7.0.0)", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "Polly/7.2.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + } + }, + "protobuf-net/2.4.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "compile": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "compile": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "compile": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.0.0", + "Serilog": "2.9.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.0.4", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.6.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.8.0", + "Serilog.Formatting.Compact": "1.0.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.1.1", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "dependencies": { + "Serilog": "2.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Threading.Timer": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "build": { + "build/_._": {} + } + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.Text.Json": "4.7.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "compile": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Pipes.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.3.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "ref/netstandard2.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "lib/netstandard2.0/System.ServiceModel.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "Utf8Json/1.3.7": { + "type": "package", + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + } + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "compile": { + "lib/net7.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net7.0/ZstdSharp.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.MediaFiles.Core": "1.0.0", + "MongoDB.Bson": "2.25.0", + "SixLabors.ImageSharp": "3.1.4" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Application.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Application.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.MediaFiles.Application": "1.0.0", + "MongoDB.Driver.GridFS": "2.25.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "ApacheThrift/0.14.1": { + "sha512": "WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "type": "package", + "path": "apachethrift/0.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "apachethrift.0.14.1.nupkg.sha512", + "apachethrift.nuspec", + "lib/netstandard2.0/Thrift.dll", + "lib/netstandard2.1/Thrift.dll" + ] + }, + "App.Metrics/4.3.0": { + "sha512": "D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "type": "package", + "path": "app.metrics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.4.3.0.nupkg.sha512", + "app.metrics.nuspec", + "lib/net461/App.Metrics.dll", + "lib/net461/App.Metrics.pdb", + "lib/net461/App.Metrics.xml", + "lib/netstandard2.0/App.Metrics.dll", + "lib/netstandard2.0/App.Metrics.pdb", + "lib/netstandard2.0/App.Metrics.xml", + "logo.png" + ] + }, + "App.Metrics.Abstractions/4.3.0": { + "sha512": "ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "type": "package", + "path": "app.metrics.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.abstractions.4.3.0.nupkg.sha512", + "app.metrics.abstractions.nuspec", + "lib/net461/App.Metrics.Abstractions.dll", + "lib/net461/App.Metrics.Abstractions.pdb", + "lib/net461/App.Metrics.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore/4.3.0": { + "sha512": "b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "type": "package", + "path": "app.metrics.aspnetcore/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "sha512": "VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "type": "package", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.abstractions.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "sha512": "Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "type": "package", + "path": "app.metrics.aspnetcore.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "sha512": "Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "type": "package", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.endpoints.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "sha512": "9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "type": "package", + "path": "app.metrics.aspnetcore.health/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "sha512": "Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "type": "package", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "sha512": "2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "type": "package", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.endpoints.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "sha512": "NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "type": "package", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.xml" + ] + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "sha512": "BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "type": "package", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "sha512": "CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "sha512": "acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "sha512": "cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "type": "package", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "app.metrics.aspnetcore.reporting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "sha512": "s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "type": "package", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.routing.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "sha512": "NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "type": "package", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.tracking.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.xml", + "logo.png" + ] + }, + "App.Metrics.Concurrency/4.3.0": { + "sha512": "otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "type": "package", + "path": "app.metrics.concurrency/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.concurrency.4.3.0.nupkg.sha512", + "app.metrics.concurrency.nuspec", + "lib/netstandard1.1/App.Metrics.Concurrency.dll", + "lib/netstandard1.1/App.Metrics.Concurrency.pdb", + "lib/netstandard1.1/App.Metrics.Concurrency.xml", + "lib/netstandard2.0/App.Metrics.Concurrency.dll", + "lib/netstandard2.0/App.Metrics.Concurrency.pdb", + "lib/netstandard2.0/App.Metrics.Concurrency.xml", + "logo.png" + ] + }, + "App.Metrics.Core/4.3.0": { + "sha512": "HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "type": "package", + "path": "app.metrics.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.core.4.3.0.nupkg.sha512", + "app.metrics.core.nuspec", + "lib/net461/App.Metrics.Core.dll", + "lib/net461/App.Metrics.Core.pdb", + "lib/net461/App.Metrics.Core.xml", + "lib/netstandard2.0/App.Metrics.Core.dll", + "lib/netstandard2.0/App.Metrics.Core.pdb", + "lib/netstandard2.0/App.Metrics.Core.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "sha512": "+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "type": "package", + "path": "app.metrics.extensions.configuration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "app.metrics.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "sha512": "lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "type": "package", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "app.metrics.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "sha512": "uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "type": "package", + "path": "app.metrics.extensions.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "app.metrics.extensions.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.xml", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "sha512": "PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "type": "package", + "path": "app.metrics.formatters.ascii/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "app.metrics.formatters.ascii.nuspec", + "lib/net461/App.Metrics.Formatters.Ascii.dll", + "lib/net461/App.Metrics.Formatters.Ascii.pdb", + "lib/net461/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "sha512": "p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "type": "package", + "path": "app.metrics.formatters.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "app.metrics.formatters.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Json/4.3.0": { + "sha512": "H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "type": "package", + "path": "app.metrics.formatters.json/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.json.4.3.0.nupkg.sha512", + "app.metrics.formatters.json.nuspec", + "lib/net461/App.Metrics.Formatters.Json.dll", + "lib/net461/App.Metrics.Formatters.Json.pdb", + "lib/net461/App.Metrics.Formatters.Json.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Json.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Json.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "sha512": "cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "type": "package", + "path": "app.metrics.formatters.prometheus/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "app.metrics.formatters.prometheus.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.xml", + "logo.png" + ] + }, + "App.Metrics.Health/3.1.0": { + "sha512": "JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "type": "package", + "path": "app.metrics.health/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.3.1.0.nupkg.sha512", + "app.metrics.health.nuspec", + "lib/netstandard2.0/App.Metrics.Health.dll", + "lib/netstandard2.0/App.Metrics.Health.xml" + ] + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "sha512": "DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "type": "package", + "path": "app.metrics.health.abstractions/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "app.metrics.health.abstractions.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.xml" + ] + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "sha512": "Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "type": "package", + "path": "app.metrics.health.checks.http/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "app.metrics.health.checks.http.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.xml" + ] + }, + "App.Metrics.Health.Core/3.1.0": { + "sha512": "mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "type": "package", + "path": "app.metrics.health.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.core.3.1.0.nupkg.sha512", + "app.metrics.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.Health.Core.xml" + ] + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "sha512": "5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "type": "package", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.xml" + ] + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "sha512": "N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "type": "package", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.xml" + ] + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "sha512": "TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "type": "package", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.xml" + ] + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "sha512": "9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "type": "package", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.ascii.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.xml" + ] + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "sha512": "23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "type": "package", + "path": "app.metrics.health.formatters.json/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.json.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.xml" + ] + }, + "App.Metrics.Reporting.Console/4.3.0": { + "sha512": "LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "type": "package", + "path": "app.metrics.reporting.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.console.4.3.0.nupkg.sha512", + "app.metrics.reporting.console.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Console.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Console.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.Http/4.3.0": { + "sha512": "D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "type": "package", + "path": "app.metrics.reporting.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.http.4.3.0.nupkg.sha512", + "app.metrics.reporting.http.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Http.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Http.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "sha512": "uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "type": "package", + "path": "app.metrics.reporting.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "app.metrics.reporting.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.xml", + "logo.png" + ] + }, + "AWSSDK.Core/3.7.100.14": { + "sha512": "gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==", + "type": "package", + "path": "awssdk.core/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "awssdk.core.3.7.100.14.nupkg.sha512", + "awssdk.core.nuspec", + "lib/net35/AWSSDK.Core.dll", + "lib/net35/AWSSDK.Core.pdb", + "lib/net35/AWSSDK.Core.xml", + "lib/net45/AWSSDK.Core.dll", + "lib/net45/AWSSDK.Core.pdb", + "lib/net45/AWSSDK.Core.xml", + "lib/netcoreapp3.1/AWSSDK.Core.dll", + "lib/netcoreapp3.1/AWSSDK.Core.pdb", + "lib/netcoreapp3.1/AWSSDK.Core.xml", + "lib/netstandard2.0/AWSSDK.Core.dll", + "lib/netstandard2.0/AWSSDK.Core.pdb", + "lib/netstandard2.0/AWSSDK.Core.xml", + "tools/account-management.ps1" + ] + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "sha512": "dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "type": "package", + "path": "awssdk.securitytoken/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/AWSSDK.SecurityToken.CodeAnalysis.dll", + "awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "awssdk.securitytoken.nuspec", + "lib/net35/AWSSDK.SecurityToken.dll", + "lib/net35/AWSSDK.SecurityToken.pdb", + "lib/net35/AWSSDK.SecurityToken.xml", + "lib/net45/AWSSDK.SecurityToken.dll", + "lib/net45/AWSSDK.SecurityToken.pdb", + "lib/net45/AWSSDK.SecurityToken.xml", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.pdb", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.xml", + "lib/netstandard2.0/AWSSDK.SecurityToken.dll", + "lib/netstandard2.0/AWSSDK.SecurityToken.pdb", + "lib/netstandard2.0/AWSSDK.SecurityToken.xml", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.Auth/1.1.448": { + "sha512": "8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "type": "package", + "path": "convey.auth/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.auth.1.1.448.nupkg.sha512", + "convey.auth.nuspec", + "lib/net6.0/Convey.Auth.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.Discovery.Consul/1.1.448": { + "sha512": "3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "type": "package", + "path": "convey.discovery.consul/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.discovery.consul.1.1.448.nupkg.sha512", + "convey.discovery.consul.nuspec", + "lib/net6.0/Convey.Discovery.Consul.dll" + ] + }, + "Convey.Docs.Swagger/1.1.448": { + "sha512": "k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "type": "package", + "path": "convey.docs.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.docs.swagger.1.1.448.nupkg.sha512", + "convey.docs.swagger.nuspec", + "lib/net6.0/Convey.Docs.Swagger.dll" + ] + }, + "Convey.HTTP/1.1.448": { + "sha512": "MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "type": "package", + "path": "convey.http/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.http.1.1.448.nupkg.sha512", + "convey.http.nuspec", + "lib/net6.0/Convey.HTTP.dll" + ] + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "sha512": "QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "type": "package", + "path": "convey.loadbalancing.fabio/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "convey.loadbalancing.fabio.nuspec", + "lib/net6.0/Convey.LoadBalancing.Fabio.dll" + ] + }, + "Convey.Logging/1.1.448": { + "sha512": "sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "type": "package", + "path": "convey.logging/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.1.1.448.nupkg.sha512", + "convey.logging.nuspec", + "lib/net6.0/Convey.Logging.dll" + ] + }, + "Convey.Logging.CQRS/1.1.448": { + "sha512": "Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "type": "package", + "path": "convey.logging.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.cqrs.1.1.448.nupkg.sha512", + "convey.logging.cqrs.nuspec", + "lib/net6.0/Convey.Logging.CQRS.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "sha512": "cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "type": "package", + "path": "convey.messagebrokers.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "convey.messagebrokers.cqrs.nuspec", + "lib/net6.0/Convey.MessageBrokers.CQRS.dll" + ] + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "sha512": "UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "type": "package", + "path": "convey.messagebrokers.outbox/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.dll" + ] + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "sha512": "skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "type": "package", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.mongo.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll" + ] + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "sha512": "iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "type": "package", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "convey.messagebrokers.rabbitmq.nuspec", + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "sha512": "PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "type": "package", + "path": "convey.metrics.appmetrics/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "convey.metrics.appmetrics.nuspec", + "lib/net6.0/Convey.Metrics.AppMetrics.dll" + ] + }, + "Convey.Persistence.MongoDB/1.1.448": { + "sha512": "KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "type": "package", + "path": "convey.persistence.mongodb/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.mongodb.1.1.448.nupkg.sha512", + "convey.persistence.mongodb.nuspec", + "lib/net6.0/Convey.Persistence.MongoDB.dll" + ] + }, + "Convey.Persistence.Redis/1.1.448": { + "sha512": "pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "type": "package", + "path": "convey.persistence.redis/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.redis.1.1.448.nupkg.sha512", + "convey.persistence.redis.nuspec", + "lib/net6.0/Convey.Persistence.Redis.dll" + ] + }, + "Convey.Secrets.Vault/1.1.448": { + "sha512": "FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "type": "package", + "path": "convey.secrets.vault/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.secrets.vault.1.1.448.nupkg.sha512", + "convey.secrets.vault.nuspec", + "lib/net6.0/Convey.Secrets.Vault.dll" + ] + }, + "Convey.Security/1.1.448": { + "sha512": "qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "type": "package", + "path": "convey.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.security.1.1.448.nupkg.sha512", + "convey.security.nuspec", + "lib/net6.0/Convey.Security.dll" + ] + }, + "Convey.Tracing.Jaeger/1.1.448": { + "sha512": "0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "type": "package", + "path": "convey.tracing.jaeger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.dll" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "sha512": "9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "type": "package", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.rabbitmq.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll" + ] + }, + "Convey.WebApi/1.1.448": { + "sha512": "2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "type": "package", + "path": "convey.webapi/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.1.1.448.nupkg.sha512", + "convey.webapi.nuspec", + "lib/net6.0/Convey.WebApi.dll" + ] + }, + "Convey.WebApi.CQRS/1.1.448": { + "sha512": "EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "type": "package", + "path": "convey.webapi.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.cqrs.1.1.448.nupkg.sha512", + "convey.webapi.cqrs.nuspec", + "lib/net6.0/Convey.WebApi.CQRS.dll" + ] + }, + "Convey.WebApi.Security/1.1.448": { + "sha512": "R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "type": "package", + "path": "convey.webapi.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.security.1.1.448.nupkg.sha512", + "convey.webapi.security.nuspec", + "lib/net6.0/Convey.WebApi.Security.dll" + ] + }, + "Convey.WebApi.Swagger/1.1.448": { + "sha512": "cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "type": "package", + "path": "convey.webapi.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.swagger.1.1.448.nupkg.sha512", + "convey.webapi.swagger.nuspec", + "lib/net6.0/Convey.WebApi.Swagger.dll" + ] + }, + "DnsClient/1.6.1": { + "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "type": "package", + "path": "dnsclient/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.6.1.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/net5.0/DnsClient.dll", + "lib/net5.0/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Elasticsearch.Net/7.8.1": { + "sha512": "vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "type": "package", + "path": "elasticsearch.net/7.8.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "elasticsearch.net.7.8.1.nupkg.sha512", + "elasticsearch.net.nuspec", + "lib/net461/Elasticsearch.Net.dll", + "lib/net461/Elasticsearch.Net.pdb", + "lib/net461/Elasticsearch.Net.xml", + "lib/netstandard2.0/Elasticsearch.Net.dll", + "lib/netstandard2.0/Elasticsearch.Net.pdb", + "lib/netstandard2.0/Elasticsearch.Net.xml", + "lib/netstandard2.1/Elasticsearch.Net.dll", + "lib/netstandard2.1/Elasticsearch.Net.pdb", + "lib/netstandard2.1/Elasticsearch.Net.xml", + "license.txt", + "nuget-icon.png" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Jaeger/1.0.3": { + "sha512": "y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "type": "package", + "path": "jaeger/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.1.0.3.nupkg.sha512", + "jaeger.nuspec" + ] + }, + "Jaeger.Communication.Thrift/1.0.3": { + "sha512": "LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "type": "package", + "path": "jaeger.communication.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.communication.thrift.1.0.3.nupkg.sha512", + "jaeger.communication.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll", + "lib/netstandard2.0/Jaeger.Communication.Thrift.pdb" + ] + }, + "Jaeger.Core/1.0.3": { + "sha512": "GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "type": "package", + "path": "jaeger.core/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.core.1.0.3.nupkg.sha512", + "jaeger.core.nuspec", + "lib/netstandard2.0/Jaeger.Core.dll", + "lib/netstandard2.0/Jaeger.Core.pdb", + "lib/netstandard2.0/Jaeger.Core.xml" + ] + }, + "Jaeger.Senders.Thrift/1.0.3": { + "sha512": "3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "type": "package", + "path": "jaeger.senders.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.senders.thrift.1.0.3.nupkg.sha512", + "jaeger.senders.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll", + "lib/netstandard2.0/Jaeger.Senders.Thrift.pdb", + "lib/netstandard2.0/Jaeger.Senders.Thrift.xml" + ] + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "sha512": "VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.xml", + "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.certificate.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "sha512": "5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "sha512": "4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "sha512": "1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "sha512": "YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "sha512": "M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "sha512": "7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "sha512": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.6.0": { + "sha512": "kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "type": "package", + "path": "microsoft.csharp/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.6.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "sha512": "Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "sha512": "DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "sha512": "lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "sha512": "M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "type": "package", + "path": "microsoft.extensions.hosting/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Hosting.dll", + "lib/net461/Microsoft.Extensions.Hosting.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/6.0.0": { + "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "type": "package", + "path": "microsoft.extensions.http/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Http.dll", + "lib/net461/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "sha512": "ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net461/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "sha512": "gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "type": "package", + "path": "microsoft.extensions.logging.console/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Console.dll", + "lib/net461/Microsoft.Extensions.Logging.Console.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "sha512": "BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net461/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "sha512": "IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "sha512": "C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "sha512": "KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "type": "package", + "path": "microsoft.net.http.headers/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.1.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/2.25.0": { + "sha512": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "type": "package", + "path": "mongodb.bson/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.25.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.25.0": { + "sha512": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "type": "package", + "path": "mongodb.driver/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.25.0.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.25.0": { + "sha512": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "type": "package", + "path": "mongodb.driver.core/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES", + "lib/net472/MongoDB.Driver.Core.dll", + "lib/net472/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.25.0.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.GridFS/2.25.0": { + "sha512": "RFvBxqr0H16pzLfuPHsyyVvRfr2nR/GjnBMOcfkxDwwlEipR2l9HI/7OFSaKs4wED+YjwIsd4GJ+eb2bLYkQxA==", + "type": "package", + "path": "mongodb.driver.gridfs/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Driver.GridFS.dll", + "lib/net472/MongoDB.Driver.GridFS.xml", + "lib/netstandard2.0/MongoDB.Driver.GridFS.dll", + "lib/netstandard2.0/MongoDB.Driver.GridFS.xml", + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll", + "lib/netstandard2.1/MongoDB.Driver.GridFS.xml", + "mongodb.driver.gridfs.2.25.0.nupkg.sha512", + "mongodb.driver.gridfs.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Libmongocrypt/1.8.2": { + "sha512": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==", + "type": "package", + "path": "mongodb.libmongocrypt/1.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.8.2.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Open.Serialization/2.3.1": { + "sha512": "HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "type": "package", + "path": "open.serialization/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.dll", + "lib/netstandard2.0/Open.Serialization.xml", + "lib/netstandard2.1/Open.Serialization.dll", + "logo.png", + "open.serialization.2.3.1.nupkg.sha512", + "open.serialization.nuspec" + ] + }, + "Open.Serialization.Json/2.3.1": { + "sha512": "+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "type": "package", + "path": "open.serialization.json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.dll", + "lib/netstandard2.0/Open.Serialization.Json.xml", + "lib/netstandard2.1/Open.Serialization.Json.dll", + "logo.png", + "open.serialization.json.2.3.1.nupkg.sha512", + "open.serialization.json.nuspec" + ] + }, + "Open.Serialization.Json.System/2.3.2": { + "sha512": "oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "type": "package", + "path": "open.serialization.json.system/2.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.System.dll", + "lib/netstandard2.1/Open.Serialization.Json.System.dll", + "logo.png", + "open.serialization.json.system.2.3.2.nupkg.sha512", + "open.serialization.json.system.nuspec" + ] + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "sha512": "8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "type": "package", + "path": "open.serialization.json.utf8json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.Utf8Json.dll", + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll", + "logo.png", + "open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "open.serialization.json.utf8json.nuspec" + ] + }, + "OpenTracing/0.12.1": { + "sha512": "8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "type": "package", + "path": "opentracing/0.12.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/OpenTracing.dll", + "lib/net45/OpenTracing.pdb", + "lib/net45/OpenTracing.xml", + "lib/netstandard1.3/OpenTracing.dll", + "lib/netstandard1.3/OpenTracing.pdb", + "lib/netstandard1.3/OpenTracing.xml", + "lib/netstandard2.0/OpenTracing.dll", + "lib/netstandard2.0/OpenTracing.pdb", + "lib/netstandard2.0/OpenTracing.xml", + "opentracing.0.12.1.nupkg.sha512", + "opentracing.nuspec" + ] + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "sha512": "bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "type": "package", + "path": "opentracing.contrib.netcore/0.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/OpenTracing.Contrib.NetCore.dll", + "lib/net5.0/OpenTracing.Contrib.NetCore.xml", + "lib/net6.0/OpenTracing.Contrib.NetCore.dll", + "lib/net6.0/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.xml", + "opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "opentracing.contrib.netcore.nuspec", + "package-icon.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "Polly/7.2.2": { + "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "type": "package", + "path": "polly/7.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Polly.dll", + "lib/net461/Polly.pdb", + "lib/net461/Polly.xml", + "lib/net472/Polly.dll", + "lib/net472/Polly.pdb", + "lib/net472/Polly.xml", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.pdb", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.pdb", + "lib/netstandard2.0/Polly.xml", + "polly.7.2.2.nupkg.sha512", + "polly.nuspec" + ] + }, + "protobuf-net/2.4.0": { + "sha512": "j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "type": "package", + "path": "protobuf-net/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/protobuf-net.dll", + "lib/net20/protobuf-net.xml", + "lib/net35/protobuf-net.dll", + "lib/net35/protobuf-net.xml", + "lib/net40/protobuf-net.dll", + "lib/net40/protobuf-net.xml", + "lib/netcoreapp2.1/protobuf-net.dll", + "lib/netcoreapp2.1/protobuf-net.xml", + "lib/netstandard1.0/protobuf-net.dll", + "lib/netstandard1.0/protobuf-net.xml", + "lib/netstandard1.3/protobuf-net.dll", + "lib/netstandard1.3/protobuf-net.xml", + "lib/netstandard2.0/protobuf-net.dll", + "lib/netstandard2.0/protobuf-net.xml", + "lib/uap10.0/protobuf-net.dll", + "lib/uap10.0/protobuf-net.pri", + "lib/uap10.0/protobuf-net.xml", + "protobuf-net.2.4.0.nupkg.sha512", + "protobuf-net.nuspec" + ] + }, + "RabbitMQ.Client/6.5.0": { + "sha512": "9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "type": "package", + "path": "rabbitmq.client/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/RabbitMQ.Client.dll", + "lib/net461/RabbitMQ.Client.xml", + "lib/netstandard2.0/RabbitMQ.Client.dll", + "lib/netstandard2.0/RabbitMQ.Client.xml", + "rabbitmq.client.6.5.0.nupkg.sha512", + "rabbitmq.client.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.3.0": { + "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "type": "package", + "path": "runtime.native.system.net.security/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.3.0.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/4.1.0": { + "sha512": "qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "type": "package", + "path": "serilog.aspnetcore/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net5.0/Serilog.AspNetCore.dll", + "lib/net5.0/Serilog.AspNetCore.xml", + "lib/netcoreapp3.1/Serilog.AspNetCore.dll", + "lib/netcoreapp3.1/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "lib/netstandard2.1/Serilog.AspNetCore.dll", + "lib/netstandard2.1/Serilog.AspNetCore.xml", + "serilog.aspnetcore.4.1.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "sha512": "nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "type": "package", + "path": "serilog.extensions.hosting/4.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.4.1.2.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/3.1.0": { + "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "type": "package", + "path": "serilog.extensions.logging/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.3.1.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/1.1.0": { + "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "type": "package", + "path": "serilog.formatting.compact/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Serilog.Formatting.Compact.dll", + "lib/net452/Serilog.Formatting.Compact.xml", + "lib/netstandard1.1/Serilog.Formatting.Compact.dll", + "lib/netstandard1.1/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "serilog.formatting.compact.1.1.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "sha512": "768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "type": "package", + "path": "serilog.formatting.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Formatting.Elasticsearch.dll", + "lib/net45/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.xml", + "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "serilog.formatting.elasticsearch.nuspec" + ] + }, + "Serilog.Settings.Configuration/3.1.0": { + "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "type": "package", + "path": "serilog.settings.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Serilog.Settings.Configuration.dll", + "lib/net451/Serilog.Settings.Configuration.xml", + "lib/net461/Serilog.Settings.Configuration.dll", + "lib/net461/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.3.1.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/4.0.1": { + "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "type": "package", + "path": "serilog.sinks.console/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Console.dll", + "lib/net45/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/netstandard1.3/Serilog.Sinks.Console.dll", + "lib/netstandard1.3/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "serilog.sinks.console.4.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "sha512": "SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "type": "package", + "path": "serilog.sinks.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Serilog.Sinks.Elasticsearch.dll", + "lib/net461/Serilog.Sinks.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.xml", + "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "serilog.sinks.elasticsearch.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "sha512": "bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "type": "package", + "path": "serilog.sinks.grafana.loki/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.xml", + "serilog-sink-nuget.png", + "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "serilog.sinks.grafana.loki.nuspec" + ] + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "sha512": "UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "type": "package", + "path": "serilog.sinks.periodicbatching/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.PeriodicBatching.dll", + "lib/net45/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.xml", + "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "serilog.sinks.periodicbatching.nuspec" + ] + }, + "Serilog.Sinks.Seq/5.1.0": { + "sha512": "VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "type": "package", + "path": "serilog.sinks.seq/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Seq.dll", + "lib/net45/Serilog.Sinks.Seq.xml", + "lib/net5.0/Serilog.Sinks.Seq.dll", + "lib/net5.0/Serilog.Sinks.Seq.xml", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.dll", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.1/Serilog.Sinks.Seq.dll", + "lib/netstandard1.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.3/Serilog.Sinks.Seq.dll", + "lib/netstandard1.3/Serilog.Sinks.Seq.xml", + "lib/netstandard2.0/Serilog.Sinks.Seq.dll", + "lib/netstandard2.0/Serilog.Sinks.Seq.xml", + "serilog.sinks.seq.5.1.0.nupkg.sha512", + "serilog.sinks.seq.nuspec" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "SixLabors.ImageSharp/3.1.4": { + "sha512": "lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "type": "package", + "path": "sixlabors.imagesharp/3.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "build/SixLabors.ImageSharp.props", + "lib/net6.0/SixLabors.ImageSharp.dll", + "lib/net6.0/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.3.1.4.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "SmartFormat.NET/2.7.2": { + "sha512": "TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "type": "package", + "path": "smartformat.net/2.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "SmartFormat_365x365.png", + "lib/net461/SmartFormat.dll", + "lib/net461/SmartFormat.xml", + "lib/netstandard2.0/SmartFormat.dll", + "lib/netstandard2.0/SmartFormat.xml", + "smartformat.net.2.7.2.nupkg.sha512", + "smartformat.net.nuspec" + ] + }, + "Snappier/1.0.0": { + "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "type": "package", + "path": "snappier/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING.txt", + "lib/net5.0/Snappier.dll", + "lib/net5.0/Snappier.xml", + "lib/netcoreapp3.0/Snappier.dll", + "lib/netcoreapp3.0/Snappier.xml", + "lib/netstandard2.0/Snappier.dll", + "lib/netstandard2.0/Snappier.xml", + "lib/netstandard2.1/Snappier.dll", + "lib/netstandard2.1/Snappier.xml", + "snappier.1.0.0.nupkg.sha512", + "snappier.nuspec" + ] + }, + "StackExchange.Redis/2.2.4": { + "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "type": "package", + "path": "stackexchange.redis/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net5.0/StackExchange.Redis.dll", + "lib/net5.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.2.4.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "sha512": "I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "type": "package", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.xml", + "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.annotations.nuspec" + ] + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "sha512": "jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "type": "package", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.xml", + "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.redoc.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "type": "package", + "path": "system.configuration.configurationmanager/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "type": "package", + "path": "system.diagnostics.performancecounter/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/5.0.0": { + "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "type": "package", + "path": "system.drawing.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "sha512": "lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/5.0.0": { + "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "type": "package", + "path": "system.io.pipelines/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipes/4.3.0": { + "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "type": "package", + "path": "system.io.pipes/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.IO.Pipes.dll", + "ref/net46/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.xml", + "ref/netstandard1.3/de/System.IO.Pipes.xml", + "ref/netstandard1.3/es/System.IO.Pipes.xml", + "ref/netstandard1.3/fr/System.IO.Pipes.xml", + "ref/netstandard1.3/it/System.IO.Pipes.xml", + "ref/netstandard1.3/ja/System.IO.Pipes.xml", + "ref/netstandard1.3/ko/System.IO.Pipes.xml", + "ref/netstandard1.3/ru/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml", + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win/lib/net46/System.IO.Pipes.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.pipes.4.3.0.nupkg.sha512", + "system.io.pipes.nuspec" + ] + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "sha512": "Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "type": "package", + "path": "system.io.pipes.accesscontrol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Pipes.AccessControl.dll", + "lib/net461/System.IO.Pipes.AccessControl.dll", + "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/net46/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.xml", + "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "system.io.pipes.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "sha512": "fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "type": "package", + "path": "system.net.http.winhttphandler/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.3.0": { + "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "type": "package", + "path": "system.net.requests/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.3.0.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.3.2": { + "sha512": "xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "type": "package", + "path": "system.net.security/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.3.2.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.3.0": { + "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "type": "package", + "path": "system.net.webheadercollection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.3.0.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.5.3": { + "sha512": "ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "type": "package", + "path": "system.private.servicemodel/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/netcore50/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/uap10.0.16300/System.Private.ServiceModel.dll", + "system.private.servicemodel.4.5.3.nupkg.sha512", + "system.private.servicemodel.nuspec", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.5.0": { + "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Primitives/4.5.3": { + "sha512": "Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "type": "package", + "path": "system.servicemodel.primitives/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/uap10.0.16300/System.ServiceModel.Primitives.dll", + "lib/uap10.0.16300/System.ServiceModel.dll", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/uap10.0.16300/System.ServiceModel.Primitives.dll", + "ref/uap10.0.16300/System.ServiceModel.dll", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.5.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "sha512": "umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.11.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Threading.Tasks.Dataflow.dll", + "lib/net461/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "Utf8Json/1.3.7": { + "sha512": "lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "type": "package", + "path": "utf8json/1.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Utf8Json.dll", + "lib/net45/Utf8Json.xml", + "lib/net47/Utf8Json.dll", + "lib/net47/Utf8Json.xml", + "lib/netstandard2.0/Utf8Json.dll", + "lib/netstandard2.0/Utf8Json.xml", + "utf8json.1.3.7.nupkg.sha512", + "utf8json.nuspec" + ] + }, + "VaultSharp/1.7.0.4": { + "sha512": "iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "type": "package", + "path": "vaultsharp/1.7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net45/VaultSharp.dll", + "lib/net45/VaultSharp.xml", + "lib/net46/VaultSharp.dll", + "lib/net46/VaultSharp.xml", + "lib/net461/VaultSharp.dll", + "lib/net461/VaultSharp.xml", + "lib/net462/VaultSharp.dll", + "lib/net462/VaultSharp.xml", + "lib/net47/VaultSharp.dll", + "lib/net47/VaultSharp.xml", + "lib/net471/VaultSharp.dll", + "lib/net471/VaultSharp.xml", + "lib/net472/VaultSharp.dll", + "lib/net472/VaultSharp.xml", + "lib/net48/VaultSharp.dll", + "lib/net48/VaultSharp.xml", + "lib/net5.0/VaultSharp.dll", + "lib/net5.0/VaultSharp.xml", + "lib/net6.0/VaultSharp.dll", + "lib/net6.0/VaultSharp.xml", + "lib/netstandard1.3/VaultSharp.dll", + "lib/netstandard1.3/VaultSharp.xml", + "lib/netstandard2.0/VaultSharp.dll", + "lib/netstandard2.0/VaultSharp.xml", + "lib/netstandard2.1/VaultSharp.dll", + "lib/netstandard2.1/VaultSharp.xml", + "vaultsharp.1.7.0.4.nupkg.sha512", + "vaultsharp.nuspec" + ] + }, + "ZstdSharp.Port/0.7.3": { + "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "type": "package", + "path": "zstdsharp.port/0.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ZstdSharp.dll", + "lib/net5.0/ZstdSharp.dll", + "lib/net6.0/ZstdSharp.dll", + "lib/net7.0/ZstdSharp.dll", + "lib/netcoreapp3.1/ZstdSharp.dll", + "lib/netstandard2.0/ZstdSharp.dll", + "lib/netstandard2.1/ZstdSharp.dll", + "zstdsharp.port.0.7.3.nupkg.sha512", + "zstdsharp.port.nuspec" + ] + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj" + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + }, + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.Logging >= 1.1.448", + "Convey.WebApi >= 1.1.448", + "Convey.WebApi.CQRS >= 1.1.448", + "MiniSpace.Services.MediaFiles.Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Api", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.nuget.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.nuget.cache new file mode 100644 index 000000000..362248960 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/obj/project.nuget.cache @@ -0,0 +1,285 @@ +{ + "version": 2, + "dgSpecHash": "pPw2FN/B52MmxwKE3fyp+DlSB88kkJsftMSH/YbDICEytyFjyy+yeRw98U2XdCEIgfmPU3QU80Ki2cVRbqJQUA==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Api/MiniSpace.Services.MediaFiles.Api.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/apachethrift/0.14.1/apachethrift.0.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics/4.3.0/app.metrics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.abstractions/4.3.0/app.metrics.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore/4.3.0/app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.abstractions/4.3.0/app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.core/4.3.0/app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.endpoints/4.3.0/app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health/3.2.0/app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.core/3.2.0/app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.endpoints/3.2.0/app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.hosting/3.2.0/app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.hosting/4.3.0/app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc/4.3.0/app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc.core/4.3.0/app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.reporting/4.0.0/app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.routing/4.3.0/app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.tracking/4.3.0/app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.concurrency/4.3.0/app.metrics.concurrency.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.core/4.3.0/app.metrics.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.configuration/4.3.0/app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.dependencyinjection/4.3.0/app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.hosting/4.3.0/app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.ascii/4.3.0/app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.influxdb/4.3.0/app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.json/4.3.0/app.metrics.formatters.json.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.prometheus/4.3.0/app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health/3.1.0/app.metrics.health.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.abstractions/3.2.0/app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.checks.http/3.2.0/app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.core/3.1.0/app.metrics.health.core.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.configuration/3.1.0/app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.dependencyinjection/3.1.0/app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.hosting/3.1.0/app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.ascii/3.1.0/app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.json/3.1.0/app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.console/4.3.0/app.metrics.reporting.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.http/4.3.0/app.metrics.reporting.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.influxdb/4.3.0/app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512", + "/home/kaliuser/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.auth/1.1.448/convey.auth.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.discovery.consul/1.1.448/convey.discovery.consul.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.docs.swagger/1.1.448/convey.docs.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.http/1.1.448/convey.http.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.loadbalancing.fabio/1.1.448/convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging/1.1.448/convey.logging.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging.cqrs/1.1.448/convey.logging.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.cqrs/1.1.448/convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox/1.1.448/convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox.mongo/1.1.448/convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.rabbitmq/1.1.448/convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.metrics.appmetrics/1.1.448/convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.mongodb/1.1.448/convey.persistence.mongodb.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.redis/1.1.448/convey.persistence.redis.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.secrets.vault/1.1.448/convey.secrets.vault.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.security/1.1.448/convey.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger/1.1.448/convey.tracing.jaeger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger.rabbitmq/1.1.448/convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi/1.1.448/convey.webapi.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.cqrs/1.1.448/convey.webapi.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.security/1.1.448/convey.webapi.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.swagger/1.1.448/convey.webapi.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/elasticsearch.net/7.8.1/elasticsearch.net.7.8.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger/1.0.3/jaeger.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.communication.thrift/1.0.3/jaeger.communication.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.core/1.0.3/jaeger.core.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.senders.thrift/1.0.3/jaeger.senders.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.certificate/6.0.1/microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/6.0.1/microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authorization/6.0.1/microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.1.0/microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.1.0/microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.extensions/2.1.0/microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.metadata/6.0.1/microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.bcl.asyncinterfaces/1.0.0/microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.csharp/4.6.0/microsoft.csharp.4.6.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0/microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.stackexchangeredis/6.0.1/microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.usersecrets/6.0.0/microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting/6.0.0/microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting.abstractions/6.0.0/microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.http/6.0.0/microsoft.extensions.http.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.debug/6.0.0/microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventlog/6.0.0/microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventsource/6.0.0/microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.15.0/microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.logging/6.15.0/microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols/6.10.0/microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.10.0/microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.tokens/6.15.0/microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.net.http.headers/2.1.0/microsoft.net.http.headers.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.systemevents/5.0.0/microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.bson/2.25.0/mongodb.bson.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver/2.25.0/mongodb.driver.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.core/2.25.0/mongodb.driver.core.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.gridfs/2.25.0/mongodb.driver.gridfs.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.libmongocrypt/1.8.2/mongodb.libmongocrypt.1.8.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization/2.3.1/open.serialization.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json/2.3.1/open.serialization.json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.system/2.3.2/open.serialization.json.system.2.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.utf8json/2.3.1/open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing/0.12.1/opentracing.0.12.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing.contrib.netcore/0.8.0/opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/pipelines.sockets.unofficial/2.2.0/pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/polly/7.2.2/polly.7.2.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/protobuf-net/2.4.0/protobuf-net.2.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/rabbitmq.client/6.5.0/rabbitmq.client.6.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog/2.10.0/serilog.2.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.aspnetcore/4.1.0/serilog.aspnetcore.4.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.hosting/4.1.2/serilog.extensions.hosting.4.1.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.logging/3.1.0/serilog.extensions.logging.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.compact/1.1.0/serilog.formatting.compact.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.elasticsearch/8.4.1/serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.settings.configuration/3.1.0/serilog.settings.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.console/4.0.1/serilog.sinks.console.4.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.elasticsearch/8.4.1/serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.grafana.loki/7.1.0/serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.periodicbatching/2.3.0/serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.seq/5.1.0/serilog.sinks.seq.5.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sixlabors.imagesharp/3.1.4/sixlabors.imagesharp.3.1.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/smartformat.net/2.7.2/smartformat.net.2.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/stackexchange.redis/2.2.4/stackexchange.redis.2.2.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.annotations/6.2.3/swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.redoc/6.2.3/swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swagger/6.2.3/swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.2.3/swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.2.3/swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.configuration.configurationmanager/5.0.0/system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.performancecounter/5.0.0/system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.drawing.common/5.0.0/system.drawing.common.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.identitymodel.tokens.jwt/6.15.0/system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipelines/5.0.0/system.io.pipelines.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes.accesscontrol/4.5.1/system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http.winhttphandler/4.7.0/system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.requests/4.3.0/system.net.requests.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.security/4.3.2/system.net.security.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.webheadercollection/4.3.0/system.net.webheadercollection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.private.servicemodel/4.5.3/system.private.servicemodel.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.dispatchproxy/4.5.0/system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.5.0/system.security.cryptography.cng.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.servicemodel.primitives/4.5.3/system.servicemodel.primitives.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.dataflow/4.11.1/system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.5.3/system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/utf8json/1.3.7/utf8json.1.3.7.nupkg.sha512", + "/home/kaliuser/.nuget/packages/vaultsharp/1.7.0.4/vaultsharp.1.7.0.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.deps.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.deps.json new file mode 100644 index 000000000..225b3ba9f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.deps.json @@ -0,0 +1,1436 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.MediaFiles.Core": "1.0.0", + "MongoDB.Bson": "2.25.0", + "SixLabors.ImageSharp": "3.1.4" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Application.dll": {} + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "MongoDB.Bson/2.25.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "SixLabors.ImageSharp/3.1.4": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.4.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.7.2": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Core.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "path": "mongodb.bson/2.25.0", + "hashPath": "mongodb.bson.2.25.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "path": "sixlabors.imagesharp/3.1.4", + "hashPath": "sixlabors.imagesharp.3.1.4.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Json/4.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "path": "system.text.json/4.7.2", + "hashPath": "system.text.json.4.7.2.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..43a5ba687 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb new file mode 100644 index 000000000..bcb7309e6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..5f5c60b01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb new file mode 100644 index 000000000..a9bea7f26 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpac.D950A6D1.Up2Date b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpac.D950A6D1.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfo.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfo.cs new file mode 100644 index 000000000..7ed303afe --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.MediaFiles.Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.MediaFiles.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.MediaFiles.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfoInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfoInputs.cache new file mode 100644 index 000000000..2a164778a --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +52fa02c6b3722f3d6e904a2e7109ba822399bb3b1c76ea2ffed8238697a3ba9b diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..bfb9905d8 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.MediaFiles.Application +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GlobalUsings.g.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.assets.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.assets.cache new file mode 100644 index 000000000..5d6fdeb01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.assets.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.AssemblyReference.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.AssemblyReference.cache new file mode 100644 index 000000000..75bbb97f8 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.CoreCompileInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..d51f6936f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c0c5692440a0edccf67aa96998981e2c2a70723438e9910fd6c5a7f3ad8a148a diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.FileListAbsolute.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..60583c395 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpac.D950A6D1.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Application.dll diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..43a5ba687 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb new file mode 100644 index 000000000..bcb7309e6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.sourcelink.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..5c2189047 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..5c2189047 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.dgspec.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.dgspec.json new file mode 100644 index 000000000..6405bad9f --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.dgspec.json @@ -0,0 +1,164 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.props new file mode 100644 index 000000000..c555c2a20 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + + + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.targets b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/MiniSpace.Services.MediaFiles.Application.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.assets.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.assets.json new file mode 100644 index 000000000..62329ce66 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.assets.json @@ -0,0 +1,5124 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "build": { + "build/SixLabors.ImageSharp.props": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + } + } + } + }, + "libraries": { + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "sha512": "8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "MongoDB.Bson/2.25.0": { + "sha512": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "type": "package", + "path": "mongodb.bson/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.25.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "SixLabors.ImageSharp/3.1.4": { + "sha512": "lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "type": "package", + "path": "sixlabors.imagesharp/3.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "build/SixLabors.ImageSharp.props", + "lib/net6.0/SixLabors.ImageSharp.dll", + "lib/net6.0/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.3.1.4.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Json/4.7.2": { + "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "type": "package", + "path": "system.text.json/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.CQRS.Commands >= 1.1.448", + "Convey.CQRS.Events >= 1.1.448", + "Convey.CQRS.Queries >= 1.1.448", + "Convey.MessageBrokers >= 1.1.448", + "MiniSpace.Services.MediaFiles.Core >= 1.0.0", + "MongoDB.Bson >= 2.25.0", + "SixLabors.ImageSharp >= 3.1.4" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.nuget.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.nuget.cache new file mode 100644 index 000000000..a90d11cb2 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/project.nuget.cache @@ -0,0 +1,96 @@ +{ + "version": 2, + "dgSpecHash": "YEYcXvoqPxD76dtG9toTjv38hEFp7Y0BIiiaqB47e3ue1CP8rxOMgKWmGrg2Zcu60oIkBP+m53uD3SjCMbh29g==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/3.1.9/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.bson/2.25.0/mongodb.bson.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sixlabors.imagesharp/3.1.4/sixlabors.imagesharp.3.1.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/4.7.2/system.text.json.4.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.deps.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.deps.json new file mode 100644 index 000000000..16111519e --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.deps.json @@ -0,0 +1,61 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Core.dll": {} + } + }, + "MongoDB.Bson/2.25.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {} + } + }, + "libraries": { + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "path": "mongodb.bson/2.25.0", + "hashPath": "mongodb.bson.2.25.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..5f5c60b01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb new file mode 100644 index 000000000..a9bea7f26 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfo.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfo.cs new file mode 100644 index 000000000..9fe4610f9 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.MediaFiles.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.MediaFiles.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.MediaFiles.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfoInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfoInputs.cache new file mode 100644 index 000000000..5eb1cb072 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cf093bd5358ab0159a15b396b90cef6eade3c61dbd1aff7bf19ad9342b4295da diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..e3fc28ef3 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.MediaFiles.Core +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GlobalUsings.g.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.assets.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.assets.cache new file mode 100644 index 000000000..44ef81d25 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.assets.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.AssemblyReference.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.AssemblyReference.cache new file mode 100644 index 000000000..cd633df12 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.CoreCompileInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..0e01c68b6 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +bc6eb42debbd8d10c54e26adbdd3bb3ba7fd20281c3084b7c5743932843e164e diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.FileListAbsolute.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..65e2a7811 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Core.dll diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..5f5c60b01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb new file mode 100644 index 000000000..a9bea7f26 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.sourcelink.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..ae0b05c15 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..ae0b05c15 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.dgspec.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.dgspec.json new file mode 100644 index 000000000..562281945 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.props new file mode 100644 index 000000000..42c902e82 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.targets b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/MiniSpace.Services.MediaFiles.Core.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.assets.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.assets.json new file mode 100644 index 000000000..b9b3d8643 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.assets.json @@ -0,0 +1,194 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "MongoDB.Bson/2.25.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "MongoDB.Bson/2.25.0": { + "sha512": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "type": "package", + "path": "mongodb.bson/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.25.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "MongoDB.Bson >= 2.25.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.nuget.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.nuget.cache new file mode 100644 index 000000000..831c9b8e2 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/project.nuget.cache @@ -0,0 +1,12 @@ +{ + "version": 2, + "dgSpecHash": "5on8ttxEmG15kYy+fVHMTl2Sf3cNsFoocntUQhFBEUfW1rIl/o/8O5w8pTUs99IOEVbX9GuuktV2vegWYbDxUA==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/mongodb.bson/2.25.0/mongodb.bson.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll new file mode 100644 index 000000000..43a5ba687 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb new file mode 100644 index 000000000..bcb7309e6 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll new file mode 100644 index 000000000..5f5c60b01 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb new file mode 100644 index 000000000..a9bea7f26 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.deps.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.deps.json new file mode 100644 index 000000000..1c4c509c0 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.deps.json @@ -0,0 +1,4856 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.MediaFiles.Application": "1.0.0", + "MongoDB.Driver.GridFS": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Infrastructure.dll": {} + } + }, + "ApacheThrift/0.14.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": { + "assemblyVersion": "0.14.1.0", + "fileVersion": "0.14.1.0" + } + } + }, + "App.Metrics/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Core/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.6.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Health/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "dependencies": { + "App.Metrics.Concurrency": "4.3.0", + "Microsoft.CSharp": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "AWSSDK.Core/3.7.100.14": { + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.100.14" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "dependencies": { + "AWSSDK.Core": "3.7.100.14" + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.100.14" + } + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Auth/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Discovery.Consul/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Docs.Swagger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.HTTP/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging.CQRS/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.25.0" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.Redis/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Secrets.Vault/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DnsClient/1.6.1": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "assemblyVersion": "1.6.1.0", + "fileVersion": "1.6.1.0" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.8.1.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Jaeger/1.0.3": { + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Core/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": {}, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.46214" + } + } + }, + "Microsoft.CSharp/4.6.0": {}, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "MongoDB.Bson/2.25.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver/2.25.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver.Core": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver.Core/2.25.0": { + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Driver.GridFS/2.25.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver": "2.25.0", + "MongoDB.Driver.Core": "2.25.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "assemblyVersion": "2.25.0.0", + "fileVersion": "2.25.0.0" + } + } + }, + "MongoDB.Libmongocrypt/1.8.2": { + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.8.2.0", + "fileVersion": "1.8.2.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/mongocrypt.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Open.Serialization/2.3.1": { + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json/2.3.1": { + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json.System/2.3.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": { + "assemblyVersion": "2.3.2.0", + "fileVersion": "2.3.2.0" + } + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "OpenTracing/0.12.1": { + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "assemblyVersion": "0.12.1.0", + "fileVersion": "0.12.1.0" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "assemblyVersion": "0.8.0.0", + "fileVersion": "0.8.0.0" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.0.45337" + } + } + }, + "Polly/7.2.2": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.2.2.0" + } + } + }, + "protobuf-net/2.4.0": { + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "assemblyVersion": "2.4.0.0", + "fileVersion": "2.4.0.8641" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Hosting/4.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.1.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.2.0" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "3.1.6", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "assemblyVersion": "8.4.1.0", + "fileVersion": "8.4.1.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Collections.Concurrent": "4.3.0", + "System.Threading.Timer": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "assemblyVersion": "5.1.0.0", + "fileVersion": "5.1.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "SixLabors.ImageSharp/3.1.4": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.4.0" + } + } + }, + "SmartFormat.NET/2.7.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.Text.Json": "6.0.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.2.0" + } + } + }, + "Snappier/1.0.0": { + "runtime": { + "lib/net5.0/Snappier.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "StackExchange.Redis/2.2.4": { + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.4.27433" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/5.0.0": {}, + "System.IO.Pipes/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Security/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.5.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.DispatchProxy/4.5.0": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Primitives/4.5.3": { + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "lib/netstandard2.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": {}, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "Utf8Json/1.3.7": { + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "assemblyVersion": "1.3.7.0", + "fileVersion": "1.3.7.0" + } + } + }, + "VaultSharp/1.7.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "assemblyVersion": "1.7.0.4", + "fileVersion": "1.7.0.4" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "runtime": { + "lib/net7.0/ZstdSharp.dll": { + "assemblyVersion": "0.7.3.0", + "fileVersion": "0.7.3.0" + } + } + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.MediaFiles.Core": "1.0.0", + "MongoDB.Bson": "2.25.0", + "SixLabors.ImageSharp": "3.1.4" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Application.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "runtime": { + "MiniSpace.Services.MediaFiles.Core.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.MediaFiles.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ApacheThrift/0.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "path": "apachethrift/0.14.1", + "hashPath": "apachethrift.0.14.1.nupkg.sha512" + }, + "App.Metrics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "path": "app.metrics/4.3.0", + "hashPath": "app.metrics.4.3.0.nupkg.sha512" + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "path": "app.metrics.abstractions/4.3.0", + "hashPath": "app.metrics.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "path": "app.metrics.aspnetcore/4.3.0", + "hashPath": "app.metrics.aspnetcore.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "hashPath": "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "path": "app.metrics.aspnetcore.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "hashPath": "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "path": "app.metrics.aspnetcore.health/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "hashPath": "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "hashPath": "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "hashPath": "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "hashPath": "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512" + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "path": "app.metrics.concurrency/4.3.0", + "hashPath": "app.metrics.concurrency.4.3.0.nupkg.sha512" + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "path": "app.metrics.core/4.3.0", + "hashPath": "app.metrics.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "path": "app.metrics.extensions.configuration/4.3.0", + "hashPath": "app.metrics.extensions.configuration.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "hashPath": "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "path": "app.metrics.extensions.hosting/4.3.0", + "hashPath": "app.metrics.extensions.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "path": "app.metrics.formatters.ascii/4.3.0", + "hashPath": "app.metrics.formatters.ascii.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "path": "app.metrics.formatters.influxdb/4.3.0", + "hashPath": "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "path": "app.metrics.formatters.json/4.3.0", + "hashPath": "app.metrics.formatters.json.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "path": "app.metrics.formatters.prometheus/4.3.0", + "hashPath": "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512" + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "path": "app.metrics.health/3.1.0", + "hashPath": "app.metrics.health.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "path": "app.metrics.health.abstractions/3.2.0", + "hashPath": "app.metrics.health.abstractions.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "path": "app.metrics.health.checks.http/3.2.0", + "hashPath": "app.metrics.health.checks.http.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "path": "app.metrics.health.core/3.1.0", + "hashPath": "app.metrics.health.core.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "hashPath": "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "hashPath": "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "hashPath": "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "hashPath": "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "path": "app.metrics.health.formatters.json/3.1.0", + "hashPath": "app.metrics.health.formatters.json.3.1.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "path": "app.metrics.reporting.console/4.3.0", + "hashPath": "app.metrics.reporting.console.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "path": "app.metrics.reporting.http/4.3.0", + "hashPath": "app.metrics.reporting.http.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "path": "app.metrics.reporting.influxdb/4.3.0", + "hashPath": "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512" + }, + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==", + "path": "awssdk.core/3.7.100.14", + "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512" + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "path": "awssdk.securitytoken/3.7.100.14", + "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.Auth/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "path": "convey.auth/1.1.448", + "hashPath": "convey.auth.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "path": "convey.discovery.consul/1.1.448", + "hashPath": "convey.discovery.consul.1.1.448.nupkg.sha512" + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "path": "convey.docs.swagger/1.1.448", + "hashPath": "convey.docs.swagger.1.1.448.nupkg.sha512" + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "path": "convey.http/1.1.448", + "hashPath": "convey.http.1.1.448.nupkg.sha512" + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "path": "convey.loadbalancing.fabio/1.1.448", + "hashPath": "convey.loadbalancing.fabio.1.1.448.nupkg.sha512" + }, + "Convey.Logging/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "path": "convey.logging/1.1.448", + "hashPath": "convey.logging.1.1.448.nupkg.sha512" + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "path": "convey.logging.cqrs/1.1.448", + "hashPath": "convey.logging.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "path": "convey.messagebrokers.cqrs/1.1.448", + "hashPath": "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "path": "convey.messagebrokers.outbox/1.1.448", + "hashPath": "convey.messagebrokers.outbox.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "hashPath": "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "hashPath": "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "path": "convey.metrics.appmetrics/1.1.448", + "hashPath": "convey.metrics.appmetrics.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "path": "convey.persistence.mongodb/1.1.448", + "hashPath": "convey.persistence.mongodb.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "path": "convey.persistence.redis/1.1.448", + "hashPath": "convey.persistence.redis.1.1.448.nupkg.sha512" + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "path": "convey.secrets.vault/1.1.448", + "hashPath": "convey.secrets.vault.1.1.448.nupkg.sha512" + }, + "Convey.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "path": "convey.security/1.1.448", + "hashPath": "convey.security.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "path": "convey.tracing.jaeger/1.1.448", + "hashPath": "convey.tracing.jaeger.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "hashPath": "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "path": "convey.webapi/1.1.448", + "hashPath": "convey.webapi.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "path": "convey.webapi.cqrs/1.1.448", + "hashPath": "convey.webapi.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "path": "convey.webapi.security/1.1.448", + "hashPath": "convey.webapi.security.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "path": "convey.webapi.swagger/1.1.448", + "hashPath": "convey.webapi.swagger.1.1.448.nupkg.sha512" + }, + "DnsClient/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "path": "dnsclient/1.6.1", + "hashPath": "dnsclient.1.6.1.nupkg.sha512" + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "path": "elasticsearch.net/7.8.1", + "hashPath": "elasticsearch.net.7.8.1.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Jaeger/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "path": "jaeger/1.0.3", + "hashPath": "jaeger.1.0.3.nupkg.sha512" + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "path": "jaeger.communication.thrift/1.0.3", + "hashPath": "jaeger.communication.thrift.1.0.3.nupkg.sha512" + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "path": "jaeger.core/1.0.3", + "hashPath": "jaeger.core.1.0.3.nupkg.sha512" + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "path": "jaeger.senders.thrift/1.0.3", + "hashPath": "jaeger.senders.thrift.1.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "hashPath": "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "hashPath": "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "path": "microsoft.csharp/4.6.0", + "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "hashPath": "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "path": "microsoft.extensions.configuration/6.0.0", + "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "path": "microsoft.extensions.hosting/6.0.0", + "hashPath": "microsoft.extensions.hosting.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "path": "microsoft.extensions.logging.console/6.0.0", + "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "path": "microsoft.identitymodel.logging/6.15.0", + "hashPath": "microsoft.identitymodel.logging.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "path": "microsoft.identitymodel.protocols/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "path": "microsoft.identitymodel.tokens/6.15.0", + "hashPath": "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "path": "microsoft.net.http.headers/2.1.0", + "hashPath": "microsoft.net.http.headers.2.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "path": "mongodb.bson/2.25.0", + "hashPath": "mongodb.bson.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "path": "mongodb.driver/2.25.0", + "hashPath": "mongodb.driver.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "path": "mongodb.driver.core/2.25.0", + "hashPath": "mongodb.driver.core.2.25.0.nupkg.sha512" + }, + "MongoDB.Driver.GridFS/2.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFvBxqr0H16pzLfuPHsyyVvRfr2nR/GjnBMOcfkxDwwlEipR2l9HI/7OFSaKs4wED+YjwIsd4GJ+eb2bLYkQxA==", + "path": "mongodb.driver.gridfs/2.25.0", + "hashPath": "mongodb.driver.gridfs.2.25.0.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.8.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==", + "path": "mongodb.libmongocrypt/1.8.2", + "hashPath": "mongodb.libmongocrypt.1.8.2.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Open.Serialization/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "path": "open.serialization/2.3.1", + "hashPath": "open.serialization.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "path": "open.serialization.json/2.3.1", + "hashPath": "open.serialization.json.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "path": "open.serialization.json.system/2.3.2", + "hashPath": "open.serialization.json.system.2.3.2.nupkg.sha512" + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "path": "open.serialization.json.utf8json/2.3.1", + "hashPath": "open.serialization.json.utf8json.2.3.1.nupkg.sha512" + }, + "OpenTracing/0.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "path": "opentracing/0.12.1", + "hashPath": "opentracing.0.12.1.nupkg.sha512" + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "path": "opentracing.contrib.netcore/0.8.0", + "hashPath": "opentracing.contrib.netcore.0.8.0.nupkg.sha512" + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "path": "pipelines.sockets.unofficial/2.2.0", + "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512" + }, + "Polly/7.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "path": "polly/7.2.2", + "hashPath": "polly.7.2.2.nupkg.sha512" + }, + "protobuf-net/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "path": "protobuf-net/2.4.0", + "hashPath": "protobuf-net.2.4.0.nupkg.sha512" + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "path": "rabbitmq.client/6.5.0", + "hashPath": "rabbitmq.client.6.5.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "path": "runtime.native.system.net.security/4.3.0", + "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "path": "serilog.aspnetcore/4.1.0", + "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "path": "serilog.extensions.hosting/4.1.2", + "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "path": "serilog.extensions.logging/3.1.0", + "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "path": "serilog.formatting.elasticsearch/8.4.1", + "hashPath": "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "path": "serilog.settings.configuration/3.1.0", + "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "path": "serilog.sinks.console/4.0.1", + "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "path": "serilog.sinks.elasticsearch/8.4.1", + "hashPath": "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "path": "serilog.sinks.grafana.loki/7.1.0", + "hashPath": "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512" + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "path": "serilog.sinks.periodicbatching/2.3.0", + "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512" + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "path": "serilog.sinks.seq/5.1.0", + "hashPath": "serilog.sinks.seq.5.1.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "path": "sixlabors.imagesharp/3.1.4", + "hashPath": "sixlabors.imagesharp.3.1.4.nupkg.sha512" + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "path": "smartformat.net/2.7.2", + "hashPath": "smartformat.net.2.7.2.nupkg.sha512" + }, + "Snappier/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "path": "snappier/1.0.0", + "hashPath": "snappier.1.0.0.nupkg.sha512" + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "path": "stackexchange.redis/2.2.4", + "hashPath": "stackexchange.redis.2.2.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "hashPath": "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "hashPath": "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "hashPath": "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "path": "system.io.pipelines/5.0.0", + "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "path": "system.io.pipes/4.3.0", + "hashPath": "system.io.pipes.4.3.0.nupkg.sha512" + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "path": "system.io.pipes.accesscontrol/4.5.1", + "hashPath": "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "path": "system.net.http.winhttphandler/4.7.0", + "hashPath": "system.net.http.winhttphandler.4.7.0.nupkg.sha512" + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "System.Net.Security/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "path": "system.net.security/4.3.2", + "hashPath": "system.net.security.4.3.2.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "path": "system.private.servicemodel/4.5.3", + "hashPath": "system.private.servicemodel.4.5.3.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "path": "system.reflection.dispatchproxy/4.5.0", + "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "path": "system.servicemodel.primitives/4.5.3", + "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "path": "system.threading.tasks.dataflow/4.11.1", + "hashPath": "system.threading.tasks.dataflow.4.11.1.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "Utf8Json/1.3.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "path": "utf8json/1.3.7", + "hashPath": "utf8json.1.3.7.nupkg.sha512" + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "path": "vaultsharp/1.7.0.4", + "hashPath": "vaultsharp.1.7.0.4.nupkg.sha512" + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "path": "zstdsharp.port/0.7.3", + "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll new file mode 100644 index 000000000..6d796d0d9 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb new file mode 100644 index 000000000..9f02e7335 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpac.AC95D1C5.Up2Date b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpac.AC95D1C5.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfo.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfo.cs new file mode 100644 index 000000000..f81780df5 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.MediaFiles.Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.MediaFiles.Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.MediaFiles.Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfoInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 000000000..77dd7fb51 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c4ec62b8a0419180b96e59073f28f344cc587757d89c190f831f190651f322eb diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..447655e14 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.MediaFiles.Infrastructure +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GlobalUsings.g.cs b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.assets.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.assets.cache new file mode 100644 index 000000000..360b5a642 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.assets.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.AssemblyReference.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 000000000..945fa4cfb Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.CoreCompileInputs.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..c5137c926 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c8482d633e00c5b74c3a8696966789c94f9d72f58e960a5a7d178d9888d929a7 diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.FileListAbsolute.txt b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..6a714210e --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.MediaFiles.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpac.AC95D1C5.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Infrastructure.dll diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll new file mode 100644 index 000000000..6d796d0d9 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb new file mode 100644 index 000000000..9f02e7335 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.pdb differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.sourcelink.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.MediaFiles.Infrastructure.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Infrastructure.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Infrastructure.dll new file mode 100644 index 000000000..e6cdc5ff1 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.MediaFiles.Infrastructure.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Infrastructure.dll b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Infrastructure.dll new file mode 100644 index 000000000..e6cdc5ff1 Binary files /dev/null and b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.MediaFiles.Infrastructure.dll differ diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.dgspec.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.dgspec.json new file mode 100644 index 000000000..697ec801a --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.dgspec.json @@ -0,0 +1,324 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Driver.GridFS": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.props b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.props new file mode 100644 index 000000000..bd5acb43b --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + + /home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0 + /home/kaliuser/.nuget/packages/awssdk.core/3.7.100.14 + /home/kaliuser/.nuget/packages/awssdk.securitytoken/3.7.100.14 + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.targets b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/MiniSpace.Services.MediaFiles.Infrastructure.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.assets.json b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.assets.json new file mode 100644 index 000000000..63f8b3729 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.assets.json @@ -0,0 +1,12735 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "ApacheThrift/0.14.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Logging.Console": "3.1.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.1/Thrift.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": {} + } + }, + "App.Metrics/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "2.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Concurrency": "2.0.1", + "Microsoft.CSharp": "4.4.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "dependencies": { + "AWSSDK.Core": "[3.7.100.14, 4.0.0)" + }, + "compile": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + } + }, + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Auth/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "compile": { + "lib/net6.0/Convey.Auth.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": {} + } + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + } + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "compile": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + } + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "compile": { + "lib/net6.0/Convey.HTTP.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": {} + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + } + }, + "Convey.Logging/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.ElasticSearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "compile": { + "lib/net6.0/Convey.Logging.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": {} + } + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "compile": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + } + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + } + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "compile": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": {} + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + } + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": {} + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + } + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + } + }, + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Jaeger/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + } + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Newtonsoft.Json": "12.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.10.0", + "Microsoft.IdentityModel.Tokens": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/2.25.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.25.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver.Core": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.25.0": { + "type": "package", + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.25.0", + "MongoDB.Libmongocrypt": "1.8.2", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.GridFS/2.25.0": { + "type": "package", + "dependencies": { + "MongoDB.Bson": "2.25.0", + "MongoDB.Driver": "2.25.0", + "MongoDB.Driver.Core": "2.25.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Libmongocrypt/1.8.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open.Serialization/2.3.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/Open.Serialization.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": {} + } + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + } + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + } + }, + "OpenTracing/0.12.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Hosting.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Logging": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Options": "[6.0.0, 7.0.0)", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "Polly/7.2.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + } + }, + "protobuf-net/2.4.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "compile": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "compile": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "compile": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.0.0", + "Serilog": "2.9.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.0.4", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.6.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.8.0", + "Serilog.Formatting.Compact": "1.0.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.1.1", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "dependencies": { + "Serilog": "2.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Threading.Timer": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "SixLabors.ImageSharp/3.1.4": { + "type": "package", + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "build": { + "build/_._": {} + } + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.Text.Json": "4.7.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "compile": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Pipes.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.3.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "ref/netstandard2.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "lib/netstandard2.0/System.ServiceModel.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "Utf8Json/1.3.7": { + "type": "package", + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + } + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "compile": { + "lib/net7.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net7.0/ZstdSharp.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.MediaFiles.Core": "1.0.0", + "MongoDB.Bson": "2.25.0", + "SixLabors.ImageSharp": "3.1.4" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Application.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Application.dll": {} + } + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MongoDB.Bson": "2.25.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.MediaFiles.Core.dll": {} + } + } + } + }, + "libraries": { + "ApacheThrift/0.14.1": { + "sha512": "WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "type": "package", + "path": "apachethrift/0.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "apachethrift.0.14.1.nupkg.sha512", + "apachethrift.nuspec", + "lib/netstandard2.0/Thrift.dll", + "lib/netstandard2.1/Thrift.dll" + ] + }, + "App.Metrics/4.3.0": { + "sha512": "D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "type": "package", + "path": "app.metrics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.4.3.0.nupkg.sha512", + "app.metrics.nuspec", + "lib/net461/App.Metrics.dll", + "lib/net461/App.Metrics.pdb", + "lib/net461/App.Metrics.xml", + "lib/netstandard2.0/App.Metrics.dll", + "lib/netstandard2.0/App.Metrics.pdb", + "lib/netstandard2.0/App.Metrics.xml", + "logo.png" + ] + }, + "App.Metrics.Abstractions/4.3.0": { + "sha512": "ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "type": "package", + "path": "app.metrics.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.abstractions.4.3.0.nupkg.sha512", + "app.metrics.abstractions.nuspec", + "lib/net461/App.Metrics.Abstractions.dll", + "lib/net461/App.Metrics.Abstractions.pdb", + "lib/net461/App.Metrics.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore/4.3.0": { + "sha512": "b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "type": "package", + "path": "app.metrics.aspnetcore/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "sha512": "VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "type": "package", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.abstractions.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "sha512": "Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "type": "package", + "path": "app.metrics.aspnetcore.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "sha512": "Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "type": "package", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.endpoints.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "sha512": "9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "type": "package", + "path": "app.metrics.aspnetcore.health/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "sha512": "Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "type": "package", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "sha512": "2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "type": "package", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.endpoints.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "sha512": "NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "type": "package", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.xml" + ] + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "sha512": "BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "type": "package", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "sha512": "CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "sha512": "acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "sha512": "cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "type": "package", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "app.metrics.aspnetcore.reporting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "sha512": "s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "type": "package", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.routing.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "sha512": "NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "type": "package", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.tracking.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.xml", + "logo.png" + ] + }, + "App.Metrics.Concurrency/4.3.0": { + "sha512": "otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "type": "package", + "path": "app.metrics.concurrency/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.concurrency.4.3.0.nupkg.sha512", + "app.metrics.concurrency.nuspec", + "lib/netstandard1.1/App.Metrics.Concurrency.dll", + "lib/netstandard1.1/App.Metrics.Concurrency.pdb", + "lib/netstandard1.1/App.Metrics.Concurrency.xml", + "lib/netstandard2.0/App.Metrics.Concurrency.dll", + "lib/netstandard2.0/App.Metrics.Concurrency.pdb", + "lib/netstandard2.0/App.Metrics.Concurrency.xml", + "logo.png" + ] + }, + "App.Metrics.Core/4.3.0": { + "sha512": "HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "type": "package", + "path": "app.metrics.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.core.4.3.0.nupkg.sha512", + "app.metrics.core.nuspec", + "lib/net461/App.Metrics.Core.dll", + "lib/net461/App.Metrics.Core.pdb", + "lib/net461/App.Metrics.Core.xml", + "lib/netstandard2.0/App.Metrics.Core.dll", + "lib/netstandard2.0/App.Metrics.Core.pdb", + "lib/netstandard2.0/App.Metrics.Core.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "sha512": "+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "type": "package", + "path": "app.metrics.extensions.configuration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "app.metrics.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "sha512": "lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "type": "package", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "app.metrics.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "sha512": "uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "type": "package", + "path": "app.metrics.extensions.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "app.metrics.extensions.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.xml", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "sha512": "PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "type": "package", + "path": "app.metrics.formatters.ascii/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "app.metrics.formatters.ascii.nuspec", + "lib/net461/App.Metrics.Formatters.Ascii.dll", + "lib/net461/App.Metrics.Formatters.Ascii.pdb", + "lib/net461/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "sha512": "p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "type": "package", + "path": "app.metrics.formatters.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "app.metrics.formatters.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Json/4.3.0": { + "sha512": "H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "type": "package", + "path": "app.metrics.formatters.json/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.json.4.3.0.nupkg.sha512", + "app.metrics.formatters.json.nuspec", + "lib/net461/App.Metrics.Formatters.Json.dll", + "lib/net461/App.Metrics.Formatters.Json.pdb", + "lib/net461/App.Metrics.Formatters.Json.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Json.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Json.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "sha512": "cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "type": "package", + "path": "app.metrics.formatters.prometheus/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "app.metrics.formatters.prometheus.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.xml", + "logo.png" + ] + }, + "App.Metrics.Health/3.1.0": { + "sha512": "JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "type": "package", + "path": "app.metrics.health/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.3.1.0.nupkg.sha512", + "app.metrics.health.nuspec", + "lib/netstandard2.0/App.Metrics.Health.dll", + "lib/netstandard2.0/App.Metrics.Health.xml" + ] + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "sha512": "DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "type": "package", + "path": "app.metrics.health.abstractions/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "app.metrics.health.abstractions.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.xml" + ] + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "sha512": "Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "type": "package", + "path": "app.metrics.health.checks.http/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "app.metrics.health.checks.http.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.xml" + ] + }, + "App.Metrics.Health.Core/3.1.0": { + "sha512": "mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "type": "package", + "path": "app.metrics.health.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.core.3.1.0.nupkg.sha512", + "app.metrics.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.Health.Core.xml" + ] + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "sha512": "5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "type": "package", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.xml" + ] + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "sha512": "N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "type": "package", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.xml" + ] + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "sha512": "TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "type": "package", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.xml" + ] + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "sha512": "9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "type": "package", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.ascii.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.xml" + ] + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "sha512": "23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "type": "package", + "path": "app.metrics.health.formatters.json/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.json.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.xml" + ] + }, + "App.Metrics.Reporting.Console/4.3.0": { + "sha512": "LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "type": "package", + "path": "app.metrics.reporting.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.console.4.3.0.nupkg.sha512", + "app.metrics.reporting.console.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Console.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Console.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.Http/4.3.0": { + "sha512": "D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "type": "package", + "path": "app.metrics.reporting.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.http.4.3.0.nupkg.sha512", + "app.metrics.reporting.http.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Http.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Http.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "sha512": "uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "type": "package", + "path": "app.metrics.reporting.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "app.metrics.reporting.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.xml", + "logo.png" + ] + }, + "AWSSDK.Core/3.7.100.14": { + "sha512": "gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==", + "type": "package", + "path": "awssdk.core/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "awssdk.core.3.7.100.14.nupkg.sha512", + "awssdk.core.nuspec", + "lib/net35/AWSSDK.Core.dll", + "lib/net35/AWSSDK.Core.pdb", + "lib/net35/AWSSDK.Core.xml", + "lib/net45/AWSSDK.Core.dll", + "lib/net45/AWSSDK.Core.pdb", + "lib/net45/AWSSDK.Core.xml", + "lib/netcoreapp3.1/AWSSDK.Core.dll", + "lib/netcoreapp3.1/AWSSDK.Core.pdb", + "lib/netcoreapp3.1/AWSSDK.Core.xml", + "lib/netstandard2.0/AWSSDK.Core.dll", + "lib/netstandard2.0/AWSSDK.Core.pdb", + "lib/netstandard2.0/AWSSDK.Core.xml", + "tools/account-management.ps1" + ] + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "sha512": "dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "type": "package", + "path": "awssdk.securitytoken/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/AWSSDK.SecurityToken.CodeAnalysis.dll", + "awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "awssdk.securitytoken.nuspec", + "lib/net35/AWSSDK.SecurityToken.dll", + "lib/net35/AWSSDK.SecurityToken.pdb", + "lib/net35/AWSSDK.SecurityToken.xml", + "lib/net45/AWSSDK.SecurityToken.dll", + "lib/net45/AWSSDK.SecurityToken.pdb", + "lib/net45/AWSSDK.SecurityToken.xml", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.pdb", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.xml", + "lib/netstandard2.0/AWSSDK.SecurityToken.dll", + "lib/netstandard2.0/AWSSDK.SecurityToken.pdb", + "lib/netstandard2.0/AWSSDK.SecurityToken.xml", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.Auth/1.1.448": { + "sha512": "8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "type": "package", + "path": "convey.auth/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.auth.1.1.448.nupkg.sha512", + "convey.auth.nuspec", + "lib/net6.0/Convey.Auth.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.Discovery.Consul/1.1.448": { + "sha512": "3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "type": "package", + "path": "convey.discovery.consul/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.discovery.consul.1.1.448.nupkg.sha512", + "convey.discovery.consul.nuspec", + "lib/net6.0/Convey.Discovery.Consul.dll" + ] + }, + "Convey.Docs.Swagger/1.1.448": { + "sha512": "k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "type": "package", + "path": "convey.docs.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.docs.swagger.1.1.448.nupkg.sha512", + "convey.docs.swagger.nuspec", + "lib/net6.0/Convey.Docs.Swagger.dll" + ] + }, + "Convey.HTTP/1.1.448": { + "sha512": "MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "type": "package", + "path": "convey.http/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.http.1.1.448.nupkg.sha512", + "convey.http.nuspec", + "lib/net6.0/Convey.HTTP.dll" + ] + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "sha512": "QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "type": "package", + "path": "convey.loadbalancing.fabio/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "convey.loadbalancing.fabio.nuspec", + "lib/net6.0/Convey.LoadBalancing.Fabio.dll" + ] + }, + "Convey.Logging/1.1.448": { + "sha512": "sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "type": "package", + "path": "convey.logging/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.1.1.448.nupkg.sha512", + "convey.logging.nuspec", + "lib/net6.0/Convey.Logging.dll" + ] + }, + "Convey.Logging.CQRS/1.1.448": { + "sha512": "Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "type": "package", + "path": "convey.logging.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.cqrs.1.1.448.nupkg.sha512", + "convey.logging.cqrs.nuspec", + "lib/net6.0/Convey.Logging.CQRS.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "sha512": "cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "type": "package", + "path": "convey.messagebrokers.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "convey.messagebrokers.cqrs.nuspec", + "lib/net6.0/Convey.MessageBrokers.CQRS.dll" + ] + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "sha512": "UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "type": "package", + "path": "convey.messagebrokers.outbox/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.dll" + ] + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "sha512": "skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "type": "package", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.mongo.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll" + ] + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "sha512": "iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "type": "package", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "convey.messagebrokers.rabbitmq.nuspec", + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "sha512": "PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "type": "package", + "path": "convey.metrics.appmetrics/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "convey.metrics.appmetrics.nuspec", + "lib/net6.0/Convey.Metrics.AppMetrics.dll" + ] + }, + "Convey.Persistence.MongoDB/1.1.448": { + "sha512": "KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "type": "package", + "path": "convey.persistence.mongodb/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.mongodb.1.1.448.nupkg.sha512", + "convey.persistence.mongodb.nuspec", + "lib/net6.0/Convey.Persistence.MongoDB.dll" + ] + }, + "Convey.Persistence.Redis/1.1.448": { + "sha512": "pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "type": "package", + "path": "convey.persistence.redis/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.redis.1.1.448.nupkg.sha512", + "convey.persistence.redis.nuspec", + "lib/net6.0/Convey.Persistence.Redis.dll" + ] + }, + "Convey.Secrets.Vault/1.1.448": { + "sha512": "FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "type": "package", + "path": "convey.secrets.vault/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.secrets.vault.1.1.448.nupkg.sha512", + "convey.secrets.vault.nuspec", + "lib/net6.0/Convey.Secrets.Vault.dll" + ] + }, + "Convey.Security/1.1.448": { + "sha512": "qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "type": "package", + "path": "convey.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.security.1.1.448.nupkg.sha512", + "convey.security.nuspec", + "lib/net6.0/Convey.Security.dll" + ] + }, + "Convey.Tracing.Jaeger/1.1.448": { + "sha512": "0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "type": "package", + "path": "convey.tracing.jaeger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.dll" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "sha512": "9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "type": "package", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.rabbitmq.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll" + ] + }, + "Convey.WebApi/1.1.448": { + "sha512": "2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "type": "package", + "path": "convey.webapi/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.1.1.448.nupkg.sha512", + "convey.webapi.nuspec", + "lib/net6.0/Convey.WebApi.dll" + ] + }, + "Convey.WebApi.CQRS/1.1.448": { + "sha512": "EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "type": "package", + "path": "convey.webapi.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.cqrs.1.1.448.nupkg.sha512", + "convey.webapi.cqrs.nuspec", + "lib/net6.0/Convey.WebApi.CQRS.dll" + ] + }, + "Convey.WebApi.Security/1.1.448": { + "sha512": "R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "type": "package", + "path": "convey.webapi.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.security.1.1.448.nupkg.sha512", + "convey.webapi.security.nuspec", + "lib/net6.0/Convey.WebApi.Security.dll" + ] + }, + "Convey.WebApi.Swagger/1.1.448": { + "sha512": "cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "type": "package", + "path": "convey.webapi.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.swagger.1.1.448.nupkg.sha512", + "convey.webapi.swagger.nuspec", + "lib/net6.0/Convey.WebApi.Swagger.dll" + ] + }, + "DnsClient/1.6.1": { + "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "type": "package", + "path": "dnsclient/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.6.1.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/net5.0/DnsClient.dll", + "lib/net5.0/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Elasticsearch.Net/7.8.1": { + "sha512": "vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "type": "package", + "path": "elasticsearch.net/7.8.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "elasticsearch.net.7.8.1.nupkg.sha512", + "elasticsearch.net.nuspec", + "lib/net461/Elasticsearch.Net.dll", + "lib/net461/Elasticsearch.Net.pdb", + "lib/net461/Elasticsearch.Net.xml", + "lib/netstandard2.0/Elasticsearch.Net.dll", + "lib/netstandard2.0/Elasticsearch.Net.pdb", + "lib/netstandard2.0/Elasticsearch.Net.xml", + "lib/netstandard2.1/Elasticsearch.Net.dll", + "lib/netstandard2.1/Elasticsearch.Net.pdb", + "lib/netstandard2.1/Elasticsearch.Net.xml", + "license.txt", + "nuget-icon.png" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Jaeger/1.0.3": { + "sha512": "y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "type": "package", + "path": "jaeger/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.1.0.3.nupkg.sha512", + "jaeger.nuspec" + ] + }, + "Jaeger.Communication.Thrift/1.0.3": { + "sha512": "LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "type": "package", + "path": "jaeger.communication.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.communication.thrift.1.0.3.nupkg.sha512", + "jaeger.communication.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll", + "lib/netstandard2.0/Jaeger.Communication.Thrift.pdb" + ] + }, + "Jaeger.Core/1.0.3": { + "sha512": "GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "type": "package", + "path": "jaeger.core/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.core.1.0.3.nupkg.sha512", + "jaeger.core.nuspec", + "lib/netstandard2.0/Jaeger.Core.dll", + "lib/netstandard2.0/Jaeger.Core.pdb", + "lib/netstandard2.0/Jaeger.Core.xml" + ] + }, + "Jaeger.Senders.Thrift/1.0.3": { + "sha512": "3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "type": "package", + "path": "jaeger.senders.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.senders.thrift.1.0.3.nupkg.sha512", + "jaeger.senders.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll", + "lib/netstandard2.0/Jaeger.Senders.Thrift.pdb", + "lib/netstandard2.0/Jaeger.Senders.Thrift.xml" + ] + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "sha512": "VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.xml", + "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.certificate.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "sha512": "5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "sha512": "4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "sha512": "1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "sha512": "YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "sha512": "M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "sha512": "7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "sha512": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.6.0": { + "sha512": "kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "type": "package", + "path": "microsoft.csharp/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.6.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "sha512": "Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "sha512": "DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "sha512": "lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "sha512": "M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "type": "package", + "path": "microsoft.extensions.hosting/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Hosting.dll", + "lib/net461/Microsoft.Extensions.Hosting.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/6.0.0": { + "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "type": "package", + "path": "microsoft.extensions.http/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Http.dll", + "lib/net461/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "sha512": "ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net461/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "sha512": "gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "type": "package", + "path": "microsoft.extensions.logging.console/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Console.dll", + "lib/net461/Microsoft.Extensions.Logging.Console.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "sha512": "BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net461/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "sha512": "IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "sha512": "C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "sha512": "KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "type": "package", + "path": "microsoft.net.http.headers/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.1.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/2.25.0": { + "sha512": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "type": "package", + "path": "mongodb.bson/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.25.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.25.0": { + "sha512": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "type": "package", + "path": "mongodb.driver/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.25.0.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.25.0": { + "sha512": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "type": "package", + "path": "mongodb.driver.core/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "THIRD-PARTY-NOTICES", + "lib/net472/MongoDB.Driver.Core.dll", + "lib/net472/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.25.0.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.GridFS/2.25.0": { + "sha512": "RFvBxqr0H16pzLfuPHsyyVvRfr2nR/GjnBMOcfkxDwwlEipR2l9HI/7OFSaKs4wED+YjwIsd4GJ+eb2bLYkQxA==", + "type": "package", + "path": "mongodb.driver.gridfs/2.25.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net472/MongoDB.Driver.GridFS.dll", + "lib/net472/MongoDB.Driver.GridFS.xml", + "lib/netstandard2.0/MongoDB.Driver.GridFS.dll", + "lib/netstandard2.0/MongoDB.Driver.GridFS.xml", + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll", + "lib/netstandard2.1/MongoDB.Driver.GridFS.xml", + "mongodb.driver.gridfs.2.25.0.nupkg.sha512", + "mongodb.driver.gridfs.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Libmongocrypt/1.8.2": { + "sha512": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==", + "type": "package", + "path": "mongodb.libmongocrypt/1.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.8.2.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Open.Serialization/2.3.1": { + "sha512": "HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "type": "package", + "path": "open.serialization/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.dll", + "lib/netstandard2.0/Open.Serialization.xml", + "lib/netstandard2.1/Open.Serialization.dll", + "logo.png", + "open.serialization.2.3.1.nupkg.sha512", + "open.serialization.nuspec" + ] + }, + "Open.Serialization.Json/2.3.1": { + "sha512": "+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "type": "package", + "path": "open.serialization.json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.dll", + "lib/netstandard2.0/Open.Serialization.Json.xml", + "lib/netstandard2.1/Open.Serialization.Json.dll", + "logo.png", + "open.serialization.json.2.3.1.nupkg.sha512", + "open.serialization.json.nuspec" + ] + }, + "Open.Serialization.Json.System/2.3.2": { + "sha512": "oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "type": "package", + "path": "open.serialization.json.system/2.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.System.dll", + "lib/netstandard2.1/Open.Serialization.Json.System.dll", + "logo.png", + "open.serialization.json.system.2.3.2.nupkg.sha512", + "open.serialization.json.system.nuspec" + ] + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "sha512": "8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "type": "package", + "path": "open.serialization.json.utf8json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.Utf8Json.dll", + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll", + "logo.png", + "open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "open.serialization.json.utf8json.nuspec" + ] + }, + "OpenTracing/0.12.1": { + "sha512": "8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "type": "package", + "path": "opentracing/0.12.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/OpenTracing.dll", + "lib/net45/OpenTracing.pdb", + "lib/net45/OpenTracing.xml", + "lib/netstandard1.3/OpenTracing.dll", + "lib/netstandard1.3/OpenTracing.pdb", + "lib/netstandard1.3/OpenTracing.xml", + "lib/netstandard2.0/OpenTracing.dll", + "lib/netstandard2.0/OpenTracing.pdb", + "lib/netstandard2.0/OpenTracing.xml", + "opentracing.0.12.1.nupkg.sha512", + "opentracing.nuspec" + ] + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "sha512": "bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "type": "package", + "path": "opentracing.contrib.netcore/0.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/OpenTracing.Contrib.NetCore.dll", + "lib/net5.0/OpenTracing.Contrib.NetCore.xml", + "lib/net6.0/OpenTracing.Contrib.NetCore.dll", + "lib/net6.0/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.xml", + "opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "opentracing.contrib.netcore.nuspec", + "package-icon.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "Polly/7.2.2": { + "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "type": "package", + "path": "polly/7.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Polly.dll", + "lib/net461/Polly.pdb", + "lib/net461/Polly.xml", + "lib/net472/Polly.dll", + "lib/net472/Polly.pdb", + "lib/net472/Polly.xml", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.pdb", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.pdb", + "lib/netstandard2.0/Polly.xml", + "polly.7.2.2.nupkg.sha512", + "polly.nuspec" + ] + }, + "protobuf-net/2.4.0": { + "sha512": "j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "type": "package", + "path": "protobuf-net/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/protobuf-net.dll", + "lib/net20/protobuf-net.xml", + "lib/net35/protobuf-net.dll", + "lib/net35/protobuf-net.xml", + "lib/net40/protobuf-net.dll", + "lib/net40/protobuf-net.xml", + "lib/netcoreapp2.1/protobuf-net.dll", + "lib/netcoreapp2.1/protobuf-net.xml", + "lib/netstandard1.0/protobuf-net.dll", + "lib/netstandard1.0/protobuf-net.xml", + "lib/netstandard1.3/protobuf-net.dll", + "lib/netstandard1.3/protobuf-net.xml", + "lib/netstandard2.0/protobuf-net.dll", + "lib/netstandard2.0/protobuf-net.xml", + "lib/uap10.0/protobuf-net.dll", + "lib/uap10.0/protobuf-net.pri", + "lib/uap10.0/protobuf-net.xml", + "protobuf-net.2.4.0.nupkg.sha512", + "protobuf-net.nuspec" + ] + }, + "RabbitMQ.Client/6.5.0": { + "sha512": "9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "type": "package", + "path": "rabbitmq.client/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/RabbitMQ.Client.dll", + "lib/net461/RabbitMQ.Client.xml", + "lib/netstandard2.0/RabbitMQ.Client.dll", + "lib/netstandard2.0/RabbitMQ.Client.xml", + "rabbitmq.client.6.5.0.nupkg.sha512", + "rabbitmq.client.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.3.0": { + "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "type": "package", + "path": "runtime.native.system.net.security/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.3.0.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/4.1.0": { + "sha512": "qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "type": "package", + "path": "serilog.aspnetcore/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net5.0/Serilog.AspNetCore.dll", + "lib/net5.0/Serilog.AspNetCore.xml", + "lib/netcoreapp3.1/Serilog.AspNetCore.dll", + "lib/netcoreapp3.1/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "lib/netstandard2.1/Serilog.AspNetCore.dll", + "lib/netstandard2.1/Serilog.AspNetCore.xml", + "serilog.aspnetcore.4.1.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "sha512": "nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "type": "package", + "path": "serilog.extensions.hosting/4.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.4.1.2.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/3.1.0": { + "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "type": "package", + "path": "serilog.extensions.logging/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.3.1.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/1.1.0": { + "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "type": "package", + "path": "serilog.formatting.compact/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Serilog.Formatting.Compact.dll", + "lib/net452/Serilog.Formatting.Compact.xml", + "lib/netstandard1.1/Serilog.Formatting.Compact.dll", + "lib/netstandard1.1/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "serilog.formatting.compact.1.1.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "sha512": "768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "type": "package", + "path": "serilog.formatting.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Formatting.Elasticsearch.dll", + "lib/net45/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.xml", + "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "serilog.formatting.elasticsearch.nuspec" + ] + }, + "Serilog.Settings.Configuration/3.1.0": { + "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "type": "package", + "path": "serilog.settings.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Serilog.Settings.Configuration.dll", + "lib/net451/Serilog.Settings.Configuration.xml", + "lib/net461/Serilog.Settings.Configuration.dll", + "lib/net461/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.3.1.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/4.0.1": { + "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "type": "package", + "path": "serilog.sinks.console/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Console.dll", + "lib/net45/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/netstandard1.3/Serilog.Sinks.Console.dll", + "lib/netstandard1.3/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "serilog.sinks.console.4.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "sha512": "SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "type": "package", + "path": "serilog.sinks.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Serilog.Sinks.Elasticsearch.dll", + "lib/net461/Serilog.Sinks.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.xml", + "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "serilog.sinks.elasticsearch.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "sha512": "bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "type": "package", + "path": "serilog.sinks.grafana.loki/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.xml", + "serilog-sink-nuget.png", + "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "serilog.sinks.grafana.loki.nuspec" + ] + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "sha512": "UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "type": "package", + "path": "serilog.sinks.periodicbatching/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.PeriodicBatching.dll", + "lib/net45/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.xml", + "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "serilog.sinks.periodicbatching.nuspec" + ] + }, + "Serilog.Sinks.Seq/5.1.0": { + "sha512": "VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "type": "package", + "path": "serilog.sinks.seq/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Seq.dll", + "lib/net45/Serilog.Sinks.Seq.xml", + "lib/net5.0/Serilog.Sinks.Seq.dll", + "lib/net5.0/Serilog.Sinks.Seq.xml", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.dll", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.1/Serilog.Sinks.Seq.dll", + "lib/netstandard1.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.3/Serilog.Sinks.Seq.dll", + "lib/netstandard1.3/Serilog.Sinks.Seq.xml", + "lib/netstandard2.0/Serilog.Sinks.Seq.dll", + "lib/netstandard2.0/Serilog.Sinks.Seq.xml", + "serilog.sinks.seq.5.1.0.nupkg.sha512", + "serilog.sinks.seq.nuspec" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "SixLabors.ImageSharp/3.1.4": { + "sha512": "lFIdxgGDA5iYkUMRFOze7BGLcdpoLFbR+a20kc1W7NepvzU7ejtxtWOg9RvgG7kb9tBoJ3ONYOK6kLil/dgF1w==", + "type": "package", + "path": "sixlabors.imagesharp/3.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "build/SixLabors.ImageSharp.props", + "lib/net6.0/SixLabors.ImageSharp.dll", + "lib/net6.0/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.3.1.4.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "SmartFormat.NET/2.7.2": { + "sha512": "TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "type": "package", + "path": "smartformat.net/2.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "SmartFormat_365x365.png", + "lib/net461/SmartFormat.dll", + "lib/net461/SmartFormat.xml", + "lib/netstandard2.0/SmartFormat.dll", + "lib/netstandard2.0/SmartFormat.xml", + "smartformat.net.2.7.2.nupkg.sha512", + "smartformat.net.nuspec" + ] + }, + "Snappier/1.0.0": { + "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "type": "package", + "path": "snappier/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING.txt", + "lib/net5.0/Snappier.dll", + "lib/net5.0/Snappier.xml", + "lib/netcoreapp3.0/Snappier.dll", + "lib/netcoreapp3.0/Snappier.xml", + "lib/netstandard2.0/Snappier.dll", + "lib/netstandard2.0/Snappier.xml", + "lib/netstandard2.1/Snappier.dll", + "lib/netstandard2.1/Snappier.xml", + "snappier.1.0.0.nupkg.sha512", + "snappier.nuspec" + ] + }, + "StackExchange.Redis/2.2.4": { + "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "type": "package", + "path": "stackexchange.redis/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net5.0/StackExchange.Redis.dll", + "lib/net5.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.2.4.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "sha512": "I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "type": "package", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.xml", + "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.annotations.nuspec" + ] + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "sha512": "jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "type": "package", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.xml", + "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.redoc.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "type": "package", + "path": "system.configuration.configurationmanager/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "type": "package", + "path": "system.diagnostics.performancecounter/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/5.0.0": { + "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "type": "package", + "path": "system.drawing.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "sha512": "lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/5.0.0": { + "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "type": "package", + "path": "system.io.pipelines/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipes/4.3.0": { + "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "type": "package", + "path": "system.io.pipes/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.IO.Pipes.dll", + "ref/net46/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.xml", + "ref/netstandard1.3/de/System.IO.Pipes.xml", + "ref/netstandard1.3/es/System.IO.Pipes.xml", + "ref/netstandard1.3/fr/System.IO.Pipes.xml", + "ref/netstandard1.3/it/System.IO.Pipes.xml", + "ref/netstandard1.3/ja/System.IO.Pipes.xml", + "ref/netstandard1.3/ko/System.IO.Pipes.xml", + "ref/netstandard1.3/ru/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml", + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win/lib/net46/System.IO.Pipes.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.pipes.4.3.0.nupkg.sha512", + "system.io.pipes.nuspec" + ] + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "sha512": "Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "type": "package", + "path": "system.io.pipes.accesscontrol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Pipes.AccessControl.dll", + "lib/net461/System.IO.Pipes.AccessControl.dll", + "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/net46/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.xml", + "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "system.io.pipes.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "sha512": "fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "type": "package", + "path": "system.net.http.winhttphandler/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.3.0": { + "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "type": "package", + "path": "system.net.requests/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.3.0.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.3.2": { + "sha512": "xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "type": "package", + "path": "system.net.security/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.3.2.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.3.0": { + "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "type": "package", + "path": "system.net.webheadercollection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.3.0.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.5.3": { + "sha512": "ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "type": "package", + "path": "system.private.servicemodel/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/netcore50/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/uap10.0.16300/System.Private.ServiceModel.dll", + "system.private.servicemodel.4.5.3.nupkg.sha512", + "system.private.servicemodel.nuspec", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.5.0": { + "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Primitives/4.5.3": { + "sha512": "Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "type": "package", + "path": "system.servicemodel.primitives/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/uap10.0.16300/System.ServiceModel.Primitives.dll", + "lib/uap10.0.16300/System.ServiceModel.dll", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/uap10.0.16300/System.ServiceModel.Primitives.dll", + "ref/uap10.0.16300/System.ServiceModel.dll", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.5.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "sha512": "umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.11.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Threading.Tasks.Dataflow.dll", + "lib/net461/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "Utf8Json/1.3.7": { + "sha512": "lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "type": "package", + "path": "utf8json/1.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Utf8Json.dll", + "lib/net45/Utf8Json.xml", + "lib/net47/Utf8Json.dll", + "lib/net47/Utf8Json.xml", + "lib/netstandard2.0/Utf8Json.dll", + "lib/netstandard2.0/Utf8Json.xml", + "utf8json.1.3.7.nupkg.sha512", + "utf8json.nuspec" + ] + }, + "VaultSharp/1.7.0.4": { + "sha512": "iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "type": "package", + "path": "vaultsharp/1.7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net45/VaultSharp.dll", + "lib/net45/VaultSharp.xml", + "lib/net46/VaultSharp.dll", + "lib/net46/VaultSharp.xml", + "lib/net461/VaultSharp.dll", + "lib/net461/VaultSharp.xml", + "lib/net462/VaultSharp.dll", + "lib/net462/VaultSharp.xml", + "lib/net47/VaultSharp.dll", + "lib/net47/VaultSharp.xml", + "lib/net471/VaultSharp.dll", + "lib/net471/VaultSharp.xml", + "lib/net472/VaultSharp.dll", + "lib/net472/VaultSharp.xml", + "lib/net48/VaultSharp.dll", + "lib/net48/VaultSharp.xml", + "lib/net5.0/VaultSharp.dll", + "lib/net5.0/VaultSharp.xml", + "lib/net6.0/VaultSharp.dll", + "lib/net6.0/VaultSharp.xml", + "lib/netstandard1.3/VaultSharp.dll", + "lib/netstandard1.3/VaultSharp.xml", + "lib/netstandard2.0/VaultSharp.dll", + "lib/netstandard2.0/VaultSharp.xml", + "lib/netstandard2.1/VaultSharp.dll", + "lib/netstandard2.1/VaultSharp.xml", + "vaultsharp.1.7.0.4.nupkg.sha512", + "vaultsharp.nuspec" + ] + }, + "ZstdSharp.Port/0.7.3": { + "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "type": "package", + "path": "zstdsharp.port/0.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ZstdSharp.dll", + "lib/net5.0/ZstdSharp.dll", + "lib/net6.0/ZstdSharp.dll", + "lib/net7.0/ZstdSharp.dll", + "lib/netcoreapp3.1/ZstdSharp.dll", + "lib/netstandard2.0/ZstdSharp.dll", + "lib/netstandard2.1/ZstdSharp.dll", + "zstdsharp.port.0.7.3.nupkg.sha512", + "zstdsharp.port.nuspec" + ] + }, + "MiniSpace.Services.MediaFiles.Application/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj" + }, + "MiniSpace.Services.MediaFiles.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj", + "msbuildProject": "../MiniSpace.Services.MediaFiles.Core/MiniSpace.Services.MediaFiles.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.Auth >= 1.1.448", + "Convey.CQRS.Queries >= 1.1.448", + "Convey.Discovery.Consul >= 1.1.448", + "Convey.HTTP >= 1.1.448", + "Convey.LoadBalancing.Fabio >= 1.1.448", + "Convey.Logging >= 1.1.448", + "Convey.Logging.CQRS >= 1.1.448", + "Convey.MessageBrokers >= 1.1.448", + "Convey.MessageBrokers.CQRS >= 1.1.448", + "Convey.MessageBrokers.Outbox >= 1.1.448", + "Convey.MessageBrokers.Outbox.Mongo >= 1.1.448", + "Convey.MessageBrokers.RabbitMQ >= 1.1.448", + "Convey.Metrics.AppMetrics >= 1.1.448", + "Convey.Persistence.MongoDB >= 1.1.448", + "Convey.Persistence.Redis >= 1.1.448", + "Convey.Secrets.Vault >= 1.1.448", + "Convey.Security >= 1.1.448", + "Convey.Tracing.Jaeger >= 1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ >= 1.1.448", + "Convey.WebApi.CQRS >= 1.1.448", + "Convey.WebApi.Security >= 1.1.448", + "Convey.WebApi.Swagger >= 1.1.448", + "MiniSpace.Services.MediaFiles.Application >= 1.0.0", + "MongoDB.Driver.GridFS >= 2.25.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "projectName": "MiniSpace.Services.MediaFiles.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Application/MiniSpace.Services.MediaFiles.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "MongoDB.Driver.GridFS": { + "target": "Package", + "version": "[2.25.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.nuget.cache b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.nuget.cache new file mode 100644 index 000000000..c09e28eb6 --- /dev/null +++ b/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/obj/project.nuget.cache @@ -0,0 +1,285 @@ +{ + "version": 2, + "dgSpecHash": "isIK/IJ7r1f9M1pN9jA1/3OeXl0zLMzVr94BTn2ElJHDrKi+nd21VG/UXcrGvKxnAO0jEI9gctwZTbou9I+sLw==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.MediaFiles/src/MiniSpace.Services.MediaFiles.Infrastructure/MiniSpace.Services.MediaFiles.Infrastructure.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/apachethrift/0.14.1/apachethrift.0.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics/4.3.0/app.metrics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.abstractions/4.3.0/app.metrics.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore/4.3.0/app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.abstractions/4.3.0/app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.core/4.3.0/app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.endpoints/4.3.0/app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health/3.2.0/app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.core/3.2.0/app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.endpoints/3.2.0/app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.hosting/3.2.0/app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.hosting/4.3.0/app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc/4.3.0/app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc.core/4.3.0/app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.reporting/4.0.0/app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.routing/4.3.0/app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.tracking/4.3.0/app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.concurrency/4.3.0/app.metrics.concurrency.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.core/4.3.0/app.metrics.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.configuration/4.3.0/app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.dependencyinjection/4.3.0/app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.hosting/4.3.0/app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.ascii/4.3.0/app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.influxdb/4.3.0/app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.json/4.3.0/app.metrics.formatters.json.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.prometheus/4.3.0/app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health/3.1.0/app.metrics.health.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.abstractions/3.2.0/app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.checks.http/3.2.0/app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.core/3.1.0/app.metrics.health.core.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.configuration/3.1.0/app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.dependencyinjection/3.1.0/app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.hosting/3.1.0/app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.ascii/3.1.0/app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.json/3.1.0/app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.console/4.3.0/app.metrics.reporting.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.http/4.3.0/app.metrics.reporting.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.influxdb/4.3.0/app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512", + "/home/kaliuser/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.auth/1.1.448/convey.auth.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.discovery.consul/1.1.448/convey.discovery.consul.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.docs.swagger/1.1.448/convey.docs.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.http/1.1.448/convey.http.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.loadbalancing.fabio/1.1.448/convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging/1.1.448/convey.logging.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging.cqrs/1.1.448/convey.logging.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.cqrs/1.1.448/convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox/1.1.448/convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox.mongo/1.1.448/convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.rabbitmq/1.1.448/convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.metrics.appmetrics/1.1.448/convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.mongodb/1.1.448/convey.persistence.mongodb.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.redis/1.1.448/convey.persistence.redis.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.secrets.vault/1.1.448/convey.secrets.vault.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.security/1.1.448/convey.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger/1.1.448/convey.tracing.jaeger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger.rabbitmq/1.1.448/convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi/1.1.448/convey.webapi.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.cqrs/1.1.448/convey.webapi.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.security/1.1.448/convey.webapi.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.swagger/1.1.448/convey.webapi.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/elasticsearch.net/7.8.1/elasticsearch.net.7.8.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger/1.0.3/jaeger.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.communication.thrift/1.0.3/jaeger.communication.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.core/1.0.3/jaeger.core.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.senders.thrift/1.0.3/jaeger.senders.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.certificate/6.0.1/microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/6.0.1/microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authorization/6.0.1/microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.1.0/microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.1.0/microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.extensions/2.1.0/microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.metadata/6.0.1/microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.bcl.asyncinterfaces/1.0.0/microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.csharp/4.6.0/microsoft.csharp.4.6.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0/microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.stackexchangeredis/6.0.1/microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.usersecrets/6.0.0/microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting/6.0.0/microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting.abstractions/6.0.0/microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.http/6.0.0/microsoft.extensions.http.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.debug/6.0.0/microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventlog/6.0.0/microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventsource/6.0.0/microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.15.0/microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.logging/6.15.0/microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols/6.10.0/microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.10.0/microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.tokens/6.15.0/microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.net.http.headers/2.1.0/microsoft.net.http.headers.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.systemevents/5.0.0/microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.bson/2.25.0/mongodb.bson.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver/2.25.0/mongodb.driver.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.core/2.25.0/mongodb.driver.core.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.gridfs/2.25.0/mongodb.driver.gridfs.2.25.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.libmongocrypt/1.8.2/mongodb.libmongocrypt.1.8.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization/2.3.1/open.serialization.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json/2.3.1/open.serialization.json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.system/2.3.2/open.serialization.json.system.2.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.utf8json/2.3.1/open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing/0.12.1/opentracing.0.12.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing.contrib.netcore/0.8.0/opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/pipelines.sockets.unofficial/2.2.0/pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/polly/7.2.2/polly.7.2.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/protobuf-net/2.4.0/protobuf-net.2.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/rabbitmq.client/6.5.0/rabbitmq.client.6.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog/2.10.0/serilog.2.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.aspnetcore/4.1.0/serilog.aspnetcore.4.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.hosting/4.1.2/serilog.extensions.hosting.4.1.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.logging/3.1.0/serilog.extensions.logging.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.compact/1.1.0/serilog.formatting.compact.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.elasticsearch/8.4.1/serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.settings.configuration/3.1.0/serilog.settings.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.console/4.0.1/serilog.sinks.console.4.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.elasticsearch/8.4.1/serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.grafana.loki/7.1.0/serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.periodicbatching/2.3.0/serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.seq/5.1.0/serilog.sinks.seq.5.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sixlabors.imagesharp/3.1.4/sixlabors.imagesharp.3.1.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/smartformat.net/2.7.2/smartformat.net.2.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/stackexchange.redis/2.2.4/stackexchange.redis.2.2.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.annotations/6.2.3/swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.redoc/6.2.3/swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swagger/6.2.3/swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.2.3/swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.2.3/swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.configuration.configurationmanager/5.0.0/system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.performancecounter/5.0.0/system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.drawing.common/5.0.0/system.drawing.common.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.identitymodel.tokens.jwt/6.15.0/system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipelines/5.0.0/system.io.pipelines.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes.accesscontrol/4.5.1/system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http.winhttphandler/4.7.0/system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.requests/4.3.0/system.net.requests.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.security/4.3.2/system.net.security.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.webheadercollection/4.3.0/system.net.webheadercollection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.private.servicemodel/4.5.3/system.private.servicemodel.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.dispatchproxy/4.5.0/system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.5.0/system.security.cryptography.cng.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.servicemodel.primitives/4.5.3/system.servicemodel.primitives.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.dataflow/4.11.1/system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.5.3/system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/utf8json/1.3.7/utf8json.1.3.7.nupkg.sha512", + "/home/kaliuser/.nuget/packages/vaultsharp/1.7.0.4/vaultsharp.1.7.0.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll new file mode 100755 index 000000000..6592b08c3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll new file mode 100755 index 000000000..1b629d190 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll new file mode 100755 index 000000000..e18ca9855 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll new file mode 100755 index 000000000..71e95dd96 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll new file mode 100755 index 000000000..61683d7d8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll new file mode 100755 index 000000000..59efe336c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll new file mode 100755 index 000000000..f99c13bc9 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll new file mode 100755 index 000000000..b6500686c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll new file mode 100755 index 000000000..23a3113ad Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll new file mode 100755 index 000000000..45667528d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll new file mode 100755 index 000000000..e54d6c572 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll new file mode 100755 index 000000000..a153fdb1d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll new file mode 100755 index 000000000..f3fb464d6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll new file mode 100755 index 000000000..f36a55517 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll new file mode 100755 index 000000000..b2d6e8753 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll new file mode 100755 index 000000000..cd569274a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Core.dll new file mode 100755 index 000000000..22d670c2c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll new file mode 100755 index 000000000..9fb6d6527 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll new file mode 100755 index 000000000..afdb41e0d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll new file mode 100755 index 000000000..018983f1f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll new file mode 100755 index 000000000..b95f0901a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll new file mode 100755 index 000000000..0a38b80df Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll new file mode 100755 index 000000000..104ee8cdd Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll new file mode 100755 index 000000000..f38a14074 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll new file mode 100755 index 000000000..691f3a511 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll new file mode 100755 index 000000000..12dcd760c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll new file mode 100755 index 000000000..40602fb1e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll new file mode 100755 index 000000000..e0e9e95d9 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll new file mode 100755 index 000000000..3f172181a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll new file mode 100755 index 000000000..7a42efded Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll new file mode 100755 index 000000000..30cff0bff Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll new file mode 100755 index 000000000..aa51bca55 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.dll new file mode 100755 index 000000000..65c65e40e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll new file mode 100755 index 000000000..fda2e9a57 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll new file mode 100755 index 000000000..f9663e880 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll new file mode 100755 index 000000000..904296b94 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.dll new file mode 100755 index 000000000..81e6e6e14 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Auth.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Auth.dll new file mode 100755 index 000000000..400e0171d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Auth.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll new file mode 100755 index 000000000..30cd22b68 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll new file mode 100755 index 000000000..115c23f3b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll new file mode 100755 index 000000000..fa6509e0c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll new file mode 100755 index 000000000..c5ce03346 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll new file mode 100755 index 000000000..c493944d3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.HTTP.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.HTTP.dll new file mode 100755 index 000000000..5a36a7fdc Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.HTTP.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll new file mode 100755 index 000000000..ac1d7a21d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll new file mode 100755 index 000000000..d4aef8fc4 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.dll new file mode 100755 index 000000000..b23a443f2 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll new file mode 100755 index 000000000..de2306102 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll new file mode 100755 index 000000000..ff568dee6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll new file mode 100755 index 000000000..7ca504270 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll new file mode 100755 index 000000000..511da54a0 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll new file mode 100755 index 000000000..a5b8ba16a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll new file mode 100755 index 000000000..9fbe2e35e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll new file mode 100755 index 000000000..99f360d1e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll new file mode 100755 index 000000000..a5785435e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll new file mode 100755 index 000000000..d282e477d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Security.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Security.dll new file mode 100755 index 000000000..deaa4c1f6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Security.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll new file mode 100755 index 000000000..f2ac7f60b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll new file mode 100755 index 000000000..881cdb35a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll new file mode 100755 index 000000000..1b0fe1b76 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll new file mode 100755 index 000000000..b3d4fca00 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll new file mode 100755 index 000000000..ff0fe22f6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.dll new file mode 100755 index 000000000..9d138b841 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.dll new file mode 100755 index 000000000..96cd624b7 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/DnsClient.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/DnsClient.dll new file mode 100755 index 000000000..24e476d26 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/DnsClient.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Elasticsearch.Net.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Elasticsearch.Net.dll new file mode 100755 index 000000000..593c211dc Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Elasticsearch.Net.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Figgle.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Figgle.dll new file mode 100755 index 000000000..b68a07152 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Figgle.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll new file mode 100755 index 000000000..a389ce9bf Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Core.dll new file mode 100755 index 000000000..22fbd9659 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll new file mode 100755 index 000000000..944a1e881 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll new file mode 100755 index 000000000..c9f21c774 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 000000000..8d6c47acb Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 000000000..30cb199d2 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll new file mode 100755 index 000000000..b1b0dd623 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 000000000..02b9f976c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 000000000..cca623ecf Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 000000000..9a1c340c0 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 000000000..ff358af9f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 000000000..d02658ec4 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 000000000..410f2be4d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100755 index 000000000..14f3deda4 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 000000000..d62f3335b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api new file mode 100755 index 000000000..dca9c8f40 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.deps.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.deps.json new file mode 100644 index 000000000..1fb8dbcc9 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.deps.json @@ -0,0 +1,4797 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.Notifications.Api/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.WebApi": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "MiniSpace.Services.Notifications.Infrastructure": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Api.dll": {} + } + }, + "ApacheThrift/0.14.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": { + "assemblyVersion": "0.14.1.0", + "fileVersion": "0.14.1.0" + } + } + }, + "App.Metrics/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Core/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.6.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Health/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "dependencies": { + "App.Metrics.Concurrency": "4.3.0", + "Microsoft.CSharp": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Auth/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Discovery.Consul/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Docs.Swagger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.HTTP/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging.CQRS/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.Redis/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Secrets.Vault/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DnsClient/1.4.0": { + "runtime": { + "lib/netstandard2.1/DnsClient.dll": { + "assemblyVersion": "1.4.0.0", + "fileVersion": "1.4.0.0" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.8.1.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Jaeger/1.0.3": { + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Core/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": {}, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.46214" + } + } + }, + "Microsoft.CSharp/4.6.0": {}, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "MongoDB.Bson/2.14.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + } + }, + "MongoDB.Driver/2.14.1": { + "dependencies": { + "MongoDB.Bson": "2.14.1", + "MongoDB.Driver.Core": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + } + }, + "MongoDB.Driver.Core/2.14.1": { + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0", + "SharpCompress": "0.30.1", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libsnappy64.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux/native/libzstd.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libsnappy64.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libzstd.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/libzstd.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/snappy32.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/snappy64.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "MongoDB.Libmongocrypt/1.3.0": { + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.3.0.0", + "fileVersion": "1.3.0.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/mongocrypt.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Open.Serialization/2.3.1": { + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json/2.3.1": { + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json.System/2.3.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": { + "assemblyVersion": "2.3.2.0", + "fileVersion": "2.3.2.0" + } + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "OpenTracing/0.12.1": { + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "assemblyVersion": "0.12.1.0", + "fileVersion": "0.12.1.0" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "assemblyVersion": "0.8.0.0", + "fileVersion": "0.8.0.0" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.0.45337" + } + } + }, + "Polly/7.2.2": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.2.2.0" + } + } + }, + "protobuf-net/2.4.0": { + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "assemblyVersion": "2.4.0.0", + "fileVersion": "2.4.0.8641" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Hosting/4.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.1.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.2.0" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "3.1.6", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "assemblyVersion": "8.4.1.0", + "fileVersion": "8.4.1.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Collections.Concurrent": "4.3.0", + "System.Threading.Timer": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "assemblyVersion": "5.1.0.0", + "fileVersion": "5.1.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "SmartFormat.NET/2.7.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.Text.Json": "6.0.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.2.0" + } + } + }, + "StackExchange.Redis/2.2.4": { + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.4.27433" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/5.0.0": {}, + "System.IO.Pipes/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Security/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.5.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.DispatchProxy/4.5.0": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Primitives/4.5.3": { + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "lib/netstandard2.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": {}, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "Utf8Json/1.3.7": { + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "assemblyVersion": "1.3.7.0", + "fileVersion": "1.3.7.0" + } + } + }, + "VaultSharp/1.7.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "assemblyVersion": "1.7.0.4", + "fileVersion": "1.7.0.4" + } + } + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.Notifications.Core": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Application.dll": {} + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "runtime": { + "MiniSpace.Services.Notifications.Core.dll": {} + } + }, + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.Notifications.Application": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.Notifications.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ApacheThrift/0.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "path": "apachethrift/0.14.1", + "hashPath": "apachethrift.0.14.1.nupkg.sha512" + }, + "App.Metrics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "path": "app.metrics/4.3.0", + "hashPath": "app.metrics.4.3.0.nupkg.sha512" + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "path": "app.metrics.abstractions/4.3.0", + "hashPath": "app.metrics.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "path": "app.metrics.aspnetcore/4.3.0", + "hashPath": "app.metrics.aspnetcore.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "hashPath": "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "path": "app.metrics.aspnetcore.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "hashPath": "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "path": "app.metrics.aspnetcore.health/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "hashPath": "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "hashPath": "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "hashPath": "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "hashPath": "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512" + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "path": "app.metrics.concurrency/4.3.0", + "hashPath": "app.metrics.concurrency.4.3.0.nupkg.sha512" + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "path": "app.metrics.core/4.3.0", + "hashPath": "app.metrics.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "path": "app.metrics.extensions.configuration/4.3.0", + "hashPath": "app.metrics.extensions.configuration.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "hashPath": "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "path": "app.metrics.extensions.hosting/4.3.0", + "hashPath": "app.metrics.extensions.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "path": "app.metrics.formatters.ascii/4.3.0", + "hashPath": "app.metrics.formatters.ascii.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "path": "app.metrics.formatters.influxdb/4.3.0", + "hashPath": "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "path": "app.metrics.formatters.json/4.3.0", + "hashPath": "app.metrics.formatters.json.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "path": "app.metrics.formatters.prometheus/4.3.0", + "hashPath": "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512" + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "path": "app.metrics.health/3.1.0", + "hashPath": "app.metrics.health.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "path": "app.metrics.health.abstractions/3.2.0", + "hashPath": "app.metrics.health.abstractions.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "path": "app.metrics.health.checks.http/3.2.0", + "hashPath": "app.metrics.health.checks.http.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "path": "app.metrics.health.core/3.1.0", + "hashPath": "app.metrics.health.core.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "hashPath": "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "hashPath": "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "hashPath": "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "hashPath": "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "path": "app.metrics.health.formatters.json/3.1.0", + "hashPath": "app.metrics.health.formatters.json.3.1.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "path": "app.metrics.reporting.console/4.3.0", + "hashPath": "app.metrics.reporting.console.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "path": "app.metrics.reporting.http/4.3.0", + "hashPath": "app.metrics.reporting.http.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "path": "app.metrics.reporting.influxdb/4.3.0", + "hashPath": "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.Auth/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "path": "convey.auth/1.1.448", + "hashPath": "convey.auth.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "path": "convey.discovery.consul/1.1.448", + "hashPath": "convey.discovery.consul.1.1.448.nupkg.sha512" + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "path": "convey.docs.swagger/1.1.448", + "hashPath": "convey.docs.swagger.1.1.448.nupkg.sha512" + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "path": "convey.http/1.1.448", + "hashPath": "convey.http.1.1.448.nupkg.sha512" + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "path": "convey.loadbalancing.fabio/1.1.448", + "hashPath": "convey.loadbalancing.fabio.1.1.448.nupkg.sha512" + }, + "Convey.Logging/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "path": "convey.logging/1.1.448", + "hashPath": "convey.logging.1.1.448.nupkg.sha512" + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "path": "convey.logging.cqrs/1.1.448", + "hashPath": "convey.logging.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "path": "convey.messagebrokers.cqrs/1.1.448", + "hashPath": "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "path": "convey.messagebrokers.outbox/1.1.448", + "hashPath": "convey.messagebrokers.outbox.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "hashPath": "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "hashPath": "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "path": "convey.metrics.appmetrics/1.1.448", + "hashPath": "convey.metrics.appmetrics.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "path": "convey.persistence.mongodb/1.1.448", + "hashPath": "convey.persistence.mongodb.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "path": "convey.persistence.redis/1.1.448", + "hashPath": "convey.persistence.redis.1.1.448.nupkg.sha512" + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "path": "convey.secrets.vault/1.1.448", + "hashPath": "convey.secrets.vault.1.1.448.nupkg.sha512" + }, + "Convey.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "path": "convey.security/1.1.448", + "hashPath": "convey.security.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "path": "convey.tracing.jaeger/1.1.448", + "hashPath": "convey.tracing.jaeger.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "hashPath": "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "path": "convey.webapi/1.1.448", + "hashPath": "convey.webapi.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "path": "convey.webapi.cqrs/1.1.448", + "hashPath": "convey.webapi.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "path": "convey.webapi.security/1.1.448", + "hashPath": "convey.webapi.security.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "path": "convey.webapi.swagger/1.1.448", + "hashPath": "convey.webapi.swagger.1.1.448.nupkg.sha512" + }, + "DnsClient/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "path": "dnsclient/1.4.0", + "hashPath": "dnsclient.1.4.0.nupkg.sha512" + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "path": "elasticsearch.net/7.8.1", + "hashPath": "elasticsearch.net.7.8.1.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Jaeger/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "path": "jaeger/1.0.3", + "hashPath": "jaeger.1.0.3.nupkg.sha512" + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "path": "jaeger.communication.thrift/1.0.3", + "hashPath": "jaeger.communication.thrift.1.0.3.nupkg.sha512" + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "path": "jaeger.core/1.0.3", + "hashPath": "jaeger.core.1.0.3.nupkg.sha512" + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "path": "jaeger.senders.thrift/1.0.3", + "hashPath": "jaeger.senders.thrift.1.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "hashPath": "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "hashPath": "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "path": "microsoft.csharp/4.6.0", + "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "hashPath": "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "path": "microsoft.extensions.configuration/6.0.0", + "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "path": "microsoft.extensions.hosting/6.0.0", + "hashPath": "microsoft.extensions.hosting.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "path": "microsoft.extensions.logging.console/6.0.0", + "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "path": "microsoft.identitymodel.logging/6.15.0", + "hashPath": "microsoft.identitymodel.logging.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "path": "microsoft.identitymodel.protocols/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "path": "microsoft.identitymodel.tokens/6.15.0", + "hashPath": "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "path": "microsoft.net.http.headers/2.1.0", + "hashPath": "microsoft.net.http.headers.2.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MongoDB.Bson/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", + "path": "mongodb.bson/2.14.1", + "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" + }, + "MongoDB.Driver/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", + "path": "mongodb.driver/2.14.1", + "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", + "path": "mongodb.driver.core/2.14.1", + "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", + "path": "mongodb.libmongocrypt/1.3.0", + "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Open.Serialization/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "path": "open.serialization/2.3.1", + "hashPath": "open.serialization.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "path": "open.serialization.json/2.3.1", + "hashPath": "open.serialization.json.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "path": "open.serialization.json.system/2.3.2", + "hashPath": "open.serialization.json.system.2.3.2.nupkg.sha512" + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "path": "open.serialization.json.utf8json/2.3.1", + "hashPath": "open.serialization.json.utf8json.2.3.1.nupkg.sha512" + }, + "OpenTracing/0.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "path": "opentracing/0.12.1", + "hashPath": "opentracing.0.12.1.nupkg.sha512" + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "path": "opentracing.contrib.netcore/0.8.0", + "hashPath": "opentracing.contrib.netcore.0.8.0.nupkg.sha512" + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "path": "pipelines.sockets.unofficial/2.2.0", + "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512" + }, + "Polly/7.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "path": "polly/7.2.2", + "hashPath": "polly.7.2.2.nupkg.sha512" + }, + "protobuf-net/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "path": "protobuf-net/2.4.0", + "hashPath": "protobuf-net.2.4.0.nupkg.sha512" + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "path": "rabbitmq.client/6.5.0", + "hashPath": "rabbitmq.client.6.5.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "path": "runtime.native.system.net.security/4.3.0", + "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "path": "serilog.aspnetcore/4.1.0", + "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "path": "serilog.extensions.hosting/4.1.2", + "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "path": "serilog.extensions.logging/3.1.0", + "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "path": "serilog.formatting.elasticsearch/8.4.1", + "hashPath": "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "path": "serilog.settings.configuration/3.1.0", + "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "path": "serilog.sinks.console/4.0.1", + "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "path": "serilog.sinks.elasticsearch/8.4.1", + "hashPath": "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "path": "serilog.sinks.grafana.loki/7.1.0", + "hashPath": "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512" + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "path": "serilog.sinks.periodicbatching/2.3.0", + "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512" + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "path": "serilog.sinks.seq/5.1.0", + "hashPath": "serilog.sinks.seq.5.1.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "path": "smartformat.net/2.7.2", + "hashPath": "smartformat.net.2.7.2.nupkg.sha512" + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "path": "stackexchange.redis/2.2.4", + "hashPath": "stackexchange.redis.2.2.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "hashPath": "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "hashPath": "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "hashPath": "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "path": "system.io.pipelines/5.0.0", + "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "path": "system.io.pipes/4.3.0", + "hashPath": "system.io.pipes.4.3.0.nupkg.sha512" + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "path": "system.io.pipes.accesscontrol/4.5.1", + "hashPath": "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "path": "system.net.http.winhttphandler/4.7.0", + "hashPath": "system.net.http.winhttphandler.4.7.0.nupkg.sha512" + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "System.Net.Security/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "path": "system.net.security/4.3.2", + "hashPath": "system.net.security.4.3.2.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "path": "system.private.servicemodel/4.5.3", + "hashPath": "system.private.servicemodel.4.5.3.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "path": "system.reflection.dispatchproxy/4.5.0", + "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "path": "system.servicemodel.primitives/4.5.3", + "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "path": "system.threading.tasks.dataflow/4.11.1", + "hashPath": "system.threading.tasks.dataflow.4.11.1.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "Utf8Json/1.3.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "path": "utf8json/1.3.7", + "hashPath": "utf8json.1.3.7.nupkg.sha512" + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "path": "vaultsharp/1.7.0.4", + "hashPath": "vaultsharp.1.7.0.4.nupkg.sha512" + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll new file mode 100644 index 000000000..75afbc038 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb new file mode 100644 index 000000000..91d54d0d2 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.runtimeconfig.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.runtimeconfig.json new file mode 100644 index 000000000..5e604c7e5 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..fad787af3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb new file mode 100644 index 000000000..46780dbd6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..b12c50ad8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb new file mode 100644 index 000000000..56971b14b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll new file mode 100644 index 000000000..1b236f9ba Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb new file mode 100644 index 000000000..c4371f835 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Bson.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Bson.dll new file mode 100755 index 000000000..39ec84909 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Bson.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll new file mode 100755 index 000000000..cc5af45cf Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.dll new file mode 100755 index 000000000..1d75d2746 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll new file mode 100755 index 000000000..444ab6553 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Newtonsoft.Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100755 index 000000000..1ffeabe65 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll new file mode 100755 index 000000000..cd11b856a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll new file mode 100755 index 000000000..d13f9e1d0 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.dll new file mode 100755 index 000000000..3555d6d02 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.dll new file mode 100755 index 000000000..4012ad022 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll new file mode 100755 index 000000000..bfe42faf1 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.dll new file mode 100755 index 000000000..780efdbf4 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll new file mode 100755 index 000000000..3c81dff99 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Polly.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Polly.dll new file mode 100755 index 000000000..17bd8feb1 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Polly.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/RabbitMQ.Client.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/RabbitMQ.Client.dll new file mode 100755 index 000000000..b069c8a1a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/RabbitMQ.Client.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Scrutor.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Scrutor.dll new file mode 100755 index 000000000..06eb31edf Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Scrutor.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll new file mode 100755 index 000000000..0840261cc Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll new file mode 100755 index 000000000..3ea579b48 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll new file mode 100755 index 000000000..27dc8cfc3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll new file mode 100755 index 000000000..7e6d49c6f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll new file mode 100755 index 000000000..37f982517 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll new file mode 100755 index 000000000..5b5b10f29 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll new file mode 100755 index 000000000..388ff0264 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll new file mode 100755 index 000000000..2bd024b10 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll new file mode 100755 index 000000000..6e554d994 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll new file mode 100755 index 000000000..29dc2fd35 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll new file mode 100755 index 000000000..934a20d9c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll new file mode 100755 index 000000000..88dd4c87e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll new file mode 100755 index 000000000..a121b813c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.dll new file mode 100755 index 000000000..78688c820 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SharpCompress.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SharpCompress.dll new file mode 100755 index 000000000..c1a7f0744 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SharpCompress.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SmartFormat.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SmartFormat.dll new file mode 100755 index 000000000..7ce2ede43 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SmartFormat.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/StackExchange.Redis.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/StackExchange.Redis.dll new file mode 100755 index 000000000..5db7b5b9d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/StackExchange.Redis.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll new file mode 100755 index 000000000..faa8aa22c Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll new file mode 100755 index 000000000..52270f959 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 000000000..a30e6cc9a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 000000000..ae35663ad Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 000000000..a26f4586f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll new file mode 100755 index 000000000..1644e5d6d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll new file mode 100755 index 000000000..a79b87b31 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Drawing.Common.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Drawing.Common.dll new file mode 100755 index 000000000..2ca2eb5ce Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 000000000..ac24bfbe1 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll new file mode 100755 index 000000000..3bae7826d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 000000000..ffe1c6f3e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Permissions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Permissions.dll new file mode 100755 index 000000000..b380d0856 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Permissions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll new file mode 100755 index 000000000..c51637e08 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.dll new file mode 100755 index 000000000..e689b198f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Windows.Extensions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Windows.Extensions.dll new file mode 100755 index 000000000..316eb46d6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Windows.Extensions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Thrift.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Thrift.dll new file mode 100755 index 000000000..1d8188519 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Thrift.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Utf8Json.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Utf8Json.dll new file mode 100755 index 000000000..24ac36cfb Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Utf8Json.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/VaultSharp.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/VaultSharp.dll new file mode 100755 index 000000000..d1439983d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/VaultSharp.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.Development.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 000000000..2c63c0851 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,2 @@ +{ +} diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.docker.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.docker.json new file mode 100644 index 000000000..afea88ecf --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.docker.json @@ -0,0 +1,153 @@ +{ + "app": { + "name": "MiniSpace Notifications Service", + "version": "1" + }, + "consul": { + "enabled": true, + "url": "http://consul:8500", + "service": "notifications-service", + "address": "notifications-service", + "port": "80", + "pingEnabled": true, + "pingEndpoint": "ping", + "pingInterval": 3, + "removeAfterInterval": 3 + }, + "fabio": { + "enabled": true, + "url": "http://fabio:9999", + "service": "students-service" + }, + "httpClient": { + "type": "fabio", + "retries": 3, + "services": {} + }, + "jwt": { + "certificate": { + "location": "", + "password": "", + "rawData": "" + }, + "issuerSigningKey": "eiquief5phee9pazo0Faegaez9gohThailiur5woy2befiech1oarai4aiLi6ahVecah3ie9Aiz6Peij", + "expiryMinutes": 60, + "issuer": "minispace", + "validateAudience": false, + "validateIssuer": false, + "validateLifetime": true, + "allowAnonymousEndpoints": ["/sign-in", "/sign-up"] + }, + "logger": { + "console": { + "enabled": true + }, + "elk": { + "enabled": false, + "url": "http://elk:9200" + }, + "file": { + "enabled": false, + "path": "logs/logs.txt", + "interval": "day" + }, + "seq": { + "enabled": true, + "url": "http://seq:5341", + "apiKey": "secret" + } + }, + "jaeger": { + "enabled": true, + "serviceName": "notifications", + "udpHost": "jaeger", + "udpPort": 6831, + "maxPacketSize": 0, + "sampler": "const", + "excludePaths": ["/", "/ping", "/metrics"] + }, + "metrics": { + "enabled": true, + "influxEnabled": false, + "prometheusEnabled": true, + "influxUrl": "http://influx:8086", + "database": "minispace", + "env": "docker", + "interval": 5 + }, + "mongo": { + "connectionString": "mongodb+srv://minispace-user:9vd6IxYWUuuqhzEH@cluster0.mmhq4pe.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0", + "database": "notifications-service", + "seed": false + }, + "rabbitMq": { + "connectionName": "notifications-service", + "retries": 3, + "retryInterval": 2, + "conventionsCasing": "snakeCase", + "logger": { + "enabled": true + }, + "username": "guest", + "password": "guest", + "virtualHost": "/", + "port": 5672, + "hostnames": [ + "rabbitmq" + ], + "requestedConnectionTimeout": "00:00:30", + "requestedHeartbeat": "00:01:00", + "socketReadTimeout": "00:00:30", + "socketWriteTimeout": "00:00:30", + "continuationTimeout": "00:00:20", + "handshakeContinuationTimeout": "00:00:10", + "networkRecoveryInterval": "00:00:05", + "exchange": { + "declare": true, + "durable": true, + "autoDelete": false, + "type": "topic", + "name": "notifications" + }, + "queue": { + "declare": true, + "durable": true, + "exclusive": false, + "autoDelete": false, + "template": "notifications-service/{{exchange}}.{{message}}" + }, + "context": { + "enabled": true, + "header": "message_context" + }, + "spanContextHeader": "span_context" + }, + "redis": { + "connectionString": "redis", + "instance": "notifications:" + }, + "swagger": { + "enabled": true, + "reDocEnabled": false, + "name": "v1", + "title": "API", + "version": "v1", + "routePrefix": "docs", + "includeSecurity": true + }, + "vault": { + "enabled": false, + "url": "http://vault:8200", + "kv": { + "enabled": false + }, + "pki": { + "enabled": false + }, + "lease": { + "mongo": { + "enabled": false + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.json new file mode 100644 index 000000000..10f68b8c8 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.local.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.local.json new file mode 100644 index 000000000..14044b3d1 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.local.json @@ -0,0 +1,206 @@ +{ + "app": { + "name": "MiniSpace Notifications Service", + "service": "notifications-service", + "version": "1" + }, + "consul": { + "enabled": true, + "url": "http://localhost:8500", + "service": "notifications-service", + "address": "docker.for.win.localhost", + "port": "5007", + "pingEnabled": false, + "pingEndpoint": "ping", + "pingInterval": 3, + "removeAfterInterval": 3 + }, + "fabio": { + "enabled": true, + "url": "http://localhost:9999", + "service": "notifications-service" + }, + "httpClient": { + "type": "direct", + "retries": 3, + "services": { + "events": "http://localhost:5008", + "posts": "http://localhost:5013", + "comments": "http://localhost:5009", + "friends": "http://localhost:5012", + "organizations": "http://localhost:5015", + "students": "http://localhost:5007" + }, + "requestMasking": { + "enabled": true, + "maskTemplate": "*****" + } + }, + "jwt": { + "certificate": { + "location": "certs/localhost.pfx", + "password": "test", + "rawData": "" + }, + "issuerSigningKey": "eiquief5phee9pazo0Faegaez9gohThailiur5woy2befiech1oarai4aiLi6ahVecah3ie9Aiz6Peij", + "expiryMinutes": 60, + "issuer": "minispace", + "validateAudience": false, + "validateIssuer": false, + "validateLifetime": false, + "allowAnonymousEndpoints": ["/sign-in", "/sign-up"] + }, + "logger": { + "level": "information", + "excludePaths": ["/", "/ping", "/metrics"], + "excludeProperties": [ + "api_key", + "access_key", + "ApiKey", + "ApiSecret", + "ClientId", + "ClientSecret", + "ConnectionString", + "Password", + "Email", + "Login", + "Secret", + "Token" + ], + "console": { + "enabled": true + }, + "elk": { + "enabled": false, + "url": "http://localhost:9200" + }, + "file": { + "enabled": true, + "path": "logs/logs.txt", + "interval": "day" + }, + "seq": { + "enabled": true, + "url": "http://localhost:5341", + "apiKey": "secret" + }, + "tags": {} + }, + "jaeger": { + "enabled": true, + "serviceName": "notifications", + "udpHost": "localhost", + "udpPort": 6831, + "maxPacketSize": 0, + "sampler": "const", + "excludePaths": ["/", "/ping", "/metrics"] + }, + "metrics": { + "enabled": true, + "influxEnabled": false, + "prometheusEnabled": true, + "influxUrl": "http://localhost:8086", + "database": "minispace", + "env": "local", + "interval": 5 + }, + "mongo": { + "connectionString": "mongodb+srv://minispace-user:9vd6IxYWUuuqhzEH@cluster0.mmhq4pe.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0", + "database": "notifications-service", + "seed": false + }, + "outbox": { + "enabled": true, + "type": "sequential", + "expiry": 3600, + "intervalMilliseconds": 2000, + "inboxCollection": "inbox", + "outboxCollection": "outbox", + "disableTransactions": true + }, + "rabbitMq": { + "connectionName": "notifications-service", + "retries": 3, + "retryInterval": 2, + "conventionsCasing": "snakeCase", + "logger": { + "enabled": true + }, + "username": "guest", + "password": "guest", + "virtualHost": "/", + "port": 5672, + "hostnames": [ + "localhost" + ], + "requestedConnectionTimeout": "00:00:30", + "requestedHeartbeat": "00:01:00", + "socketReadTimeout": "00:00:30", + "socketWriteTimeout": "00:00:30", + "continuationTimeout": "00:00:20", + "handshakeContinuationTimeout": "00:00:10", + "networkRecoveryInterval": "00:00:05", + "exchange": { + "declare": true, + "durable": true, + "autoDelete": false, + "type": "topic", + "name": "notifications" + }, + "queue": { + "declare": true, + "durable": true, + "exclusive": false, + "autoDelete": false, + "template": "notifications-service/{{exchange}}.{{message}}" + }, + "context": { + "enabled": true, + "header": "message_context" + }, + "spanContextHeader": "span_context" + }, + "redis": { + "connectionString": "localhost", + "instance": "notifications:" + }, + "swagger": { + "enabled": true, + "reDocEnabled": false, + "name": "v1", + "title": "API", + "version": "v1", + "routePrefix": "docs", + "includeSecurity": true + }, + "vault": { + "enabled": true, + "url": "http://localhost:8200", + "authType": "token", + "token": "secret", + "username": "user", + "password": "secret", + "kv": { + "enabled": true, + "engineVersion": 2, + "mountPoint": "kv", + "path": "notifications-service/settings" + }, + "pki": { + "enabled": true, + "roleName": "notifications-service", + "commonName": "notifications-service.minispace.io" + }, + "lease": { + "mongo": { + "type": "database", + "roleName": "notifications-service", + "enabled": true, + "autoRenewal": true, + "templates": { + "connectionString": "mongodb://{{username}}:{{password}}@localhost:27017" + } + } + } + } +} diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/protobuf-net.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/protobuf-net.dll new file mode 100755 index 000000000..f090f1cae Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/protobuf-net.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so new file mode 100755 index 000000000..6cc0ed109 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libsnappy64.so b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libsnappy64.so new file mode 100755 index 000000000..584bedfc9 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libsnappy64.so differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libzstd.so b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libzstd.so new file mode 100755 index 000000000..8309c49b7 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libzstd.so differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib new file mode 100755 index 000000000..3f4518a0f Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libsnappy64.dylib b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libsnappy64.dylib new file mode 100755 index 000000000..bbce3c21e Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libsnappy64.dylib differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libzstd.dylib b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libzstd.dylib new file mode 100755 index 000000000..5400d7605 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libzstd.dylib differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 000000000..aad03edfb Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll new file mode 100755 index 000000000..0f28fa4a8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100755 index 000000000..ad71a481a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 000000000..b5aa0c4cd Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 000000000..87fe0ae8b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100755 index 000000000..ab82e8395 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll new file mode 100755 index 000000000..b9e355c6a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll new file mode 100755 index 000000000..14af5ab1a Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 000000000..99215bb1d Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/libzstd.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/libzstd.dll new file mode 100755 index 000000000..e669123c1 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/libzstd.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll new file mode 100755 index 000000000..00ab60265 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy32.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy32.dll new file mode 100755 index 000000000..afc82ca42 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy32.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy64.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy64.dll new file mode 100755 index 000000000..36cd5fe79 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy64.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240516.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240516.txt new file mode 100644 index 000000000..8f49d4a85 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240516.txt @@ -0,0 +1,420 @@ +2024-05-16 01:03:46.428 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 01:03:46.530 +02:00 [INF] Registering a service [id: notifications-service:d21a48018001472fb910788fe1337e5e] in Consul... +2024-05-16 01:03:46.560 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 01:03:46.564 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 01:03:46.565 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 01:03:46.581 +02:00 [INF] Received HTTP response headers after 14.4851ms - 200 +2024-05-16 01:03:46.585 +02:00 [INF] End processing HTTP request after 21.4582ms - 200 +2024-05-16 01:03:46.589 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 01:03:46.590 +02:00 [INF] Registered a service [id: notifications-service:d21a48018001472fb910788fe1337e5e] in Consul. +2024-05-16 01:03:46.596 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 01:03:46.608 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 01:03:46.611 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 01:03:46.613 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 01:03:46.615 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 01:03:46.617 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 01:03:49.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/favicon.ico - null null +2024-05-16 01:03:49.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/favicon.ico - 404 0 null 12.2409ms +2024-05-16 01:03:49.645 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET http://localhost:5006/favicon.ico, Response status code: 404 +2024-05-16 09:22:56.157 +02:00 [INF] Deregistering a service [id: notifications-service:d21a48018001472fb910788fe1337e5e] from Consul... +2024-05-16 09:22:56.160 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d21a48018001472fb910788fe1337e5e" +2024-05-16 09:22:56.160 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d21a48018001472fb910788fe1337e5e +2024-05-16 09:22:56.160 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d21a48018001472fb910788fe1337e5e +2024-05-16 09:22:56.164 +02:00 [INF] Received HTTP response headers after 3.3135ms - 200 +2024-05-16 09:22:56.164 +02:00 [INF] End processing HTTP request after 3.8814ms - 200 +2024-05-16 09:22:56.164 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:22:56.165 +02:00 [INF] Deregistered a service [id: notifications-service:d21a48018001472fb910788fe1337e5e] from Consul. + 09:22:33.772 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:22:33.773 +02:00 [INF] Registered a service [id: notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382] in Consul. +2024-05-16 09:22:33.781 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 09:22:33.794 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 09:22:33.799 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 09:22:33.804 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 09:22:33.808 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 09:22:33.811 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 09:22:33.834 +02:00 [INF] Deregistering a service [id: notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382] from Consul... +2024-05-16 09:22:33.837 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382" +2024-05-16 09:22:33.837 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382 +2024-05-16 09:22:33.838 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382 +2024-05-16 09:22:33.846 +02:00 [INF] Received HTTP response headers after 8.2267ms - 200 +2024-05-16 09:22:33.846 +02:00 [INF] End processing HTTP request after 9.4655ms - 200 +2024-05-16 09:22:33.847 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:22:33.847 +02:00 [INF] Deregistered a service [id: notifications-service:9d90c7e7ddf24d0ea7cfbf39e2c99382] from Consul. +2024-05-16 09:23:07.031 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 09:23:07.092 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 09:23:07.148 +02:00 [INF] Registering a service [id: notifications-service:20c6dc9525584eefaa15bd551ea851b5] in Consul... +2024-05-16 09:23:07.177 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 09:23:07.181 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 09:23:07.182 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 09:23:07.190 +02:00 [INF] Received HTTP response headers after 5.326ms - 200 +2024-05-16 09:23:07.191 +02:00 [INF] End processing HTTP request after 10.4511ms - 200 +2024-05-16 09:23:07.193 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:23:07.194 +02:00 [INF] Registered a service [id: notifications-service:20c6dc9525584eefaa15bd551ea851b5] in Consul. +2024-05-16 09:23:07.201 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 09:23:07.214 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 09:23:07.217 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 09:23:07.221 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 09:23:07.225 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 09:23:07.228 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 09:34:42.281 +02:00 [INF] Deregistering a service [id: notifications-service:20c6dc9525584eefaa15bd551ea851b5] from Consul... +2024-05-16 09:34:42.284 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:20c6dc9525584eefaa15bd551ea851b5" +2024-05-16 09:34:42.284 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:20c6dc9525584eefaa15bd551ea851b5 +2024-05-16 09:34:42.284 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:20c6dc9525584eefaa15bd551ea851b5 +2024-05-16 09:34:42.287 +02:00 [INF] Received HTTP response headers after 2.1595ms - 200 +2024-05-16 09:34:42.287 +02:00 [INF] End processing HTTP request after 2.7662ms - 200 +2024-05-16 09:34:42.287 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:34:42.287 +02:00 [INF] Deregistered a service [id: notifications-service:20c6dc9525584eefaa15bd551ea851b5] from Consul. +2024-05-16 09:34:49.681 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 09:34:49.717 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 09:34:49.769 +02:00 [INF] Registering a service [id: notifications-service:a22f4f9813ad4765abbc7c7ce8d98c4c] in Consul... +2024-05-16 09:34:49.790 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 09:34:49.794 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 09:34:49.794 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 09:34:49.801 +02:00 [INF] Received HTTP response headers after 4.1552ms - 200 +2024-05-16 09:34:49.802 +02:00 [INF] End processing HTTP request after 8.4258ms - 200 +2024-05-16 09:34:49.804 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 09:34:49.805 +02:00 [INF] Registered a service [id: notifications-service:a22f4f9813ad4765abbc7c7ce8d98c4c] in Consul. +2024-05-16 09:34:49.811 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 09:34:49.826 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 09:34:49.829 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 09:34:49.831 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-16 09:34:49.840 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 09:34:49.842 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 09:34:49.844 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 14:42:55.990 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 14:42:56.027 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 14:42:56.083 +02:00 [INF] Registering a service [id: notifications-service:af32a14bef1146dd89f220c7a7b62f85] in Consul... +2024-05-16 14:42:56.102 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 14:42:56.105 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 14:42:56.105 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 14:42:56.111 +02:00 [INF] Received HTTP response headers after 3.8829ms - 200 +2024-05-16 14:42:56.112 +02:00 [INF] End processing HTTP request after 7.611ms - 200 +2024-05-16 14:42:56.114 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 14:42:56.114 +02:00 [INF] Registered a service [id: notifications-service:af32a14bef1146dd89f220c7a7b62f85] in Consul. +2024-05-16 14:42:56.120 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 14:42:56.128 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 14:42:56.130 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 14:42:56.131 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-16 14:42:56.133 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 14:42:56.135 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 14:42:56.136 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 18:17:00.202 +02:00 [INF] Deregistering a service [id: notifications-service:af32a14bef1146dd89f220c7a7b62f85] from Consul... +2024-05-16 18:17:00.207 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:af32a14bef1146dd89f220c7a7b62f85" +2024-05-16 18:17:00.208 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:af32a14bef1146dd89f220c7a7b62f85 +2024-05-16 18:17:00.208 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:af32a14bef1146dd89f220c7a7b62f85 +2024-05-16 18:17:00.212 +02:00 [INF] Received HTTP response headers after 3.0797ms - 200 +2024-05-16 18:17:00.212 +02:00 [INF] End processing HTTP request after 3.8382ms - 200 +2024-05-16 18:17:00.212 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 18:17:00.213 +02:00 [INF] Deregistered a service [id: notifications-service:af32a14bef1146dd89f220c7a7b62f85] from Consul. +2024-05-16 18:33:16.138 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 18:33:16.181 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 18:33:16.263 +02:00 [INF] Registering a service [id: notifications-service:fd548f55984f44f5b420f99de0e7675b] in Consul... +2024-05-16 18:33:16.284 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 18:33:16.287 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 18:33:16.288 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 18:33:16.296 +02:00 [INF] Received HTTP response headers after 4.8383ms - 200 +2024-05-16 18:33:16.297 +02:00 [INF] End processing HTTP request after 10.7112ms - 200 +2024-05-16 18:33:16.300 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 18:33:16.301 +02:00 [INF] Registered a service [id: notifications-service:fd548f55984f44f5b420f99de0e7675b] in Consul. +2024-05-16 18:33:16.307 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 18:33:16.317 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 18:33:16.320 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 18:33:16.323 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-16 18:33:16.329 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 18:33:16.331 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 18:33:16.334 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 18:47:09.646 +02:00 [INF] Deregistering a service [id: notifications-service:fd548f55984f44f5b420f99de0e7675b] from Consul... +2024-05-16 18:47:09.664 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:fd548f55984f44f5b420f99de0e7675b" +2024-05-16 18:47:09.665 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fd548f55984f44f5b420f99de0e7675b +2024-05-16 18:47:09.666 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fd548f55984f44f5b420f99de0e7675b +2024-05-16 18:47:09.678 +02:00 [INF] Received HTTP response headers after 10.774ms - 200 +2024-05-16 18:47:09.679 +02:00 [INF] End processing HTTP request after 13.5185ms - 200 +2024-05-16 18:47:09.680 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 18:47:09.682 +02:00 [INF] Deregistered a service [id: notifications-service:fd548f55984f44f5b420f99de0e7675b] from Consul. +2024-05-16 18:47:17.407 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 18:47:17.452 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 18:47:17.511 +02:00 [INF] Registering a service [id: notifications-service:2eab5f3deac64bd08bb160f148886689] in Consul... +2024-05-16 18:47:17.541 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 18:47:17.545 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 18:47:17.545 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 18:47:17.554 +02:00 [INF] Received HTTP response headers after 4.9569ms - 200 +2024-05-16 18:47:17.555 +02:00 [INF] End processing HTTP request after 11.3512ms - 200 +2024-05-16 18:47:17.559 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 18:47:17.560 +02:00 [INF] Registered a service [id: notifications-service:2eab5f3deac64bd08bb160f148886689] in Consul. +2024-05-16 18:47:17.569 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 18:47:17.579 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 18:47:17.587 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 18:47:17.591 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-16 18:47:17.594 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 18:47:17.597 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 18:47:17.601 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 19:33:02.010 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 19:33:02.043 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 19:33:02.107 +02:00 [INF] Registering a service [id: notifications-service:010548acd17743809c439a7b615848a9] in Consul... +2024-05-16 19:33:02.124 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 19:33:02.127 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 19:33:02.128 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 19:33:02.134 +02:00 [INF] Received HTTP response headers after 4.5273ms - 200 +2024-05-16 19:33:02.135 +02:00 [INF] End processing HTTP request after 8.4806ms - 200 +2024-05-16 19:33:02.138 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 19:33:02.138 +02:00 [INF] Registered a service [id: notifications-service:010548acd17743809c439a7b615848a9] in Consul. +2024-05-16 19:33:02.143 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 19:33:02.151 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 19:33:02.153 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 19:33:02.155 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-16 19:33:02.157 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 19:33:02.158 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 19:33:02.160 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 19:40:11.549 +02:00 [INF] Deregistering a service [id: notifications-service:010548acd17743809c439a7b615848a9] from Consul... +2024-05-16 19:40:11.555 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:010548acd17743809c439a7b615848a9" +2024-05-16 19:40:11.556 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:010548acd17743809c439a7b615848a9 +2024-05-16 19:40:11.556 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:010548acd17743809c439a7b615848a9 +2024-05-16 19:40:11.560 +02:00 [INF] Received HTTP response headers after 3.7489ms - 200 +2024-05-16 19:40:11.561 +02:00 [INF] End processing HTTP request after 4.7643ms - 200 +2024-05-16 19:40:11.561 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 19:40:11.562 +02:00 [INF] Deregistered a service [id: notifications-service:010548acd17743809c439a7b615848a9] from Consul. +2024-05-16 19:40:19.644 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 19:40:19.679 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 19:40:19.730 +02:00 [INF] Registering a service [id: notifications-service:7e52af678ead4074bd2ddba1e4496a2f] in Consul... +2024-05-16 19:40:19.748 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 19:40:19.751 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 19:40:19.752 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 19:40:19.758 +02:00 [INF] Received HTTP response headers after 4.4729ms - 200 +2024-05-16 19:40:19.759 +02:00 [INF] End processing HTTP request after 8.4839ms - 200 +2024-05-16 19:40:19.762 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 19:40:19.762 +02:00 [INF] Registered a service [id: notifications-service:7e52af678ead4074bd2ddba1e4496a2f] in Consul. +2024-05-16 19:40:19.768 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 19:40:19.778 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 19:40:19.781 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 19:40:19.783 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 19:40:19.795 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 19:40:19.797 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 19:40:19.800 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 21:02:26.614 +02:00 [INF] Deregistering a service [id: notifications-service:7e52af678ead4074bd2ddba1e4496a2f] from Consul... +2024-05-16 21:02:26.623 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:7e52af678ead4074bd2ddba1e4496a2f" +2024-05-16 21:02:26.624 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:7e52af678ead4074bd2ddba1e4496a2f +2024-05-16 21:02:26.624 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:7e52af678ead4074bd2ddba1e4496a2f +2024-05-16 21:02:26.629 +02:00 [INF] Received HTTP response headers after 4.5368ms - 200 +2024-05-16 21:02:26.630 +02:00 [INF] End processing HTTP request after 6.0951ms - 200 +2024-05-16 21:02:26.630 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:02:26.631 +02:00 [INF] Deregistered a service [id: notifications-service:7e52af678ead4074bd2ddba1e4496a2f] from Consul. +2024-05-16 21:03:57.856 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:03:57.894 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:03:57.974 +02:00 [INF] Registering a service [id: notifications-service:c01e4457c53d494c98b32b539e301a20] in Consul... +2024-05-16 21:03:57.995 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:03:57.999 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:03:58.000 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:03:58.006 +02:00 [INF] Received HTTP response headers after 4.6479ms - 200 +2024-05-16 21:03:58.007 +02:00 [INF] End processing HTTP request after 8.999ms - 200 +2024-05-16 21:03:58.010 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:03:58.011 +02:00 [INF] Registered a service [id: notifications-service:c01e4457c53d494c98b32b539e301a20] in Consul. +2024-05-16 21:03:58.017 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:03:58.026 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:03:58.029 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:03:58.031 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 21:03:58.033 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 21:03:58.035 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 21:03:58.038 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 21:06:37.866 +02:00 [INF] Deregistering a service [id: notifications-service:c01e4457c53d494c98b32b539e301a20] from Consul... +2024-05-16 21:06:37.873 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:c01e4457c53d494c98b32b539e301a20" +2024-05-16 21:06:37.874 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c01e4457c53d494c98b32b539e301a20 +2024-05-16 21:06:37.874 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c01e4457c53d494c98b32b539e301a20 +2024-05-16 21:06:37.879 +02:00 [INF] Received HTTP response headers after 4.0969ms - 200 +2024-05-16 21:06:37.879 +02:00 [INF] End processing HTTP request after 5.2246ms - 200 +2024-05-16 21:06:37.879 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:06:37.880 +02:00 [INF] Deregistered a service [id: notifications-service:c01e4457c53d494c98b32b539e301a20] from Consul. +2024-05-16 21:12:39.858 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:12:39.895 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:12:39.982 +02:00 [INF] Registering a service [id: notifications-service:64bef74aa109486cb501ee4dc2767363] in Consul... +2024-05-16 21:12:40.003 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:12:40.006 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:12:40.007 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:12:40.013 +02:00 [INF] Received HTTP response headers after 3.9515ms - 200 +2024-05-16 21:12:40.014 +02:00 [INF] End processing HTTP request after 7.9623ms - 200 +2024-05-16 21:12:40.016 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:12:40.017 +02:00 [INF] Registered a service [id: notifications-service:64bef74aa109486cb501ee4dc2767363] in Consul. +2024-05-16 21:12:40.022 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:12:40.031 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:12:40.033 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:12:40.035 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 21:12:40.037 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 21:12:40.039 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 21:12:40.041 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 21:18:28.144 +02:00 [INF] Deregistering a service [id: notifications-service:64bef74aa109486cb501ee4dc2767363] from Consul... +2024-05-16 21:18:28.153 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:64bef74aa109486cb501ee4dc2767363" +2024-05-16 21:18:28.154 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:64bef74aa109486cb501ee4dc2767363 +2024-05-16 21:18:28.154 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:64bef74aa109486cb501ee4dc2767363 +2024-05-16 21:18:28.159 +02:00 [INF] Received HTTP response headers after 4.4262ms - 200 +2024-05-16 21:18:28.160 +02:00 [INF] End processing HTTP request after 5.9453ms - 200 +2024-05-16 21:18:28.160 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:18:28.161 +02:00 [INF] Deregistered a service [id: notifications-service:64bef74aa109486cb501ee4dc2767363] from Consul. +2024-05-16 21:22:52.345 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:22:52.406 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:22:52.457 +02:00 [INF] Registering a service [id: notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e] in Consul... +2024-05-16 21:22:52.485 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:22:52.488 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:22:52.489 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:22:52.496 +02:00 [INF] Received HTTP response headers after 4.2126ms - 200 +2024-05-16 21:22:52.497 +02:00 [INF] End processing HTTP request after 9.8634ms - 200 +2024-05-16 21:22:52.501 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:22:52.501 +02:00 [INF] Registered a service [id: notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e] in Consul. +2024-05-16 21:22:52.509 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:22:52.521 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:22:52.525 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:22:52.528 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 21:22:52.531 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 21:22:52.534 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 21:22:52.537 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 21:25:21.593 +02:00 [INF] Deregistering a service [id: notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e] from Consul... +2024-05-16 21:25:21.600 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e" +2024-05-16 21:25:21.600 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e +2024-05-16 21:25:21.601 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e +2024-05-16 21:25:21.606 +02:00 [INF] Received HTTP response headers after 4.266ms - 200 +2024-05-16 21:25:21.606 +02:00 [INF] End processing HTTP request after 5.4975ms - 200 +2024-05-16 21:25:21.606 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:25:21.607 +02:00 [INF] Deregistered a service [id: notifications-service:0fb9d9b1bda24c1f9b1f58ebca25ca3e] from Consul. +2024-05-16 21:25:27.497 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:25:27.535 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:25:27.608 +02:00 [INF] Registering a service [id: notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58] in Consul... +2024-05-16 21:25:27.627 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:25:27.630 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:25:27.631 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:25:27.637 +02:00 [INF] Received HTTP response headers after 4.2492ms - 200 +2024-05-16 21:25:27.638 +02:00 [INF] End processing HTTP request after 8.4799ms - 200 +2024-05-16 21:25:27.641 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:25:27.642 +02:00 [INF] Registered a service [id: notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58] in Consul. +2024-05-16 21:25:27.647 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:25:27.655 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:25:27.658 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:25:27.659 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 21:25:27.662 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_created' with routing key: 'notification_created' for an exchange: 'notifications'. +2024-05-16 21:25:27.663 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_deleted' with routing key: 'notification_deleted' for an exchange: 'notifications'. +2024-05-16 21:25:27.665 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.notification_updated' with routing key: 'notification_updated' for an exchange: 'notifications'. +2024-05-16 21:37:35.233 +02:00 [INF] Deregistering a service [id: notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58] from Consul... +2024-05-16 21:37:35.247 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58" +2024-05-16 21:37:35.248 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58 +2024-05-16 21:37:35.252 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58 +2024-05-16 21:37:35.265 +02:00 [INF] Received HTTP response headers after 11.1418ms - 200 +2024-05-16 21:37:35.266 +02:00 [INF] End processing HTTP request after 17.9682ms - 200 +2024-05-16 21:37:35.268 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:37:35.271 +02:00 [INF] Deregistered a service [id: notifications-service:1ea58ff10ff04c66bbc3eb7af8173e58] from Consul. +2024-05-16 21:37:50.737 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:37:50.784 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:37:50.858 +02:00 [INF] Registering a service [id: notifications-service:8a97381161c74aed83c911a96b95d826] in Consul... +2024-05-16 21:37:50.878 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:37:50.882 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:37:50.883 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:37:50.889 +02:00 [INF] Received HTTP response headers after 4.1265ms - 200 +2024-05-16 21:37:50.890 +02:00 [INF] End processing HTTP request after 8.4056ms - 200 +2024-05-16 21:37:50.893 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:37:50.894 +02:00 [INF] Registered a service [id: notifications-service:8a97381161c74aed83c911a96b95d826] in Consul. +2024-05-16 21:37:50.902 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:37:50.911 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:37:50.915 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:37:50.917 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 21:58:30.736 +02:00 [INF] Deregistering a service [id: notifications-service:8a97381161c74aed83c911a96b95d826] from Consul... +2024-05-16 21:58:30.749 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8a97381161c74aed83c911a96b95d826" +2024-05-16 21:58:30.750 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8a97381161c74aed83c911a96b95d826 +2024-05-16 21:58:30.751 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8a97381161c74aed83c911a96b95d826 +2024-05-16 21:58:30.763 +02:00 [INF] Received HTTP response headers after 10.8989ms - 200 +2024-05-16 21:58:30.764 +02:00 [INF] End processing HTTP request after 14.5283ms - 200 +2024-05-16 21:58:30.765 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:58:30.768 +02:00 [INF] Deregistered a service [id: notifications-service:8a97381161c74aed83c911a96b95d826] from Consul. +2024-05-16 21:58:37.596 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 21:58:37.641 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 21:58:37.755 +02:00 [INF] Registering a service [id: notifications-service:736ce17f111246ff9d1639b95ee97864] in Consul... +2024-05-16 21:58:37.783 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 21:58:37.789 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:58:37.789 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 21:58:37.800 +02:00 [INF] Received HTTP response headers after 7.7667ms - 200 +2024-05-16 21:58:37.802 +02:00 [INF] End processing HTTP request after 13.8307ms - 200 +2024-05-16 21:58:37.805 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 21:58:37.806 +02:00 [INF] Registered a service [id: notifications-service:736ce17f111246ff9d1639b95ee97864] in Consul. +2024-05-16 21:58:37.813 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 21:58:37.826 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 21:58:37.830 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 21:58:37.832 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 22:08:32.853 +02:00 [INF] Deregistering a service [id: notifications-service:736ce17f111246ff9d1639b95ee97864] from Consul... +2024-05-16 22:08:32.857 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:736ce17f111246ff9d1639b95ee97864" +2024-05-16 22:08:32.857 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:736ce17f111246ff9d1639b95ee97864 +2024-05-16 22:08:32.857 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:736ce17f111246ff9d1639b95ee97864 +2024-05-16 22:08:32.860 +02:00 [INF] Received HTTP response headers after 2.0024ms - 200 +2024-05-16 22:08:32.860 +02:00 [INF] End processing HTTP request after 3.0283ms - 200 +2024-05-16 22:08:32.860 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:08:32.861 +02:00 [INF] Deregistered a service [id: notifications-service:736ce17f111246ff9d1639b95ee97864] from Consul. +2024-05-16 22:08:59.623 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 22:08:59.671 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 22:08:59.737 +02:00 [INF] Registering a service [id: notifications-service:c0efdf8a5ebf41708427b1e1fae27edc] in Consul... +2024-05-16 22:08:59.757 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 22:08:59.760 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:08:59.760 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:08:59.768 +02:00 [INF] Received HTTP response headers after 5.7211ms - 200 +2024-05-16 22:08:59.769 +02:00 [INF] End processing HTTP request after 10.2511ms - 200 +2024-05-16 22:08:59.772 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:08:59.772 +02:00 [INF] Registered a service [id: notifications-service:c0efdf8a5ebf41708427b1e1fae27edc] in Consul. +2024-05-16 22:08:59.779 +02:00 [INF] Deregistering a service [id: notifications-service:c0efdf8a5ebf41708427b1e1fae27edc] from Consul... +2024-05-16 22:08:59.780 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:c0efdf8a5ebf41708427b1e1fae27edc" +2024-05-16 22:08:59.781 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c0efdf8a5ebf41708427b1e1fae27edc +2024-05-16 22:08:59.781 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c0efdf8a5ebf41708427b1e1fae27edc +2024-05-16 22:08:59.783 +02:00 [INF] Received HTTP response headers after 1.9074ms - 200 +2024-05-16 22:08:59.784 +02:00 [INF] End processing HTTP request after 2.7418ms - 200 +2024-05-16 22:08:59.784 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:08:59.784 +02:00 [INF] Deregistered a service [id: notifications-service:c0efdf8a5ebf41708427b1e1fae27edc] from Consul. +2024-05-16 22:09:12.557 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 22:09:12.598 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 22:09:12.655 +02:00 [INF] Registering a service [id: notifications-service:abbfffd73124438cb1dffc229bae3e66] in Consul... +2024-05-16 22:09:12.676 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 22:09:12.680 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:09:12.680 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:09:12.688 +02:00 [INF] Received HTTP response headers after 5.2121ms - 200 +2024-05-16 22:09:12.689 +02:00 [INF] End processing HTTP request after 10.1735ms - 200 +2024-05-16 22:09:12.691 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:09:12.692 +02:00 [INF] Registered a service [id: notifications-service:abbfffd73124438cb1dffc229bae3e66] in Consul. +2024-05-16 22:09:12.698 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 22:09:12.709 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 22:09:12.713 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 22:09:12.718 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 22:10:15.261 +02:00 [INF] Deregistering a service [id: notifications-service:abbfffd73124438cb1dffc229bae3e66] from Consul... +2024-05-16 22:10:15.265 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:abbfffd73124438cb1dffc229bae3e66" +2024-05-16 22:10:15.265 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:abbfffd73124438cb1dffc229bae3e66 +2024-05-16 22:10:15.266 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:abbfffd73124438cb1dffc229bae3e66 +2024-05-16 22:10:15.268 +02:00 [INF] Received HTTP response headers after 2.0701ms - 200 +2024-05-16 22:10:15.268 +02:00 [INF] End processing HTTP request after 2.9936ms - 200 +2024-05-16 22:10:15.269 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:10:15.269 +02:00 [INF] Deregistered a service [id: notifications-service:abbfffd73124438cb1dffc229bae3e66] from Consul. +2024-05-16 22:10:21.504 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 22:10:21.550 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 22:10:21.614 +02:00 [INF] Registering a service [id: notifications-service:d58144a3308e49d18a2a074c59cb6d9e] in Consul... +2024-05-16 22:10:21.637 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 22:10:21.641 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:10:21.641 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:10:21.652 +02:00 [INF] Received HTTP response headers after 6.4099ms - 200 +2024-05-16 22:10:21.653 +02:00 [INF] End processing HTTP request after 12.698ms - 200 +2024-05-16 22:10:21.655 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:10:21.656 +02:00 [INF] Registered a service [id: notifications-service:d58144a3308e49d18a2a074c59cb6d9e] in Consul. +2024-05-16 22:10:21.663 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 22:10:21.673 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 22:10:21.675 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 22:10:21.680 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-16 22:14:19.651 +02:00 [INF] Deregistering a service [id: notifications-service:d58144a3308e49d18a2a074c59cb6d9e] from Consul... +2024-05-16 22:14:19.661 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d58144a3308e49d18a2a074c59cb6d9e" +2024-05-16 22:14:19.663 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d58144a3308e49d18a2a074c59cb6d9e +2024-05-16 22:14:19.663 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d58144a3308e49d18a2a074c59cb6d9e +2024-05-16 22:14:19.674 +02:00 [INF] Received HTTP response headers after 9.6679ms - 200 +2024-05-16 22:14:19.677 +02:00 [INF] End processing HTTP request after 14.7992ms - 200 +2024-05-16 22:14:19.678 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:14:19.681 +02:00 [INF] Deregistered a service [id: notifications-service:d58144a3308e49d18a2a074c59cb6d9e] from Consul. +2024-05-16 22:14:27.026 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-16 22:14:27.068 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-16 22:14:27.163 +02:00 [INF] Registering a service [id: notifications-service:4656cf4c3216434d8e5e8586009c8543] in Consul... +2024-05-16 22:14:27.184 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-16 22:14:27.189 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:14:27.190 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-16 22:14:27.199 +02:00 [INF] Received HTTP response headers after 7.1225ms - 200 +2024-05-16 22:14:27.200 +02:00 [INF] End processing HTTP request after 12.398ms - 200 +2024-05-16 22:14:27.203 +02:00 [INF] End processing HTTP request - "OK" +2024-05-16 22:14:27.204 +02:00 [INF] Registered a service [id: notifications-service:4656cf4c3216434d8e5e8586009c8543] in Consul. +2024-05-16 22:14:27.211 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-16 22:14:27.220 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-16 22:14:27.224 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-16 22:14:27.227 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240517.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240517.txt new file mode 100644 index 000000000..591321621 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240517.txt @@ -0,0 +1,7203 @@ +2024-05-17 10:13:25.991 +02:00 [INF] Deregistering a service [id: notifications-service:4656cf4c3216434d8e5e8586009c8543] from Consul... +2024-05-17 10:13:26.004 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4656cf4c3216434d8e5e8586009c8543" +2024-05-17 10:13:26.005 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4656cf4c3216434d8e5e8586009c8543 +2024-05-17 10:13:26.005 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4656cf4c3216434d8e5e8586009c8543 +2024-05-17 10:13:26.009 +02:00 [INF] Received HTTP response headers after 3.7768ms - 200 +2024-05-17 10:13:26.010 +02:00 [INF] End processing HTTP request after 5.2729ms - 200 +2024-05-17 10:13:26.011 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 10:13:26.012 +02:00 [INF] Deregistered a service [id: notifications-service:4656cf4c3216434d8e5e8586009c8543] from Consul. +2024-05-17 11:07:40.389 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 11:07:40.439 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 11:07:40.509 +02:00 [INF] Registering a service [id: notifications-service:f1359be661084039beac92e7481ac94c] in Consul... +2024-05-17 11:07:40.536 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 11:07:40.542 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 11:07:40.543 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 11:07:40.552 +02:00 [INF] Received HTTP response headers after 5.967ms - 200 +2024-05-17 11:07:40.554 +02:00 [INF] End processing HTTP request after 12.4676ms - 200 +2024-05-17 11:07:40.559 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 11:07:40.560 +02:00 [INF] Registered a service [id: notifications-service:f1359be661084039beac92e7481ac94c] in Consul. +2024-05-17 11:07:40.571 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 11:07:40.585 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 11:07:40.592 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 11:07:40.596 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-17 11:35:17.893 +02:00 [INF] Deregistering a service [id: notifications-service:f1359be661084039beac92e7481ac94c] from Consul... +2024-05-17 11:35:17.900 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:f1359be661084039beac92e7481ac94c" +2024-05-17 11:35:17.901 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f1359be661084039beac92e7481ac94c +2024-05-17 11:35:17.901 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f1359be661084039beac92e7481ac94c +2024-05-17 11:35:17.905 +02:00 [INF] Received HTTP response headers after 2.9399ms - 200 +2024-05-17 11:35:17.905 +02:00 [INF] End processing HTTP request after 4.0735ms - 200 +2024-05-17 11:35:17.905 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 11:35:17.906 +02:00 [INF] Deregistered a service [id: notifications-service:f1359be661084039beac92e7481ac94c] from Consul. +2024-05-17 11:35:24.059 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 11:35:24.095 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 11:35:24.196 +02:00 [INF] Registering a service [id: notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c] in Consul... +2024-05-17 11:35:24.214 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 11:35:24.217 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 11:35:24.218 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 11:35:24.228 +02:00 [INF] Received HTTP response headers after 7.0048ms - 200 +2024-05-17 11:35:24.229 +02:00 [INF] End processing HTTP request after 12.4168ms - 200 +2024-05-17 11:35:24.232 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 11:35:24.233 +02:00 [INF] Registered a service [id: notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c] in Consul. +2024-05-17 11:35:24.239 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 11:35:24.247 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 11:35:24.249 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 11:35:24.250 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-17 18:12:16.998 +02:00 [INF] Deregistering a service [id: notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c] from Consul... +2024-05-17 18:12:17.003 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c" +2024-05-17 18:12:17.004 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c +2024-05-17 18:12:17.004 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c +2024-05-17 18:12:17.006 +02:00 [INF] Received HTTP response headers after 2.2524ms - 200 +2024-05-17 18:12:17.007 +02:00 [INF] End processing HTTP request after 2.8938ms - 200 +2024-05-17 18:12:17.007 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:12:17.008 +02:00 [INF] Deregistered a service [id: notifications-service:fab8e5b9bf554dc4a1a12c3654a6633c] from Consul. +2024-05-17 18:12:29.551 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:12:29.596 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:12:29.645 +02:00 [INF] Registering a service [id: notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8] in Consul... +2024-05-17 18:12:29.668 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:12:29.672 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:12:29.673 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:12:29.681 +02:00 [INF] Received HTTP response headers after 5.5325ms - 200 +2024-05-17 18:12:29.682 +02:00 [INF] End processing HTTP request after 10.623ms - 200 +2024-05-17 18:12:29.684 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:12:29.685 +02:00 [INF] Registered a service [id: notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8] in Consul. +2024-05-17 18:12:29.691 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 18:12:29.703 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 18:12:29.706 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 18:12:29.710 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-17 18:12:29.714 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_invited' with routing key: 'friend_invited' for an exchange: 'friends'. +2024-05-17 18:12:29.721 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 18:12:29.730 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 18:12:29.737 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 18:41:19.694 +02:00 [INF] Deregistering a service [id: notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8] from Consul... +2024-05-17 18:41:19.711 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8" +2024-05-17 18:41:19.713 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8 +2024-05-17 18:41:19.714 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8 +2024-05-17 18:41:19.732 +02:00 [INF] Received HTTP response headers after 12.2988ms - 200 +2024-05-17 18:41:19.734 +02:00 [INF] End processing HTTP request after 21.559ms - 200 +2024-05-17 18:41:19.739 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:41:19.743 +02:00 [INF] Deregistered a service [id: notifications-service:8c295d9fed184e4aa08cdbd3d162f8b8] from Consul. +2024-05-17 18:41:33.725 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:41:33.786 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:41:33.852 +02:00 [INF] Registering a service [id: notifications-service:79a3464996b34d26a9dd1ff6c98095be] in Consul... +2024-05-17 18:41:33.882 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:41:33.888 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:41:33.889 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:41:33.902 +02:00 [INF] Received HTTP response headers after 8.4644ms - 200 +2024-05-17 18:41:33.903 +02:00 [INF] End processing HTTP request after 15.5798ms - 200 +2024-05-17 18:41:33.905 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:41:33.906 +02:00 [INF] Registered a service [id: notifications-service:79a3464996b34d26a9dd1ff6c98095be] in Consul. +2024-05-17 18:41:33.915 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 18:41:33.931 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 18:41:33.935 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 18:41:33.938 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'friends'. +2024-05-17 18:41:33.943 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'friends'. +2024-05-17 18:41:33.954 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_invited' with routing key: 'friend_invited' for an exchange: 'friends'. +2024-05-17 18:41:33.957 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 18:41:33.967 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 18:41:33.974 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 18:51:17.398 +02:00 [INF] Deregistering a service [id: notifications-service:79a3464996b34d26a9dd1ff6c98095be] from Consul... +2024-05-17 18:51:17.401 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:79a3464996b34d26a9dd1ff6c98095be" +2024-05-17 18:51:17.401 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:79a3464996b34d26a9dd1ff6c98095be +2024-05-17 18:51:17.402 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:79a3464996b34d26a9dd1ff6c98095be +2024-05-17 18:51:17.404 +02:00 [INF] Received HTTP response headers after 2.1532ms - 200 +2024-05-17 18:51:17.405 +02:00 [INF] End processing HTTP request after 3.1079ms - 200 +2024-05-17 18:51:17.405 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:51:17.406 +02:00 [INF] Deregistered a service [id: notifications-service:79a3464996b34d26a9dd1ff6c98095be] from Consul. +2024-05-17 18:51:27.365 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:51:27.408 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:51:27.456 +02:00 [INF] Registering a service [id: notifications-service:aa413c0531f941b5a6d42bfd55b0780d] in Consul... +2024-05-17 18:51:27.474 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:51:27.478 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:51:27.479 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:51:27.487 +02:00 [INF] Received HTTP response headers after 6.2199ms - 200 +2024-05-17 18:51:27.488 +02:00 [INF] End processing HTTP request after 11.5532ms - 200 +2024-05-17 18:51:27.491 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:51:27.491 +02:00 [INF] Registered a service [id: notifications-service:aa413c0531f941b5a6d42bfd55b0780d] in Consul. +2024-05-17 18:51:27.498 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 18:51:27.508 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 18:51:27.511 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 18:51:27.513 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 18:51:27.520 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 18:51:27.525 +02:00 [INF] Received a message with ID: '8d2ab4366f1d4e8681374c6c6d64649f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715961392, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:51:27.527 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 18:51:27.537 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 18:51:27.541 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 18:51:27.559 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 18:51:27.568 +02:00 [INF] Handling a message: friend_request_created with ID: 8d2ab4366f1d4e8681374c6c6d64649f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:51:27.721 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=ebe5e5bc-d599-4601-abbd-5cfd98ac6a37 +2024-05-17 18:51:27.890 +02:00 [ERR] There was an error when processing a message with id: '8d2ab4366f1d4e8681374c6c6d64649f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:27.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:27.907 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '8d2ab4366f1d4e8681374c6c6d64649f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 18:51:29.914 +02:00 [INF] Handling a message: friend_request_created with ID: 8d2ab4366f1d4e8681374c6c6d64649f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 18:51:29.958 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=ebe5e5bc-d599-4601-abbd-5cfd98ac6a37 +2024-05-17 18:51:30.040 +02:00 [ERR] There was an error when processing a message with id: '8d2ab4366f1d4e8681374c6c6d64649f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:30.042 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:30.045 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '8d2ab4366f1d4e8681374c6c6d64649f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 18:51:32.043 +02:00 [INF] Handling a message: friend_request_created with ID: 8d2ab4366f1d4e8681374c6c6d64649f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 18:51:32.079 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=ebe5e5bc-d599-4601-abbd-5cfd98ac6a37 +2024-05-17 18:51:32.160 +02:00 [ERR] There was an error when processing a message with id: '8d2ab4366f1d4e8681374c6c6d64649f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:32.163 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:32.165 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '8d2ab4366f1d4e8681374c6c6d64649f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 18:51:34.167 +02:00 [INF] Handling a message: friend_request_created with ID: 8d2ab4366f1d4e8681374c6c6d64649f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 18:51:34.203 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=ebe5e5bc-d599-4601-abbd-5cfd98ac6a37 +2024-05-17 18:51:34.270 +02:00 [ERR] There was an error when processing a message with id: '8d2ab4366f1d4e8681374c6c6d64649f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:34.274 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:34.276 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '8d2ab4366f1d4e8681374c6c6d64649f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 18:51:34.277 +02:00 [ERR] Handling a message: friend_request_created with ID: 8d2ab4366f1d4e8681374c6c6d64649f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 18:51:34.288 +02:00 [INF] Received a message with ID: 'f8fe59f861d6428f9cc118080f132e77', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715961678, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:51:34.290 +02:00 [INF] Handling a message: friend_request_created with ID: f8fe59f861d6428f9cc118080f132e77, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:51:34.320 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=4faa1718-2902-4c9b-999a-7e3e557f1ee0 +2024-05-17 18:51:34.399 +02:00 [ERR] There was an error when processing a message with id: 'f8fe59f861d6428f9cc118080f132e77'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:34.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:34.407 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8fe59f861d6428f9cc118080f132e77', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 18:51:36.409 +02:00 [INF] Handling a message: friend_request_created with ID: f8fe59f861d6428f9cc118080f132e77, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 18:51:36.438 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=4faa1718-2902-4c9b-999a-7e3e557f1ee0 +2024-05-17 18:51:36.506 +02:00 [ERR] There was an error when processing a message with id: 'f8fe59f861d6428f9cc118080f132e77'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:36.508 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:36.510 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8fe59f861d6428f9cc118080f132e77', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 18:51:38.511 +02:00 [INF] Handling a message: friend_request_created with ID: f8fe59f861d6428f9cc118080f132e77, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 18:51:38.543 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=4faa1718-2902-4c9b-999a-7e3e557f1ee0 +2024-05-17 18:51:38.617 +02:00 [ERR] There was an error when processing a message with id: 'f8fe59f861d6428f9cc118080f132e77'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:38.618 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:38.618 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8fe59f861d6428f9cc118080f132e77', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 18:51:40.619 +02:00 [INF] Handling a message: friend_request_created with ID: f8fe59f861d6428f9cc118080f132e77, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 18:51:41.226 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=4faa1718-2902-4c9b-999a-7e3e557f1ee0 +2024-05-17 18:51:41.299 +02:00 [ERR] There was an error when processing a message with id: 'f8fe59f861d6428f9cc118080f132e77'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:41.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:41.300 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8fe59f861d6428f9cc118080f132e77', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 18:51:41.300 +02:00 [ERR] Handling a message: friend_request_created with ID: f8fe59f861d6428f9cc118080f132e77, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 18:51:41.301 +02:00 [INF] Received a message with ID: 'b1dbc58bc9324ab196b3ee0ec2677b00', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715962353, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:51:41.302 +02:00 [INF] Handling a message: friend_request_created with ID: b1dbc58bc9324ab196b3ee0ec2677b00, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:51:41.330 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=17166c9e-d3f2-44c3-97b6-0949b5a579d1 +2024-05-17 18:51:41.405 +02:00 [ERR] There was an error when processing a message with id: 'b1dbc58bc9324ab196b3ee0ec2677b00'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:41.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:41.406 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'b1dbc58bc9324ab196b3ee0ec2677b00', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 1/3... +2024-05-17 18:51:43.404 +02:00 [INF] Handling a message: friend_request_created with ID: b1dbc58bc9324ab196b3ee0ec2677b00, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 1 +2024-05-17 18:51:43.430 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=17166c9e-d3f2-44c3-97b6-0949b5a579d1 +2024-05-17 18:51:43.490 +02:00 [ERR] There was an error when processing a message with id: 'b1dbc58bc9324ab196b3ee0ec2677b00'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:43.492 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:43.493 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'b1dbc58bc9324ab196b3ee0ec2677b00', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 2/3... +2024-05-17 18:51:45.493 +02:00 [INF] Handling a message: friend_request_created with ID: b1dbc58bc9324ab196b3ee0ec2677b00, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 2 +2024-05-17 18:51:45.524 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=17166c9e-d3f2-44c3-97b6-0949b5a579d1 +2024-05-17 18:51:45.590 +02:00 [ERR] There was an error when processing a message with id: 'b1dbc58bc9324ab196b3ee0ec2677b00'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:45.593 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:45.601 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'b1dbc58bc9324ab196b3ee0ec2677b00', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 3/3... +2024-05-17 18:51:47.601 +02:00 [INF] Handling a message: friend_request_created with ID: b1dbc58bc9324ab196b3ee0ec2677b00, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 3 +2024-05-17 18:51:47.630 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=17166c9e-d3f2-44c3-97b6-0949b5a579d1 +2024-05-17 18:51:47.700 +02:00 [ERR] There was an error when processing a message with id: 'b1dbc58bc9324ab196b3ee0ec2677b00'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:47.701 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:47.702 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'b1dbc58bc9324ab196b3ee0ec2677b00', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 4/3... +2024-05-17 18:51:47.702 +02:00 [ERR] Handling a message: friend_request_created with ID: b1dbc58bc9324ab196b3ee0ec2677b00, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365 failed +2024-05-17 18:51:47.703 +02:00 [INF] Received a message with ID: '939cf73860c04c928fde5f4bc6219806', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715962935, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:51:47.704 +02:00 [INF] Handling a message: friend_request_created with ID: 939cf73860c04c928fde5f4bc6219806, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:51:47.731 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=8b594368-746d-44fd-ab9a-a1650091a20f +2024-05-17 18:51:47.795 +02:00 [ERR] There was an error when processing a message with id: '939cf73860c04c928fde5f4bc6219806'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:47.795 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:47.796 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '939cf73860c04c928fde5f4bc6219806', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', retry 1/3... +2024-05-17 18:51:49.795 +02:00 [INF] Handling a message: friend_request_created with ID: 939cf73860c04c928fde5f4bc6219806, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 1 +2024-05-17 18:51:49.824 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=8b594368-746d-44fd-ab9a-a1650091a20f +2024-05-17 18:51:49.888 +02:00 [ERR] There was an error when processing a message with id: '939cf73860c04c928fde5f4bc6219806'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:49.890 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:49.891 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '939cf73860c04c928fde5f4bc6219806', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', retry 2/3... +2024-05-17 18:51:51.892 +02:00 [INF] Handling a message: friend_request_created with ID: 939cf73860c04c928fde5f4bc6219806, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 2 +2024-05-17 18:51:51.923 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=8b594368-746d-44fd-ab9a-a1650091a20f +2024-05-17 18:51:51.989 +02:00 [ERR] There was an error when processing a message with id: '939cf73860c04c928fde5f4bc6219806'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:51.989 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:51.990 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '939cf73860c04c928fde5f4bc6219806', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', retry 3/3... +2024-05-17 18:51:53.986 +02:00 [INF] Handling a message: friend_request_created with ID: 939cf73860c04c928fde5f4bc6219806, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 3 +2024-05-17 18:51:54.015 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=8b594368-746d-44fd-ab9a-a1650091a20f +2024-05-17 18:51:54.075 +02:00 [ERR] There was an error when processing a message with id: '939cf73860c04c928fde5f4bc6219806'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:54.075 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:54.076 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '939cf73860c04c928fde5f4bc6219806', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', retry 4/3... +2024-05-17 18:51:54.076 +02:00 [ERR] Handling a message: friend_request_created with ID: 939cf73860c04c928fde5f4bc6219806, Correlation ID: a525fb70626c4a9885d86ca292cfa54d failed +2024-05-17 18:51:54.076 +02:00 [INF] Received a message with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715963125, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:51:54.077 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:51:54.104 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:51:54.164 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:54.164 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:54.165 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 1/3... +2024-05-17 18:51:56.164 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 1 +2024-05-17 18:51:56.191 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:51:56.260 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:51:56.261 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:56.263 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 2/3... +2024-05-17 18:51:57.587 +02:00 [INF] Deregistering a service [id: notifications-service:aa413c0531f941b5a6d42bfd55b0780d] from Consul... +2024-05-17 18:51:57.594 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:aa413c0531f941b5a6d42bfd55b0780d" +2024-05-17 18:51:57.594 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:aa413c0531f941b5a6d42bfd55b0780d +2024-05-17 18:51:57.594 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:aa413c0531f941b5a6d42bfd55b0780d +2024-05-17 18:51:57.600 +02:00 [INF] Received HTTP response headers after 4.7761ms - 200 +2024-05-17 18:51:57.600 +02:00 [INF] End processing HTTP request after 6.0981ms - 200 +2024-05-17 18:51:57.600 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:51:57.601 +02:00 [INF] Deregistered a service [id: notifications-service:aa413c0531f941b5a6d42bfd55b0780d] from Consul. +2024-05-17 18:51:58.263 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 2 +2024-05-17 18:51:58.264 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:51:58.265 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 3/3... +2024-05-17 18:52:00.264 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 3 +2024-05-17 18:52:00.265 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:00.265 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 4/3... +2024-05-17 18:52:00.265 +02:00 [ERR] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a failed +2024-05-17 18:52:07.540 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:52:07.580 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:52:07.631 +02:00 [INF] Registering a service [id: notifications-service:cd49afced4374269bf433aa598f0a7f9] in Consul... +2024-05-17 18:52:07.652 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:52:07.656 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:52:07.657 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:52:07.663 +02:00 [INF] Received HTTP response headers after 4.121ms - 200 +2024-05-17 18:52:07.664 +02:00 [INF] End processing HTTP request after 8.3927ms - 200 +2024-05-17 18:52:07.668 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:52:07.669 +02:00 [INF] Registered a service [id: notifications-service:cd49afced4374269bf433aa598f0a7f9] in Consul. +2024-05-17 18:52:07.675 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 18:52:07.686 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 18:52:07.689 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 18:52:07.691 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 18:52:07.695 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 18:52:07.697 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 18:52:07.702 +02:00 [INF] Received a message with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715963125, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:07.707 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 18:52:07.710 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 18:52:07.712 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 18:52:07.726 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:52:08.093 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:52:08.269 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:08.281 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:08.283 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 1/3... +2024-05-17 18:52:10.289 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 1 +2024-05-17 18:52:10.317 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:52:10.377 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:10.381 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:10.384 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 2/3... +2024-05-17 18:52:12.384 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 2 +2024-05-17 18:52:12.421 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:52:12.482 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:12.484 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:12.485 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 3/3... +2024-05-17 18:52:14.484 +02:00 [INF] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 3 +2024-05-17 18:52:14.514 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=e3ce272a-af6a-4363-bfc9-447f2b0937bf +2024-05-17 18:52:14.573 +02:00 [ERR] There was an error when processing a message with id: '654fef8507f44daa916de8f6730a5a72'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:14.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:14.574 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '654fef8507f44daa916de8f6730a5a72', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 4/3... +2024-05-17 18:52:14.575 +02:00 [ERR] Handling a message: friend_request_created with ID: 654fef8507f44daa916de8f6730a5a72, Correlation ID: 91e250babeee40d8b46cd9700a69d55a failed +2024-05-17 18:52:14.580 +02:00 [INF] Received a message with ID: '5d912ad48113464e99f4ce5014d7f8b1', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715963428, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:14.581 +02:00 [INF] Handling a message: friend_request_created with ID: 5d912ad48113464e99f4ce5014d7f8b1, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:52:14.609 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=5f6df6ba-5dd3-463c-b990-742d7fc944dd +2024-05-17 18:52:14.669 +02:00 [ERR] There was an error when processing a message with id: '5d912ad48113464e99f4ce5014d7f8b1'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:14.670 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:14.670 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '5d912ad48113464e99f4ce5014d7f8b1', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', retry 1/3... +2024-05-17 18:52:16.671 +02:00 [INF] Handling a message: friend_request_created with ID: 5d912ad48113464e99f4ce5014d7f8b1, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 1 +2024-05-17 18:52:16.704 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=5f6df6ba-5dd3-463c-b990-742d7fc944dd +2024-05-17 18:52:16.768 +02:00 [ERR] There was an error when processing a message with id: '5d912ad48113464e99f4ce5014d7f8b1'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:16.778 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:16.781 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '5d912ad48113464e99f4ce5014d7f8b1', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', retry 2/3... +2024-05-17 18:52:18.781 +02:00 [INF] Handling a message: friend_request_created with ID: 5d912ad48113464e99f4ce5014d7f8b1, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 2 +2024-05-17 18:52:18.810 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=5f6df6ba-5dd3-463c-b990-742d7fc944dd +2024-05-17 18:52:18.892 +02:00 [ERR] There was an error when processing a message with id: '5d912ad48113464e99f4ce5014d7f8b1'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:18.895 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:18.897 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '5d912ad48113464e99f4ce5014d7f8b1', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', retry 3/3... +2024-05-17 18:52:20.901 +02:00 [INF] Handling a message: friend_request_created with ID: 5d912ad48113464e99f4ce5014d7f8b1, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 3 +2024-05-17 18:52:20.927 +02:00 [INF] Received FriendRequestCreated event: RequesterId=af9ca0fc-b35b-4566-84e5-83dd08f20c3e, FriendId=5f6df6ba-5dd3-463c-b990-742d7fc944dd +2024-05-17 18:52:20.993 +02:00 [ERR] There was an error when processing a message with id: '5d912ad48113464e99f4ce5014d7f8b1'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:20.993 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:20.994 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '5d912ad48113464e99f4ce5014d7f8b1', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', retry 4/3... +2024-05-17 18:52:20.994 +02:00 [ERR] Handling a message: friend_request_created with ID: 5d912ad48113464e99f4ce5014d7f8b1, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0 failed +2024-05-17 18:52:20.996 +02:00 [INF] Received a message with ID: 'c51dd1cecd014d9fb496f72157e867e4', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964687, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:20.997 +02:00 [INF] Handling a message: friend_request_created with ID: c51dd1cecd014d9fb496f72157e867e4, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:52:21.025 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:21.089 +02:00 [ERR] There was an error when processing a message with id: 'c51dd1cecd014d9fb496f72157e867e4'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:21.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:21.090 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'c51dd1cecd014d9fb496f72157e867e4', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 18:52:23.089 +02:00 [INF] Handling a message: friend_request_created with ID: c51dd1cecd014d9fb496f72157e867e4, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 18:52:23.116 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:23.176 +02:00 [ERR] There was an error when processing a message with id: 'c51dd1cecd014d9fb496f72157e867e4'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:23.177 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:23.179 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'c51dd1cecd014d9fb496f72157e867e4', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 18:52:25.182 +02:00 [INF] Handling a message: friend_request_created with ID: c51dd1cecd014d9fb496f72157e867e4, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 18:52:25.210 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:25.273 +02:00 [ERR] There was an error when processing a message with id: 'c51dd1cecd014d9fb496f72157e867e4'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:25.274 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:25.274 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'c51dd1cecd014d9fb496f72157e867e4', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 18:52:27.275 +02:00 [INF] Handling a message: friend_request_created with ID: c51dd1cecd014d9fb496f72157e867e4, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 18:52:27.306 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:27.373 +02:00 [ERR] There was an error when processing a message with id: 'c51dd1cecd014d9fb496f72157e867e4'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:27.374 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:27.374 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'c51dd1cecd014d9fb496f72157e867e4', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 18:52:27.374 +02:00 [ERR] Handling a message: friend_request_created with ID: c51dd1cecd014d9fb496f72157e867e4, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 18:52:27.376 +02:00 [INF] Received a message with ID: 'f8c4625c4a7a44ffa5ba3576d7de64db', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964691, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:27.377 +02:00 [INF] Handling a message: friend_request_created with ID: f8c4625c4a7a44ffa5ba3576d7de64db, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:52:27.403 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:27.473 +02:00 [ERR] There was an error when processing a message with id: 'f8c4625c4a7a44ffa5ba3576d7de64db'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:27.476 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:27.477 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8c4625c4a7a44ffa5ba3576d7de64db', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 18:52:29.476 +02:00 [INF] Handling a message: friend_request_created with ID: f8c4625c4a7a44ffa5ba3576d7de64db, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 18:52:29.506 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:29.571 +02:00 [ERR] There was an error when processing a message with id: 'f8c4625c4a7a44ffa5ba3576d7de64db'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:29.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:29.573 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8c4625c4a7a44ffa5ba3576d7de64db', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 18:52:31.571 +02:00 [INF] Handling a message: friend_request_created with ID: f8c4625c4a7a44ffa5ba3576d7de64db, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 18:52:31.602 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:31.676 +02:00 [ERR] There was an error when processing a message with id: 'f8c4625c4a7a44ffa5ba3576d7de64db'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:31.678 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:31.680 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8c4625c4a7a44ffa5ba3576d7de64db', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 18:52:33.682 +02:00 [INF] Handling a message: friend_request_created with ID: f8c4625c4a7a44ffa5ba3576d7de64db, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 18:52:33.711 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:33.776 +02:00 [ERR] There was an error when processing a message with id: 'f8c4625c4a7a44ffa5ba3576d7de64db'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:33.779 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:33.781 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'f8c4625c4a7a44ffa5ba3576d7de64db', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 18:52:33.781 +02:00 [ERR] Handling a message: friend_request_created with ID: f8c4625c4a7a44ffa5ba3576d7de64db, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 18:52:33.789 +02:00 [INF] Received a message with ID: '885fd241f3e7474d8ea967229e0d23b3', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964693, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:33.793 +02:00 [INF] Handling a message: friend_request_created with ID: 885fd241f3e7474d8ea967229e0d23b3, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:52:33.830 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:33.902 +02:00 [ERR] There was an error when processing a message with id: '885fd241f3e7474d8ea967229e0d23b3'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:33.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:33.903 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '885fd241f3e7474d8ea967229e0d23b3', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 18:52:35.904 +02:00 [INF] Handling a message: friend_request_created with ID: 885fd241f3e7474d8ea967229e0d23b3, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 18:52:35.930 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:35.995 +02:00 [ERR] There was an error when processing a message with id: '885fd241f3e7474d8ea967229e0d23b3'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:35.995 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:35.996 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '885fd241f3e7474d8ea967229e0d23b3', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 18:52:37.995 +02:00 [INF] Handling a message: friend_request_created with ID: 885fd241f3e7474d8ea967229e0d23b3, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 18:52:38.021 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:38.083 +02:00 [ERR] There was an error when processing a message with id: '885fd241f3e7474d8ea967229e0d23b3'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:38.084 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:38.084 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '885fd241f3e7474d8ea967229e0d23b3', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 18:52:40.083 +02:00 [INF] Handling a message: friend_request_created with ID: 885fd241f3e7474d8ea967229e0d23b3, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 18:52:40.112 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:40.174 +02:00 [ERR] There was an error when processing a message with id: '885fd241f3e7474d8ea967229e0d23b3'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:40.177 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:40.177 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '885fd241f3e7474d8ea967229e0d23b3', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 18:52:40.177 +02:00 [ERR] Handling a message: friend_request_created with ID: 885fd241f3e7474d8ea967229e0d23b3, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 18:52:40.192 +02:00 [INF] Received a message with ID: '6cfeb0c817e7487caef9ffabf467259d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964695, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:40.196 +02:00 [INF] Handling a message: friend_request_created with ID: 6cfeb0c817e7487caef9ffabf467259d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:52:40.232 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:40.294 +02:00 [ERR] There was an error when processing a message with id: '6cfeb0c817e7487caef9ffabf467259d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:40.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:40.295 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '6cfeb0c817e7487caef9ffabf467259d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 18:52:42.296 +02:00 [INF] Handling a message: friend_request_created with ID: 6cfeb0c817e7487caef9ffabf467259d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 18:52:42.323 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:42.386 +02:00 [ERR] There was an error when processing a message with id: '6cfeb0c817e7487caef9ffabf467259d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:42.388 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:42.390 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '6cfeb0c817e7487caef9ffabf467259d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 18:52:44.395 +02:00 [INF] Handling a message: friend_request_created with ID: 6cfeb0c817e7487caef9ffabf467259d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 18:52:44.424 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:44.485 +02:00 [ERR] There was an error when processing a message with id: '6cfeb0c817e7487caef9ffabf467259d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:44.485 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:44.485 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '6cfeb0c817e7487caef9ffabf467259d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 18:52:46.484 +02:00 [INF] Handling a message: friend_request_created with ID: 6cfeb0c817e7487caef9ffabf467259d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 18:52:46.516 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:46.589 +02:00 [ERR] There was an error when processing a message with id: '6cfeb0c817e7487caef9ffabf467259d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:46.590 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:46.591 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '6cfeb0c817e7487caef9ffabf467259d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 18:52:46.591 +02:00 [ERR] Handling a message: friend_request_created with ID: 6cfeb0c817e7487caef9ffabf467259d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 18:52:46.597 +02:00 [INF] Received a message with ID: '718745d0c3ba49cdbc056144d80ad335', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964695, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:46.598 +02:00 [INF] Handling a message: friend_request_created with ID: 718745d0c3ba49cdbc056144d80ad335, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:52:46.627 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:46.733 +02:00 [ERR] There was an error when processing a message with id: '718745d0c3ba49cdbc056144d80ad335'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:46.734 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:46.735 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '718745d0c3ba49cdbc056144d80ad335', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 18:52:48.737 +02:00 [INF] Handling a message: friend_request_created with ID: 718745d0c3ba49cdbc056144d80ad335, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 18:52:48.764 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:48.829 +02:00 [ERR] There was an error when processing a message with id: '718745d0c3ba49cdbc056144d80ad335'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:48.830 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:48.830 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '718745d0c3ba49cdbc056144d80ad335', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 18:52:50.834 +02:00 [INF] Handling a message: friend_request_created with ID: 718745d0c3ba49cdbc056144d80ad335, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 18:52:50.868 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:50.937 +02:00 [ERR] There was an error when processing a message with id: '718745d0c3ba49cdbc056144d80ad335'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:50.938 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:50.938 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '718745d0c3ba49cdbc056144d80ad335', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 18:52:52.941 +02:00 [INF] Handling a message: friend_request_created with ID: 718745d0c3ba49cdbc056144d80ad335, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 18:52:52.969 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:53.043 +02:00 [ERR] There was an error when processing a message with id: '718745d0c3ba49cdbc056144d80ad335'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:53.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:53.044 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '718745d0c3ba49cdbc056144d80ad335', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 18:52:53.044 +02:00 [ERR] Handling a message: friend_request_created with ID: 718745d0c3ba49cdbc056144d80ad335, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 18:52:53.045 +02:00 [INF] Received a message with ID: '42e62036952843b3af52125fca1bf8ae', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964697, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:53.045 +02:00 [INF] Handling a message: friend_request_created with ID: 42e62036952843b3af52125fca1bf8ae, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:52:53.079 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:53.145 +02:00 [ERR] There was an error when processing a message with id: '42e62036952843b3af52125fca1bf8ae'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:53.145 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:53.146 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '42e62036952843b3af52125fca1bf8ae', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 18:52:55.147 +02:00 [INF] Handling a message: friend_request_created with ID: 42e62036952843b3af52125fca1bf8ae, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 18:52:55.177 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:55.243 +02:00 [ERR] There was an error when processing a message with id: '42e62036952843b3af52125fca1bf8ae'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:55.245 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:55.246 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '42e62036952843b3af52125fca1bf8ae', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 18:52:57.248 +02:00 [INF] Handling a message: friend_request_created with ID: 42e62036952843b3af52125fca1bf8ae, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 18:52:57.283 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:57.357 +02:00 [ERR] There was an error when processing a message with id: '42e62036952843b3af52125fca1bf8ae'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:57.357 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:57.358 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '42e62036952843b3af52125fca1bf8ae', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 18:52:59.362 +02:00 [INF] Handling a message: friend_request_created with ID: 42e62036952843b3af52125fca1bf8ae, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 18:52:59.389 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:59.452 +02:00 [ERR] There was an error when processing a message with id: '42e62036952843b3af52125fca1bf8ae'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:59.452 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:59.453 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '42e62036952843b3af52125fca1bf8ae', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 18:52:59.453 +02:00 [ERR] Handling a message: friend_request_created with ID: 42e62036952843b3af52125fca1bf8ae, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 18:52:59.454 +02:00 [INF] Received a message with ID: '0b90afb0b6924a9e8b1b27336f0d686d', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964699, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:52:59.454 +02:00 [INF] Handling a message: friend_request_created with ID: 0b90afb0b6924a9e8b1b27336f0d686d, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:52:59.480 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:52:59.539 +02:00 [ERR] There was an error when processing a message with id: '0b90afb0b6924a9e8b1b27336f0d686d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:52:59.539 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:52:59.540 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0b90afb0b6924a9e8b1b27336f0d686d', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 18:53:01.541 +02:00 [INF] Handling a message: friend_request_created with ID: 0b90afb0b6924a9e8b1b27336f0d686d, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 18:53:01.568 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:01.631 +02:00 [ERR] There was an error when processing a message with id: '0b90afb0b6924a9e8b1b27336f0d686d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:01.632 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:01.633 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0b90afb0b6924a9e8b1b27336f0d686d', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 18:53:03.632 +02:00 [INF] Handling a message: friend_request_created with ID: 0b90afb0b6924a9e8b1b27336f0d686d, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 18:53:03.658 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:03.722 +02:00 [ERR] There was an error when processing a message with id: '0b90afb0b6924a9e8b1b27336f0d686d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:03.723 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:03.725 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0b90afb0b6924a9e8b1b27336f0d686d', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 18:53:05.725 +02:00 [INF] Handling a message: friend_request_created with ID: 0b90afb0b6924a9e8b1b27336f0d686d, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 18:53:05.752 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:05.812 +02:00 [ERR] There was an error when processing a message with id: '0b90afb0b6924a9e8b1b27336f0d686d'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:05.813 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:05.813 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0b90afb0b6924a9e8b1b27336f0d686d', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 18:53:05.813 +02:00 [ERR] Handling a message: friend_request_created with ID: 0b90afb0b6924a9e8b1b27336f0d686d, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 18:53:05.814 +02:00 [INF] Received a message with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964701, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:53:05.814 +02:00 [INF] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:53:05.841 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:05.916 +02:00 [ERR] There was an error when processing a message with id: 'd680b4b2917b4bb88a661c2b3d454313'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:05.917 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:05.917 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 18:53:07.917 +02:00 [INF] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 18:53:07.944 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:08.008 +02:00 [ERR] There was an error when processing a message with id: 'd680b4b2917b4bb88a661c2b3d454313'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:08.008 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:08.009 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 18:53:09.997 +02:00 [INF] Deregistering a service [id: notifications-service:cd49afced4374269bf433aa598f0a7f9] from Consul... +2024-05-17 18:53:10.001 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:cd49afced4374269bf433aa598f0a7f9" +2024-05-17 18:53:10.001 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:cd49afced4374269bf433aa598f0a7f9 +2024-05-17 18:53:10.005 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:cd49afced4374269bf433aa598f0a7f9 +2024-05-17 18:53:10.010 +02:00 [INF] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 18:53:10.010 +02:00 [INF] Received HTTP response headers after 5.4393ms - 200 +2024-05-17 18:53:10.013 +02:00 [INF] End processing HTTP request after 11.0006ms - 200 +2024-05-17 18:53:10.014 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:53:10.016 +02:00 [INF] Deregistered a service [id: notifications-service:cd49afced4374269bf433aa598f0a7f9] from Consul. +2024-05-17 18:53:10.041 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:53:10.104 +02:00 [ERR] There was an error when processing a message with id: 'd680b4b2917b4bb88a661c2b3d454313'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 18:53:10.104 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 53 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:10.104 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 18:53:12.103 +02:00 [INF] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 18:53:12.104 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 18:53:12.105 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 18:53:12.106 +02:00 [ERR] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 18:54:52.454 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:54:52.499 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:54:52.556 +02:00 [INF] Registering a service [id: notifications-service:1783df97e9d4423e9818b4c6ca7a42d6] in Consul... +2024-05-17 18:54:52.575 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:54:52.578 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:54:52.579 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:54:52.588 +02:00 [INF] Received HTTP response headers after 4.9472ms - 200 +2024-05-17 18:54:52.589 +02:00 [INF] End processing HTTP request after 11.3577ms - 200 +2024-05-17 18:54:52.593 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:54:52.593 +02:00 [INF] Registered a service [id: notifications-service:1783df97e9d4423e9818b4c6ca7a42d6] in Consul. +2024-05-17 18:54:52.601 +02:00 [INF] Deregistering a service [id: notifications-service:1783df97e9d4423e9818b4c6ca7a42d6] from Consul... +2024-05-17 18:54:52.602 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1783df97e9d4423e9818b4c6ca7a42d6" +2024-05-17 18:54:52.602 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1783df97e9d4423e9818b4c6ca7a42d6 +2024-05-17 18:54:52.603 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1783df97e9d4423e9818b4c6ca7a42d6 +2024-05-17 18:54:52.605 +02:00 [INF] Received HTTP response headers after 1.9469ms - 200 +2024-05-17 18:54:52.606 +02:00 [INF] End processing HTTP request after 3.1391ms - 200 +2024-05-17 18:54:52.606 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:54:52.607 +02:00 [INF] Deregistered a service [id: notifications-service:1783df97e9d4423e9818b4c6ca7a42d6] from Consul. +2024-05-17 18:54:59.318 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 18:54:59.360 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 18:54:59.427 +02:00 [INF] Registering a service [id: notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a] in Consul... +2024-05-17 18:54:59.445 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 18:54:59.449 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:54:59.450 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 18:54:59.458 +02:00 [INF] Received HTTP response headers after 5.6831ms - 200 +2024-05-17 18:54:59.459 +02:00 [INF] End processing HTTP request after 11.1047ms - 200 +2024-05-17 18:54:59.461 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:54:59.462 +02:00 [INF] Registered a service [id: notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a] in Consul. +2024-05-17 18:54:59.470 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 18:54:59.479 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 18:54:59.481 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 18:54:59.483 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 18:54:59.489 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 18:54:59.492 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 18:54:59.495 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 18:54:59.497 +02:00 [INF] Received a message with ID: 'd680b4b2917b4bb88a661c2b3d454313', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964701, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:54:59.499 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 18:54:59.504 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 18:54:59.526 +02:00 [INF] Handling a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:54:59.609 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:54:59.727 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:54:59.758 +02:00 [INF] Published NotificationCreated event for NotificationId=f237aaf2-1523-45a0-aa79-e3a78b537a1f +2024-05-17 18:54:59.812 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:54:59.814 +02:00 [INF] Handled a message: friend_request_created with ID: d680b4b2917b4bb88a661c2b3d454313, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:54:59.820 +02:00 [INF] Received a message with ID: 'bd73fe685d9a4037835c0b5ae14ef7d3', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964701, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:54:59.821 +02:00 [INF] Handling a message: friend_request_created with ID: bd73fe685d9a4037835c0b5ae14ef7d3, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:54:59.850 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:54:59.913 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:54:59.955 +02:00 [INF] Published NotificationCreated event for NotificationId=936b3fa5-e561-4a82-90ff-512bf3b2629d +2024-05-17 18:54:59.992 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:54:59.993 +02:00 [INF] Handled a message: friend_request_created with ID: bd73fe685d9a4037835c0b5ae14ef7d3, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:54:59.996 +02:00 [INF] Received a message with ID: '89d1dd7b77b2442785078974c547469a', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964703, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:54:59.998 +02:00 [INF] Handling a message: friend_request_created with ID: 89d1dd7b77b2442785078974c547469a, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.034 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.099 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.181 +02:00 [INF] Published NotificationCreated event for NotificationId=44094002-cc84-4eed-a009-732a00be89d0 +2024-05-17 18:55:00.223 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:00.223 +02:00 [INF] Handled a message: friend_request_created with ID: 89d1dd7b77b2442785078974c547469a, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.224 +02:00 [INF] Received a message with ID: '49ac95ca9cba4a3fa77b49a1057b84d4', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964705, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:00.226 +02:00 [INF] Handling a message: friend_request_created with ID: 49ac95ca9cba4a3fa77b49a1057b84d4, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.252 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.315 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.347 +02:00 [INF] Published NotificationCreated event for NotificationId=3f4353c6-f701-4560-a7e1-c727113734e0 +2024-05-17 18:55:00.380 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:00.380 +02:00 [INF] Handled a message: friend_request_created with ID: 49ac95ca9cba4a3fa77b49a1057b84d4, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.381 +02:00 [INF] Received a message with ID: '6f1f2bc0cff641678783d20cf788d223', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964709, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:00.382 +02:00 [INF] Handling a message: friend_request_created with ID: 6f1f2bc0cff641678783d20cf788d223, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.411 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.477 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.511 +02:00 [INF] Published NotificationCreated event for NotificationId=bc3fdfb7-287e-43d1-b452-6cf8377c9c95 +2024-05-17 18:55:00.547 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:00.548 +02:00 [INF] Handled a message: friend_request_created with ID: 6f1f2bc0cff641678783d20cf788d223, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:00.552 +02:00 [INF] Received a message with ID: '41f6775e9f6f422e9a975206cd3f3557', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964709, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:00.554 +02:00 [INF] Handling a message: friend_request_created with ID: 41f6775e9f6f422e9a975206cd3f3557, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:00.586 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.651 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.681 +02:00 [INF] Published NotificationCreated event for NotificationId=06f19c84-54e9-4012-9a18-37d26c52e989 +2024-05-17 18:55:00.717 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:00.717 +02:00 [INF] Handled a message: friend_request_created with ID: 41f6775e9f6f422e9a975206cd3f3557, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:00.718 +02:00 [INF] Received a message with ID: 'e8a7f60ee92e4031a916fd6e4feb9d9f', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964711, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:00.719 +02:00 [INF] Handling a message: friend_request_created with ID: e8a7f60ee92e4031a916fd6e4feb9d9f, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:00.749 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.814 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.859 +02:00 [INF] Published NotificationCreated event for NotificationId=38be65ce-8972-4752-9158-d029ab11d763 +2024-05-17 18:55:00.890 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:00.891 +02:00 [INF] Handled a message: friend_request_created with ID: e8a7f60ee92e4031a916fd6e4feb9d9f, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:00.892 +02:00 [INF] Received a message with ID: '26c48f92d1f74753b493f555287bb11f', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964713, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:00.893 +02:00 [INF] Handling a message: friend_request_created with ID: 26c48f92d1f74753b493f555287bb11f, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:00.922 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:00.985 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.020 +02:00 [INF] Published NotificationCreated event for NotificationId=7580f1e7-e5df-427e-be40-3034b0e1a8ac +2024-05-17 18:55:01.054 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.055 +02:00 [INF] Handled a message: friend_request_created with ID: 26c48f92d1f74753b493f555287bb11f, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:01.059 +02:00 [INF] Received a message with ID: 'dd6f0670335b46b0a130e20ca155cc77', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964715, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.061 +02:00 [INF] Handling a message: friend_request_created with ID: dd6f0670335b46b0a130e20ca155cc77, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:01.090 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.153 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.187 +02:00 [INF] Published NotificationCreated event for NotificationId=7dd1f9e0-1b35-45f7-be7f-fc02bf3d65c0 +2024-05-17 18:55:01.232 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.233 +02:00 [INF] Handled a message: friend_request_created with ID: dd6f0670335b46b0a130e20ca155cc77, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 18:55:01.239 +02:00 [INF] Received a message with ID: 'e5e3c124d0a34a95a4f7ccf9403d127f', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964715, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.240 +02:00 [INF] Handling a message: friend_request_created with ID: e5e3c124d0a34a95a4f7ccf9403d127f, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.274 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.338 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.370 +02:00 [INF] Published NotificationCreated event for NotificationId=ca77fe93-2a03-4e65-9bea-41498185759b +2024-05-17 18:55:01.400 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.400 +02:00 [INF] Handled a message: friend_request_created with ID: e5e3c124d0a34a95a4f7ccf9403d127f, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.402 +02:00 [INF] Received a message with ID: '87a23b9dc9b345d7a78cc51dc784a3b6', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964717, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.403 +02:00 [INF] Handling a message: friend_request_created with ID: 87a23b9dc9b345d7a78cc51dc784a3b6, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.431 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.501 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.536 +02:00 [INF] Published NotificationCreated event for NotificationId=06099cae-bc35-42b2-898a-9757e753731b +2024-05-17 18:55:01.567 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.568 +02:00 [INF] Handled a message: friend_request_created with ID: 87a23b9dc9b345d7a78cc51dc784a3b6, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.574 +02:00 [INF] Received a message with ID: '17c83f55dcd84acc80969d74e81a67c3', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964729, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.575 +02:00 [INF] Handling a message: friend_request_created with ID: 17c83f55dcd84acc80969d74e81a67c3, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.607 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.675 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.710 +02:00 [INF] Published NotificationCreated event for NotificationId=9ad10b36-a9b5-4fc8-b4b7-bac9710261cc +2024-05-17 18:55:01.742 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.743 +02:00 [INF] Handled a message: friend_request_created with ID: 17c83f55dcd84acc80969d74e81a67c3, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.745 +02:00 [INF] Received a message with ID: '9f37eecbf14d45428938af0eb28f9640', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964731, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.746 +02:00 [INF] Handling a message: friend_request_created with ID: 9f37eecbf14d45428938af0eb28f9640, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.777 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.841 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.871 +02:00 [INF] Published NotificationCreated event for NotificationId=2879f80e-08e4-45d9-803b-d43d1d3914ab +2024-05-17 18:55:01.904 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:01.905 +02:00 [INF] Handled a message: friend_request_created with ID: 9f37eecbf14d45428938af0eb28f9640, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.906 +02:00 [INF] Received a message with ID: 'dd344d47900d4baab12a38f4f854ee89', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964733, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:01.906 +02:00 [INF] Handling a message: friend_request_created with ID: dd344d47900d4baab12a38f4f854ee89, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:01.932 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:01.994 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.027 +02:00 [INF] Published NotificationCreated event for NotificationId=1cada2a2-ea25-401c-a59d-c9d2679959f8 +2024-05-17 18:55:02.066 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.067 +02:00 [INF] Handled a message: friend_request_created with ID: dd344d47900d4baab12a38f4f854ee89, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:02.067 +02:00 [INF] Received a message with ID: 'e29b158617144a4d95c5b415de8119a6', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964735, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.067 +02:00 [INF] Handling a message: friend_request_created with ID: e29b158617144a4d95c5b415de8119a6, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:02.099 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.166 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.200 +02:00 [INF] Published NotificationCreated event for NotificationId=f67929c3-4dad-41a0-bb8b-a178ea6394a3 +2024-05-17 18:55:02.230 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.231 +02:00 [INF] Handled a message: friend_request_created with ID: e29b158617144a4d95c5b415de8119a6, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 18:55:02.232 +02:00 [INF] Received a message with ID: '49afb24b5d494480ae72bff9962f9df7', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964735, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.233 +02:00 [INF] Handling a message: friend_request_created with ID: 49afb24b5d494480ae72bff9962f9df7, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.262 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.345 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.375 +02:00 [INF] Published NotificationCreated event for NotificationId=772f4925-fba6-414b-9979-0e552475cdd1 +2024-05-17 18:55:02.409 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.409 +02:00 [INF] Handled a message: friend_request_created with ID: 49afb24b5d494480ae72bff9962f9df7, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.412 +02:00 [INF] Received a message with ID: '6dedc65d14ce47af92c429c99ab9d6f4', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964737, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.414 +02:00 [INF] Handling a message: friend_request_created with ID: 6dedc65d14ce47af92c429c99ab9d6f4, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.443 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.516 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.551 +02:00 [INF] Published NotificationCreated event for NotificationId=68e6c7d5-3ede-426e-85fc-9103ec329778 +2024-05-17 18:55:02.585 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.585 +02:00 [INF] Handled a message: friend_request_created with ID: 6dedc65d14ce47af92c429c99ab9d6f4, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.586 +02:00 [INF] Received a message with ID: 'c407e1b94ff447d19d2e0840a0b7d398', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964739, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.586 +02:00 [INF] Handling a message: friend_request_created with ID: c407e1b94ff447d19d2e0840a0b7d398, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.616 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.689 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.724 +02:00 [INF] Published NotificationCreated event for NotificationId=bcf521c8-155f-4b63-a459-f7164611bb9f +2024-05-17 18:55:02.758 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.759 +02:00 [INF] Handled a message: friend_request_created with ID: c407e1b94ff447d19d2e0840a0b7d398, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.761 +02:00 [INF] Received a message with ID: '3ac5059d9c1d4edb97f7164a413f40b3', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964741, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.762 +02:00 [INF] Handling a message: friend_request_created with ID: 3ac5059d9c1d4edb97f7164a413f40b3, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.792 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.862 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:02.895 +02:00 [INF] Published NotificationCreated event for NotificationId=c47da4b2-0dd0-4958-b90f-ab4f12f48380 +2024-05-17 18:55:02.930 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:02.931 +02:00 [INF] Handled a message: friend_request_created with ID: 3ac5059d9c1d4edb97f7164a413f40b3, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 18:55:02.932 +02:00 [INF] Received a message with ID: 'dae6a5aa01b045d69dd93cdfc11cc8f1', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964741, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:02.932 +02:00 [INF] Handling a message: friend_request_created with ID: dae6a5aa01b045d69dd93cdfc11cc8f1, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:02.961 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.028 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.062 +02:00 [INF] Published NotificationCreated event for NotificationId=1e52254f-36cd-4d0c-9133-5cb93c38e1d4 +2024-05-17 18:55:03.092 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.092 +02:00 [INF] Handled a message: friend_request_created with ID: dae6a5aa01b045d69dd93cdfc11cc8f1, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.094 +02:00 [INF] Received a message with ID: '9606c124f8304a9180308f45ab0e61ca', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964743, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.095 +02:00 [INF] Handling a message: friend_request_created with ID: 9606c124f8304a9180308f45ab0e61ca, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.125 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.190 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.224 +02:00 [INF] Published NotificationCreated event for NotificationId=5f83f281-7f3c-4c7d-a7b5-9b60fb893c72 +2024-05-17 18:55:03.258 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.259 +02:00 [INF] Handled a message: friend_request_created with ID: 9606c124f8304a9180308f45ab0e61ca, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.261 +02:00 [INF] Received a message with ID: '3fa92a4019f54087988088c4c46b4fdf', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964745, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.263 +02:00 [INF] Handling a message: friend_request_created with ID: 3fa92a4019f54087988088c4c46b4fdf, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.296 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.362 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.394 +02:00 [INF] Published NotificationCreated event for NotificationId=86e0c176-4000-42ae-8174-a0df6e058d69 +2024-05-17 18:55:03.425 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.426 +02:00 [INF] Handled a message: friend_request_created with ID: 3fa92a4019f54087988088c4c46b4fdf, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.428 +02:00 [INF] Received a message with ID: 'e52243d30c114f2e90ad55eabdb83eea', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964747, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.429 +02:00 [INF] Handling a message: friend_request_created with ID: e52243d30c114f2e90ad55eabdb83eea, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.457 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.518 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.548 +02:00 [INF] Published NotificationCreated event for NotificationId=52746481-4d4b-4f1c-9df8-6d8d414f8b49 +2024-05-17 18:55:03.578 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.578 +02:00 [INF] Handled a message: friend_request_created with ID: e52243d30c114f2e90ad55eabdb83eea, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.579 +02:00 [INF] Received a message with ID: '4a5f5a66dbf241c38baf8bf65ef14c72', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964747, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.579 +02:00 [INF] Handling a message: friend_request_created with ID: 4a5f5a66dbf241c38baf8bf65ef14c72, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.605 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.669 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.709 +02:00 [INF] Published NotificationCreated event for NotificationId=a6d6290d-e807-49a9-b81f-66666bf80e6f +2024-05-17 18:55:03.740 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.740 +02:00 [INF] Handled a message: friend_request_created with ID: 4a5f5a66dbf241c38baf8bf65ef14c72, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.741 +02:00 [INF] Received a message with ID: 'e38b08b624614ae487f444191c8dad80', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964749, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.742 +02:00 [INF] Handling a message: friend_request_created with ID: e38b08b624614ae487f444191c8dad80, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.768 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.828 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.858 +02:00 [INF] Published NotificationCreated event for NotificationId=52055236-d24d-4652-847d-d49787979a07 +2024-05-17 18:55:03.892 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:03.892 +02:00 [INF] Handled a message: friend_request_created with ID: e38b08b624614ae487f444191c8dad80, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.893 +02:00 [INF] Received a message with ID: '94111ce30e58452c9bfaaaf91076e459', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964751, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:03.894 +02:00 [INF] Handling a message: friend_request_created with ID: 94111ce30e58452c9bfaaaf91076e459, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:03.934 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:03.996 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.026 +02:00 [INF] Published NotificationCreated event for NotificationId=92642511-3186-4e48-a276-7eed0b32fa94 +2024-05-17 18:55:04.058 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.059 +02:00 [INF] Handled a message: friend_request_created with ID: 94111ce30e58452c9bfaaaf91076e459, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.060 +02:00 [INF] Received a message with ID: '07b0856131784038b3057f427ebe983d', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964755, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.060 +02:00 [INF] Handling a message: friend_request_created with ID: 07b0856131784038b3057f427ebe983d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.087 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.149 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.181 +02:00 [INF] Published NotificationCreated event for NotificationId=e289fbe3-4491-4ec6-ac21-2bead3f2219b +2024-05-17 18:55:04.209 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.210 +02:00 [INF] Handled a message: friend_request_created with ID: 07b0856131784038b3057f427ebe983d, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.211 +02:00 [INF] Received a message with ID: '27ad341626b6416c85b58af30d95b663', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964755, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.211 +02:00 [INF] Handling a message: friend_request_created with ID: 27ad341626b6416c85b58af30d95b663, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.240 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.306 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.337 +02:00 [INF] Published NotificationCreated event for NotificationId=509f32cd-fdd5-45ae-805c-2533a1d3639d +2024-05-17 18:55:04.370 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.371 +02:00 [INF] Handled a message: friend_request_created with ID: 27ad341626b6416c85b58af30d95b663, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.371 +02:00 [INF] Received a message with ID: '9ca2f27b23474a7c8876b1f293b64df8', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964757, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.372 +02:00 [INF] Handling a message: friend_request_created with ID: 9ca2f27b23474a7c8876b1f293b64df8, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.401 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.464 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.496 +02:00 [INF] Published NotificationCreated event for NotificationId=68202735-cc3f-40d9-bd46-c1d8950e7798 +2024-05-17 18:55:04.529 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.533 +02:00 [INF] Handled a message: friend_request_created with ID: 9ca2f27b23474a7c8876b1f293b64df8, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.535 +02:00 [INF] Received a message with ID: '22befea8c13b4c14aa716fb1eccb2c09', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964759, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.536 +02:00 [INF] Handling a message: friend_request_created with ID: 22befea8c13b4c14aa716fb1eccb2c09, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.565 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.629 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.662 +02:00 [INF] Published NotificationCreated event for NotificationId=03d59509-444f-4fa6-b395-0361ba525b62 +2024-05-17 18:55:04.703 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.704 +02:00 [INF] Handled a message: friend_request_created with ID: 22befea8c13b4c14aa716fb1eccb2c09, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.704 +02:00 [INF] Received a message with ID: 'd41c9a920a4e4a1986fbd7d1647e166b', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964761, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.705 +02:00 [INF] Handling a message: friend_request_created with ID: d41c9a920a4e4a1986fbd7d1647e166b, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.732 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.899 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:04.931 +02:00 [INF] Published NotificationCreated event for NotificationId=36bb34a9-60fc-4e58-9732-2fdbccbc97b2 +2024-05-17 18:55:04.963 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:04.963 +02:00 [INF] Handled a message: friend_request_created with ID: d41c9a920a4e4a1986fbd7d1647e166b, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.966 +02:00 [INF] Received a message with ID: '6bacbe745cc54cd9aa2b02dec5802e9a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964761, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:04.967 +02:00 [INF] Handling a message: friend_request_created with ID: 6bacbe745cc54cd9aa2b02dec5802e9a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:04.995 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.059 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.090 +02:00 [INF] Published NotificationCreated event for NotificationId=96267870-92c4-45a3-8fa5-20e1d2c8500a +2024-05-17 18:55:05.120 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.121 +02:00 [INF] Handled a message: friend_request_created with ID: 6bacbe745cc54cd9aa2b02dec5802e9a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.124 +02:00 [INF] Received a message with ID: '654fa8dd0f7e491e9f94329dbffb3ebd', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964763, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.125 +02:00 [INF] Handling a message: friend_request_created with ID: 654fa8dd0f7e491e9f94329dbffb3ebd, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.152 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.213 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.242 +02:00 [INF] Published NotificationCreated event for NotificationId=c6e89de4-245e-44e0-98e8-1cf7d4205028 +2024-05-17 18:55:05.274 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.275 +02:00 [INF] Handled a message: friend_request_created with ID: 654fa8dd0f7e491e9f94329dbffb3ebd, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.275 +02:00 [INF] Received a message with ID: '13eb7bcff8154bd2a74ec6ed5b880467', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964765, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.276 +02:00 [INF] Handling a message: friend_request_created with ID: 13eb7bcff8154bd2a74ec6ed5b880467, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.305 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.365 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.403 +02:00 [INF] Published NotificationCreated event for NotificationId=4e813640-d3e2-4738-937c-a4f69b48824d +2024-05-17 18:55:05.435 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.436 +02:00 [INF] Handled a message: friend_request_created with ID: 13eb7bcff8154bd2a74ec6ed5b880467, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.439 +02:00 [INF] Received a message with ID: '37e3996c7e2c4e2b9d8739bd21ce234c', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964767, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.440 +02:00 [INF] Handling a message: friend_request_created with ID: 37e3996c7e2c4e2b9d8739bd21ce234c, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.470 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.536 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.570 +02:00 [INF] Published NotificationCreated event for NotificationId=be17ba7d-9741-4e4a-a607-1e8ad9a345cf +2024-05-17 18:55:05.602 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.602 +02:00 [INF] Handled a message: friend_request_created with ID: 37e3996c7e2c4e2b9d8739bd21ce234c, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 18:55:05.603 +02:00 [INF] Received a message with ID: '83c8bf170524416294c13f5eae352cb9', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964767, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.603 +02:00 [INF] Handling a message: friend_request_created with ID: 83c8bf170524416294c13f5eae352cb9, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:05.630 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.691 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.724 +02:00 [INF] Published NotificationCreated event for NotificationId=0580e3ae-cf76-4ae0-b187-4c0af2349ac0 +2024-05-17 18:55:05.758 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.759 +02:00 [INF] Handled a message: friend_request_created with ID: 83c8bf170524416294c13f5eae352cb9, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:05.763 +02:00 [INF] Received a message with ID: 'b538ad0150ce4e328cd506e38ca12c25', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964769, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.764 +02:00 [INF] Handling a message: friend_request_created with ID: b538ad0150ce4e328cd506e38ca12c25, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:05.799 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.865 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:05.899 +02:00 [INF] Published NotificationCreated event for NotificationId=0feca3a9-d032-40b9-b53b-a16d26b142e0 +2024-05-17 18:55:05.930 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:05.931 +02:00 [INF] Handled a message: friend_request_created with ID: b538ad0150ce4e328cd506e38ca12c25, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:05.932 +02:00 [INF] Received a message with ID: '4365c706070b41af9993452d79ac6dc3', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964771, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:05.932 +02:00 [INF] Handling a message: friend_request_created with ID: 4365c706070b41af9993452d79ac6dc3, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:05.959 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.020 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.053 +02:00 [INF] Published NotificationCreated event for NotificationId=16c6c971-bae3-4b6b-b656-641881623d57 +2024-05-17 18:55:06.082 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:06.082 +02:00 [INF] Handled a message: friend_request_created with ID: 4365c706070b41af9993452d79ac6dc3, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.083 +02:00 [INF] Received a message with ID: 'f1d954a99c094724a5f46bf2f1072d2f', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964773, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:06.083 +02:00 [INF] Handling a message: friend_request_created with ID: f1d954a99c094724a5f46bf2f1072d2f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.109 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.170 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.205 +02:00 [INF] Published NotificationCreated event for NotificationId=3a26f5e5-2a12-4dd2-9817-933d5e4b85be +2024-05-17 18:55:06.234 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:06.234 +02:00 [INF] Handled a message: friend_request_created with ID: f1d954a99c094724a5f46bf2f1072d2f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.236 +02:00 [INF] Received a message with ID: 'aa177a8d567f4022b29afebb77ece31e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964773, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:06.236 +02:00 [INF] Handling a message: friend_request_created with ID: aa177a8d567f4022b29afebb77ece31e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.264 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.328 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.359 +02:00 [INF] Published NotificationCreated event for NotificationId=58a10456-588a-4f38-bafd-240228fd284f +2024-05-17 18:55:06.389 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:06.389 +02:00 [INF] Handled a message: friend_request_created with ID: aa177a8d567f4022b29afebb77ece31e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.390 +02:00 [INF] Received a message with ID: '1199c57d68f74ee0b6d9d3db96195686', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964775, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:06.390 +02:00 [INF] Handling a message: friend_request_created with ID: 1199c57d68f74ee0b6d9d3db96195686, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.417 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.477 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.511 +02:00 [INF] Published NotificationCreated event for NotificationId=edf7b8e1-32af-4918-abc7-c3b38134afda +2024-05-17 18:55:06.542 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:06.542 +02:00 [INF] Handled a message: friend_request_created with ID: 1199c57d68f74ee0b6d9d3db96195686, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.543 +02:00 [INF] Received a message with ID: '621fd4b4063641c6bd24cc77d4f397be', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964777, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:06.543 +02:00 [INF] Handling a message: friend_request_created with ID: 621fd4b4063641c6bd24cc77d4f397be, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.571 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.871 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:06.905 +02:00 [INF] Published NotificationCreated event for NotificationId=68cf4dd0-cf6f-4edc-8f0b-9fbf942dd039 +2024-05-17 18:55:06.934 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:06.935 +02:00 [INF] Handled a message: friend_request_created with ID: 621fd4b4063641c6bd24cc77d4f397be, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.935 +02:00 [INF] Received a message with ID: '5b2496c7ca1b4500a5db1198ca05d648', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964779, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:06.936 +02:00 [INF] Handling a message: friend_request_created with ID: 5b2496c7ca1b4500a5db1198ca05d648, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:06.964 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.046 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.081 +02:00 [INF] Published NotificationCreated event for NotificationId=1cca863d-86b3-49ab-bf5f-7b3acaab9ea5 +2024-05-17 18:55:07.115 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.115 +02:00 [INF] Handled a message: friend_request_created with ID: 5b2496c7ca1b4500a5db1198ca05d648, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.116 +02:00 [INF] Received a message with ID: 'bacb2b48f2ab46fab6c78ba5db5bf4de', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964779, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.116 +02:00 [INF] Handling a message: friend_request_created with ID: bacb2b48f2ab46fab6c78ba5db5bf4de, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.146 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.212 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.250 +02:00 [INF] Published NotificationCreated event for NotificationId=00ce8e3d-5d14-43ab-843a-f2069eb5ce74 +2024-05-17 18:55:07.283 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.284 +02:00 [INF] Handled a message: friend_request_created with ID: bacb2b48f2ab46fab6c78ba5db5bf4de, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.284 +02:00 [INF] Received a message with ID: 'f0d80cae036e450493f4894a19fe785b', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964781, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.285 +02:00 [INF] Handling a message: friend_request_created with ID: f0d80cae036e450493f4894a19fe785b, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.313 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.375 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.410 +02:00 [INF] Published NotificationCreated event for NotificationId=d6d741df-35d2-4802-8276-3a1b2b51f082 +2024-05-17 18:55:07.441 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.441 +02:00 [INF] Handled a message: friend_request_created with ID: f0d80cae036e450493f4894a19fe785b, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.442 +02:00 [INF] Received a message with ID: 'd39e6d9c73a74eaaabfa5263c13a6701', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964783, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.442 +02:00 [INF] Handling a message: friend_request_created with ID: d39e6d9c73a74eaaabfa5263c13a6701, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.470 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.534 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.568 +02:00 [INF] Published NotificationCreated event for NotificationId=71792cc8-f6cd-4a16-ba4d-8eebf5a8e6b2 +2024-05-17 18:55:07.600 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.601 +02:00 [INF] Handled a message: friend_request_created with ID: d39e6d9c73a74eaaabfa5263c13a6701, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.601 +02:00 [INF] Received a message with ID: '470f25b4c4ac46c4a855218fcea3abe4', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964787, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.601 +02:00 [INF] Handling a message: friend_request_created with ID: 470f25b4c4ac46c4a855218fcea3abe4, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.631 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.705 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.739 +02:00 [INF] Published NotificationCreated event for NotificationId=2ce9b484-9c4d-43de-9801-28f8fd0b1966 +2024-05-17 18:55:07.778 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.779 +02:00 [INF] Handled a message: friend_request_created with ID: 470f25b4c4ac46c4a855218fcea3abe4, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.780 +02:00 [INF] Received a message with ID: '523a92f55c0e4be48f74140c8d5a574f', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964787, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.780 +02:00 [INF] Handling a message: friend_request_created with ID: 523a92f55c0e4be48f74140c8d5a574f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.808 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.878 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:07.907 +02:00 [INF] Published NotificationCreated event for NotificationId=f4556759-eded-4150-ba36-3f0faf728e3c +2024-05-17 18:55:07.936 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:07.937 +02:00 [INF] Handled a message: friend_request_created with ID: 523a92f55c0e4be48f74140c8d5a574f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.937 +02:00 [INF] Received a message with ID: '5aae26de0e414cbd933910bd980b5472', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964789, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:07.937 +02:00 [INF] Handling a message: friend_request_created with ID: 5aae26de0e414cbd933910bd980b5472, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:07.964 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.025 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.064 +02:00 [INF] Published NotificationCreated event for NotificationId=96fa1f67-154c-4e4a-9719-2a5dcf88623e +2024-05-17 18:55:08.100 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:08.100 +02:00 [INF] Handled a message: friend_request_created with ID: 5aae26de0e414cbd933910bd980b5472, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:08.103 +02:00 [INF] Received a message with ID: '9ae44ebc32194dcca13a4f18c2384ec9', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964899, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:08.104 +02:00 [INF] Handling a message: friend_request_created with ID: 9ae44ebc32194dcca13a4f18c2384ec9, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:08.139 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.202 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.233 +02:00 [INF] Published NotificationCreated event for NotificationId=975e2423-dedd-44e6-8ba7-c790e2a4cf62 +2024-05-17 18:55:08.263 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:08.265 +02:00 [INF] Handled a message: friend_request_created with ID: 9ae44ebc32194dcca13a4f18c2384ec9, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:08.266 +02:00 [INF] Received a message with ID: '6a482606062a4fe99df1b6f4909031ec', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964899, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:08.267 +02:00 [INF] Handling a message: friend_request_created with ID: 6a482606062a4fe99df1b6f4909031ec, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:08.294 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.355 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.384 +02:00 [INF] Published NotificationCreated event for NotificationId=cb1b889d-6688-4f0a-b5c5-b9ffcd007f49 +2024-05-17 18:55:08.415 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:08.415 +02:00 [INF] Handled a message: friend_request_created with ID: 6a482606062a4fe99df1b6f4909031ec, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 18:55:08.416 +02:00 [INF] Received a message with ID: '703069dcd58a433e92ce0c8475ab6f85', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:08.417 +02:00 [INF] Handling a message: friend_request_created with ID: 703069dcd58a433e92ce0c8475ab6f85, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:08.444 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.506 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.536 +02:00 [INF] Published NotificationCreated event for NotificationId=e163747c-d994-44bd-88ae-40a561e98874 +2024-05-17 18:55:08.567 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:08.568 +02:00 [INF] Handled a message: friend_request_created with ID: 703069dcd58a433e92ce0c8475ab6f85, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:08.571 +02:00 [INF] Received a message with ID: 'cb3b0d1b96d642d3adfec75bd9803849', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 18:55:08.572 +02:00 [INF] Handling a message: friend_request_created with ID: cb3b0d1b96d642d3adfec75bd9803849, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:08.602 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.664 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 18:55:08.695 +02:00 [INF] Published NotificationCreated event for NotificationId=d1332fb1-5bef-4553-bb18-25a6b81c7838 +2024-05-17 18:55:08.720 +02:00 [INF] Deregistering a service [id: notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a] from Consul... +2024-05-17 18:55:08.721 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a" +2024-05-17 18:55:08.721 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a +2024-05-17 18:55:08.721 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a +2024-05-17 18:55:08.722 +02:00 [INF] Received HTTP response headers after 1.1615ms - 200 +2024-05-17 18:55:08.723 +02:00 [INF] End processing HTTP request after 1.5094ms - 200 +2024-05-17 18:55:08.723 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 18:55:08.723 +02:00 [INF] Deregistered a service [id: notifications-service:c478cce64cdb4fdfbeb822380dc8fd5a] from Consul. +2024-05-17 18:55:08.724 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 18:55:08.724 +02:00 [INF] Handled a message: friend_request_created with ID: cb3b0d1b96d642d3adfec75bd9803849, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 18:55:08.725 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass25_0.<b__0>d.MoveNext() +2024-05-17 19:04:34.716 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:04:34.768 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:04:34.820 +02:00 [INF] Registering a service [id: notifications-service:df14af693c4f407b802829d79cffc543] in Consul... +2024-05-17 19:04:34.840 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:04:34.843 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:04:34.843 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:04:34.850 +02:00 [INF] Received HTTP response headers after 4.1424ms - 200 +2024-05-17 19:04:34.851 +02:00 [INF] End processing HTTP request after 8.6455ms - 200 +2024-05-17 19:04:34.854 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:04:34.855 +02:00 [INF] Registered a service [id: notifications-service:df14af693c4f407b802829d79cffc543] in Consul. +2024-05-17 19:04:34.861 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:04:34.872 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:04:34.874 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:04:34.876 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 19:04:34.880 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:04:34.884 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:04:34.888 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:04:34.889 +02:00 [INF] Received a message with ID: 'ccf00ba844104da8b2bd548b02408c57', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:34.892 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:04:34.895 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:04:34.914 +02:00 [INF] Handling a message: friend_request_created with ID: ccf00ba844104da8b2bd548b02408c57, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 19:04:35.290 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.427 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.459 +02:00 [INF] Published NotificationCreated event for NotificationId=c7a0bf1f-34c9-44b5-9024-f6e7c1d9bddf +2024-05-17 19:04:35.565 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:35.573 +02:00 [INF] Handled a message: friend_request_created with ID: ccf00ba844104da8b2bd548b02408c57, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 19:04:35.595 +02:00 [INF] Received a message with ID: '11fd1ba669c247758ef7c3135dabda82', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:35.600 +02:00 [INF] Handling a message: friend_request_created with ID: 11fd1ba669c247758ef7c3135dabda82, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 19:04:35.640 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.700 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.731 +02:00 [INF] Published NotificationCreated event for NotificationId=082f39b6-5df6-486f-8351-d5b1fb4cf2ab +2024-05-17 19:04:35.761 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:35.761 +02:00 [INF] Handled a message: friend_request_created with ID: 11fd1ba669c247758ef7c3135dabda82, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 19:04:35.762 +02:00 [INF] Received a message with ID: '6f88d8a692b64808978e787c7fd781bf', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:35.763 +02:00 [INF] Handling a message: friend_request_created with ID: 6f88d8a692b64808978e787c7fd781bf, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:35.791 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.851 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:35.882 +02:00 [INF] Published NotificationCreated event for NotificationId=e4393dbe-98d2-45e9-b993-4498d3fa4cdd +2024-05-17 19:04:35.915 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:35.915 +02:00 [INF] Handled a message: friend_request_created with ID: 6f88d8a692b64808978e787c7fd781bf, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:35.918 +02:00 [INF] Received a message with ID: 'c3c0b216bb9344628324477b80def2d9', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:35.919 +02:00 [INF] Handling a message: friend_request_created with ID: c3c0b216bb9344628324477b80def2d9, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:35.946 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.014 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.045 +02:00 [INF] Published NotificationCreated event for NotificationId=07bbeac2-908c-434a-9bab-b8875fa8da8d +2024-05-17 19:04:36.079 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:36.080 +02:00 [INF] Handled a message: friend_request_created with ID: c3c0b216bb9344628324477b80def2d9, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:36.087 +02:00 [INF] Received a message with ID: '61b10d637fbe4bc183f8901dac5e35e1', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964901, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:36.088 +02:00 [INF] Handling a message: friend_request_created with ID: 61b10d637fbe4bc183f8901dac5e35e1, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:36.132 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.206 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.238 +02:00 [INF] Published NotificationCreated event for NotificationId=67a46aa4-3d13-46dd-906a-393bcfd96ebc +2024-05-17 19:04:36.279 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:36.280 +02:00 [INF] Handled a message: friend_request_created with ID: 61b10d637fbe4bc183f8901dac5e35e1, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:36.283 +02:00 [INF] Received a message with ID: 'bb2672c71a4f4154907b1b114a6bef5a', Correlation ID: 'a525fb70626c4a9885d86ca292cfa54d', timestamp: 1715964902, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:36.285 +02:00 [INF] Handling a message: friend_request_created with ID: bb2672c71a4f4154907b1b114a6bef5a, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:36.319 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.386 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.417 +02:00 [INF] Published NotificationCreated event for NotificationId=986902e3-87ac-4d79-a4d5-c9b65395cee1 +2024-05-17 19:04:36.450 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:36.450 +02:00 [INF] Handled a message: friend_request_created with ID: bb2672c71a4f4154907b1b114a6bef5a, Correlation ID: a525fb70626c4a9885d86ca292cfa54d, retry: 0 +2024-05-17 19:04:36.451 +02:00 [INF] Received a message with ID: '11db45f554d14e0589d30b699e8fe78d', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964902, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:36.452 +02:00 [INF] Handling a message: friend_request_created with ID: 11db45f554d14e0589d30b699e8fe78d, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:04:36.479 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.553 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.586 +02:00 [INF] Published NotificationCreated event for NotificationId=f2067275-d525-4fa9-aee1-d99d52ae477a +2024-05-17 19:04:36.620 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:36.620 +02:00 [INF] Handled a message: friend_request_created with ID: 11db45f554d14e0589d30b699e8fe78d, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:04:36.623 +02:00 [INF] Received a message with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964902, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:04:36.625 +02:00 [INF] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:04:36.656 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.723 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:04:36.728 +02:00 [INF] Deregistering a service [id: notifications-service:df14af693c4f407b802829d79cffc543] from Consul... +2024-05-17 19:04:36.736 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:df14af693c4f407b802829d79cffc543" +2024-05-17 19:04:36.737 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:df14af693c4f407b802829d79cffc543 +2024-05-17 19:04:36.737 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:df14af693c4f407b802829d79cffc543 +2024-05-17 19:04:36.756 +02:00 [INF] Published NotificationCreated event for NotificationId=c3fde48d-347b-43b7-b9ce-aa9fff4b0595 +2024-05-17 19:04:36.760 +02:00 [INF] Received HTTP response headers after 21.9521ms - 200 +2024-05-17 19:04:36.760 +02:00 [INF] End processing HTTP request after 23.6194ms - 200 +2024-05-17 19:04:36.761 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:04:36.761 +02:00 [INF] Deregistered a service [id: notifications-service:df14af693c4f407b802829d79cffc543] from Consul. +2024-05-17 19:04:36.787 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:04:36.787 +02:00 [ERR] Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. + at RabbitMQ.Client.Impl.AutorecoveringModel.BasicAck(UInt64 deliveryTag, Boolean multiple) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:04:36.796 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 1/3... +2024-05-17 19:04:38.801 +02:00 [INF] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 1 +2024-05-17 19:04:38.803 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:04:38.806 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 2/3... +2024-05-17 19:04:40.807 +02:00 [INF] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 2 +2024-05-17 19:04:40.809 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:04:40.810 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 3/3... +2024-05-17 19:04:42.812 +02:00 [INF] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 3 +2024-05-17 19:04:42.813 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:04:42.815 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 4/3... +2024-05-17 19:04:42.816 +02:00 [ERR] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a failed +2024-05-17 19:05:42.723 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:05:42.763 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:05:42.845 +02:00 [INF] Registering a service [id: notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44] in Consul... +2024-05-17 19:05:42.864 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:05:42.869 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:05:42.870 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:05:42.876 +02:00 [INF] Received HTTP response headers after 4.5256ms - 200 +2024-05-17 19:05:42.877 +02:00 [INF] End processing HTTP request after 9.7399ms - 200 +2024-05-17 19:05:42.881 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:05:42.882 +02:00 [INF] Registered a service [id: notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44] in Consul. +2024-05-17 19:05:42.888 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:05:42.898 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:05:42.900 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:05:42.902 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 19:05:42.907 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:05:42.910 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:05:42.914 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:05:42.916 +02:00 [INF] Received a message with ID: '9993f3713cc54e74b5343e9ca204cd28', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964902, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:05:42.919 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:05:42.921 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:05:42.945 +02:00 [INF] Handling a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.051 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:05:43.053 +02:00 [INF] Handled a message: friend_request_created with ID: 9993f3713cc54e74b5343e9ca204cd28, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.058 +02:00 [INF] Received a message with ID: 'ed02b9220eee4895b91f6f71f6bca129', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:05:43.059 +02:00 [INF] Handling a message: friend_request_created with ID: ed02b9220eee4895b91f6f71f6bca129, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.088 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.210 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.253 +02:00 [INF] Published NotificationCreated event for NotificationId=21368391-b04c-4e02-b632-c94a7a638f94 +2024-05-17 19:05:43.284 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:05:43.284 +02:00 [INF] Handled a message: friend_request_created with ID: ed02b9220eee4895b91f6f71f6bca129, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.285 +02:00 [INF] Received a message with ID: 'a679e87d1b1246b3b91f437996aebd6f', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:05:43.286 +02:00 [INF] Handling a message: friend_request_created with ID: a679e87d1b1246b3b91f437996aebd6f, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.319 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.384 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.418 +02:00 [INF] Published NotificationCreated event for NotificationId=d954b877-0632-40cd-bf66-75a64fd6becf +2024-05-17 19:05:43.450 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:05:43.451 +02:00 [INF] Handled a message: friend_request_created with ID: a679e87d1b1246b3b91f437996aebd6f, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.452 +02:00 [INF] Received a message with ID: 'd6466743ce28407082317c5909204cb9', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:05:43.453 +02:00 [INF] Handling a message: friend_request_created with ID: d6466743ce28407082317c5909204cb9, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.480 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.542 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.574 +02:00 [INF] Published NotificationCreated event for NotificationId=e7be0da1-3eea-495f-915a-ca67b768759f +2024-05-17 19:05:43.636 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:05:43.637 +02:00 [INF] Handled a message: friend_request_created with ID: d6466743ce28407082317c5909204cb9, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.641 +02:00 [INF] Received a message with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:05:43.642 +02:00 [INF] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:05:43.671 +02:00 [INF] Deregistering a service [id: notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44] from Consul... +2024-05-17 19:05:43.672 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.673 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44" +2024-05-17 19:05:43.675 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44 +2024-05-17 19:05:43.675 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44 +2024-05-17 19:05:43.700 +02:00 [INF] Received HTTP response headers after 24.1889ms - 200 +2024-05-17 19:05:43.701 +02:00 [INF] End processing HTTP request after 26.402ms - 200 +2024-05-17 19:05:43.702 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:05:43.703 +02:00 [INF] Deregistered a service [id: notifications-service:3cecd314cc3a4c2d959e77cb6b7fea44] from Consul. +2024-05-17 19:05:43.739 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:05:43.769 +02:00 [INF] Published NotificationCreated event for NotificationId=3a966042-1511-4a2a-947f-967ae3fc4615 +2024-05-17 19:05:43.800 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:05:43.800 +02:00 [ERR] Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. + at RabbitMQ.Client.Impl.AutorecoveringModel.BasicAck(UInt64 deliveryTag, Boolean multiple) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:05:43.808 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 1/3... +2024-05-17 19:05:45.813 +02:00 [INF] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 1 +2024-05-17 19:05:45.814 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:05:45.814 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 2/3... +2024-05-17 19:05:47.815 +02:00 [INF] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 2 +2024-05-17 19:05:47.817 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:05:47.818 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 3/3... +2024-05-17 19:05:49.819 +02:00 [INF] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 3 +2024-05-17 19:05:49.821 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:05:49.823 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', retry 4/3... +2024-05-17 19:05:49.823 +02:00 [ERR] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a failed +2024-05-17 19:07:06.697 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:07:06.738 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:07:06.811 +02:00 [INF] Registering a service [id: notifications-service:78f1e273f77745a7989b0489f6aeeaa7] in Consul... +2024-05-17 19:07:06.829 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:07:06.833 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:07:06.834 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:07:06.842 +02:00 [INF] Received HTTP response headers after 5.9052ms - 200 +2024-05-17 19:07:06.843 +02:00 [INF] End processing HTTP request after 10.7724ms - 200 +2024-05-17 19:07:06.846 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:07:06.846 +02:00 [INF] Registered a service [id: notifications-service:78f1e273f77745a7989b0489f6aeeaa7] in Consul. +2024-05-17 19:07:06.855 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:07:06.864 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:07:06.867 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:07:06.871 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 19:07:06.875 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:07:06.878 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:07:06.880 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:07:06.882 +02:00 [INF] Received a message with ID: '16510e8a212e450c86026d91bcb99349', Correlation ID: '91e250babeee40d8b46cd9700a69d55a', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:06.884 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:07:06.890 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:07:06.910 +02:00 [INF] Handling a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:07:07.025 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.027 +02:00 [INF] Handled a message: friend_request_created with ID: 16510e8a212e450c86026d91bcb99349, Correlation ID: 91e250babeee40d8b46cd9700a69d55a, retry: 0 +2024-05-17 19:07:07.032 +02:00 [INF] Received a message with ID: 'ff76d032804a4edebf9788a6a437817c', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.033 +02:00 [INF] Handling a message: friend_request_created with ID: ff76d032804a4edebf9788a6a437817c, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.069 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.199 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.228 +02:00 [INF] Published NotificationCreated event for NotificationId=db6111b8-6bb7-4d46-a3ce-0e5dae266e47 +2024-05-17 19:07:07.264 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.264 +02:00 [INF] Handled a message: friend_request_created with ID: ff76d032804a4edebf9788a6a437817c, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.269 +02:00 [INF] Received a message with ID: '333d309942de47fc83ce27a5735093f0', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.272 +02:00 [INF] Handling a message: friend_request_created with ID: 333d309942de47fc83ce27a5735093f0, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.309 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.377 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.407 +02:00 [INF] Published NotificationCreated event for NotificationId=15a52133-36f4-4d71-8e5f-d750eaa2ebbd +2024-05-17 19:07:07.437 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.437 +02:00 [INF] Handled a message: friend_request_created with ID: 333d309942de47fc83ce27a5735093f0, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.438 +02:00 [INF] Received a message with ID: 'c0925ae0237a4b05810d23844b4ea73e', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964903, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.439 +02:00 [INF] Handling a message: friend_request_created with ID: c0925ae0237a4b05810d23844b4ea73e, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.467 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.530 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.565 +02:00 [INF] Published NotificationCreated event for NotificationId=284201b2-cc78-4244-a10c-3bf5934c6752 +2024-05-17 19:07:07.597 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.597 +02:00 [INF] Handled a message: friend_request_created with ID: c0925ae0237a4b05810d23844b4ea73e, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.598 +02:00 [INF] Received a message with ID: 'c5d244b2867d42a6afff3bb122dc8fa8', Correlation ID: '86cfb2e05aa44982849cb36af13ebfa0', timestamp: 1715964904, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.599 +02:00 [INF] Handling a message: friend_request_created with ID: c5d244b2867d42a6afff3bb122dc8fa8, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.627 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.692 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.721 +02:00 [INF] Published NotificationCreated event for NotificationId=7a79a57c-0f4b-4ea0-bdb2-da4bbadf806b +2024-05-17 19:07:07.753 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.753 +02:00 [INF] Handled a message: friend_request_created with ID: c5d244b2867d42a6afff3bb122dc8fa8, Correlation ID: 86cfb2e05aa44982849cb36af13ebfa0, retry: 0 +2024-05-17 19:07:07.754 +02:00 [INF] Received a message with ID: '4b12e72706b04bccba3003eb8456495f', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964904, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.755 +02:00 [INF] Handling a message: friend_request_created with ID: 4b12e72706b04bccba3003eb8456495f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:07.781 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.853 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:07.887 +02:00 [INF] Published NotificationCreated event for NotificationId=66bdf5e6-b723-4c12-9ff0-47d715d0de4c +2024-05-17 19:07:07.916 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:07.917 +02:00 [INF] Handled a message: friend_request_created with ID: 4b12e72706b04bccba3003eb8456495f, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:07.918 +02:00 [INF] Received a message with ID: '57cfae99b0864f3c9df8d8cc886cfda9', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964904, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:07.918 +02:00 [INF] Handling a message: friend_request_created with ID: 57cfae99b0864f3c9df8d8cc886cfda9, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:07.945 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.005 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.036 +02:00 [INF] Published NotificationCreated event for NotificationId=7f68fa74-d64c-4929-b3d0-0ad7f660c714 +2024-05-17 19:07:08.065 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:08.066 +02:00 [INF] Handled a message: friend_request_created with ID: 57cfae99b0864f3c9df8d8cc886cfda9, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.067 +02:00 [INF] Received a message with ID: 'cdff6569bd3247ff897632c40894cd91', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964904, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:08.067 +02:00 [INF] Handling a message: friend_request_created with ID: cdff6569bd3247ff897632c40894cd91, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.094 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.158 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.198 +02:00 [INF] Published NotificationCreated event for NotificationId=907542e0-ad99-46d2-bb37-ddde7b54274d +2024-05-17 19:07:08.229 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:08.230 +02:00 [INF] Handled a message: friend_request_created with ID: cdff6569bd3247ff897632c40894cd91, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.232 +02:00 [INF] Received a message with ID: '76f2218891fa44b8ae8ae680d497f758', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964904, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:08.234 +02:00 [INF] Handling a message: friend_request_created with ID: 76f2218891fa44b8ae8ae680d497f758, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.263 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.323 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.352 +02:00 [INF] Published NotificationCreated event for NotificationId=f2a63f7b-ef03-469c-ba9d-47151a775ed8 +2024-05-17 19:07:08.381 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:08.381 +02:00 [INF] Handled a message: friend_request_created with ID: 76f2218891fa44b8ae8ae680d497f758, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.382 +02:00 [INF] Received a message with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:08.382 +02:00 [INF] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:08.410 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.470 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:08.500 +02:00 [INF] Published NotificationCreated event for NotificationId=66a4056b-20de-4563-8428-b016b5b04d68 +2024-05-17 19:07:08.503 +02:00 [INF] Deregistering a service [id: notifications-service:78f1e273f77745a7989b0489f6aeeaa7] from Consul... +2024-05-17 19:07:08.504 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:78f1e273f77745a7989b0489f6aeeaa7" +2024-05-17 19:07:08.504 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:78f1e273f77745a7989b0489f6aeeaa7 +2024-05-17 19:07:08.504 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:78f1e273f77745a7989b0489f6aeeaa7 +2024-05-17 19:07:08.510 +02:00 [INF] Received HTTP response headers after 5.7769ms - 200 +2024-05-17 19:07:08.510 +02:00 [INF] End processing HTTP request after 6.3743ms - 200 +2024-05-17 19:07:08.511 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:07:08.511 +02:00 [INF] Deregistered a service [id: notifications-service:78f1e273f77745a7989b0489f6aeeaa7] from Consul. +2024-05-17 19:07:08.529 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:08.530 +02:00 [ERR] Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. + at RabbitMQ.Client.Impl.AutorecoveringModel.BasicAck(UInt64 deliveryTag, Boolean multiple) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:07:08.539 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 19:07:10.540 +02:00 [INF] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 19:07:10.542 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:07:10.543 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 19:07:12.543 +02:00 [INF] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 19:07:12.545 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:07:12.546 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 19:07:14.550 +02:00 [INF] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 19:07:14.551 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:07:14.551 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 19:07:14.551 +02:00 [ERR] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 19:07:59.287 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:07:59.329 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:07:59.385 +02:00 [INF] Registering a service [id: notifications-service:ac1195794399454293d8b4a94ce9aaf8] in Consul... +2024-05-17 19:07:59.407 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:07:59.412 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:07:59.412 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:07:59.419 +02:00 [INF] Received HTTP response headers after 4.4402ms - 200 +2024-05-17 19:07:59.421 +02:00 [INF] End processing HTTP request after 9.8921ms - 200 +2024-05-17 19:07:59.425 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:07:59.425 +02:00 [INF] Registered a service [id: notifications-service:ac1195794399454293d8b4a94ce9aaf8] in Consul. +2024-05-17 19:07:59.431 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:07:59.442 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:07:59.444 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:07:59.446 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 19:07:59.452 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:07:59.456 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:07:59.459 +02:00 [INF] Received a message with ID: '932d69a4cf2947288cb03bc9bb3c38aa', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:59.460 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:07:59.462 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:07:59.465 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:07:59.484 +02:00 [INF] Handling a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:59.594 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:59.596 +02:00 [INF] Handled a message: friend_request_created with ID: 932d69a4cf2947288cb03bc9bb3c38aa, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:59.605 +02:00 [INF] Received a message with ID: '013cd823d6af41489270d8afbe6eda00', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:59.607 +02:00 [INF] Handling a message: friend_request_created with ID: 013cd823d6af41489270d8afbe6eda00, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:59.639 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:59.781 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:59.815 +02:00 [INF] Published NotificationCreated event for NotificationId=67b7c785-33eb-49d3-ad04-7609bafab2b0 +2024-05-17 19:07:59.850 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:07:59.850 +02:00 [INF] Handled a message: friend_request_created with ID: 013cd823d6af41489270d8afbe6eda00, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:59.852 +02:00 [INF] Received a message with ID: 'd762877cca6f425c987dbb245ef1db03', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:07:59.853 +02:00 [INF] Handling a message: friend_request_created with ID: d762877cca6f425c987dbb245ef1db03, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:07:59.883 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:59.944 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:07:59.979 +02:00 [INF] Published NotificationCreated event for NotificationId=4f81abc1-22ac-4541-bfd9-ad946522c90c +2024-05-17 19:08:00.008 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:00.008 +02:00 [INF] Handled a message: friend_request_created with ID: d762877cca6f425c987dbb245ef1db03, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:00.010 +02:00 [INF] Received a message with ID: '214754b6c8044792b3e3d01402e97990', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:00.010 +02:00 [INF] Handling a message: friend_request_created with ID: 214754b6c8044792b3e3d01402e97990, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:00.038 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:00.102 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:00.140 +02:00 [INF] Published NotificationCreated event for NotificationId=c71d2256-c1b9-4ad7-9fe8-93a25af774f7 +2024-05-17 19:08:00.171 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:00.172 +02:00 [INF] Handled a message: friend_request_created with ID: 214754b6c8044792b3e3d01402e97990, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:00.173 +02:00 [INF] Received a message with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:00.173 +02:00 [INF] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:00.204 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:00.272 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:00.300 +02:00 [INF] Deregistering a service [id: notifications-service:ac1195794399454293d8b4a94ce9aaf8] from Consul... +2024-05-17 19:08:00.302 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ac1195794399454293d8b4a94ce9aaf8" +2024-05-17 19:08:00.302 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ac1195794399454293d8b4a94ce9aaf8 +2024-05-17 19:08:00.303 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ac1195794399454293d8b4a94ce9aaf8 +2024-05-17 19:08:00.305 +02:00 [INF] Published NotificationCreated event for NotificationId=2854d0ca-9c7d-4eb2-b15f-6323b163e9ac +2024-05-17 19:08:00.310 +02:00 [INF] Received HTTP response headers after 6.8709ms - 200 +2024-05-17 19:08:00.310 +02:00 [INF] End processing HTTP request after 7.652ms - 200 +2024-05-17 19:08:00.310 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:08:00.311 +02:00 [INF] Deregistered a service [id: notifications-service:ac1195794399454293d8b4a94ce9aaf8] from Consul. +2024-05-17 19:08:00.336 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:00.337 +02:00 [ERR] Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. + at RabbitMQ.Client.Impl.AutorecoveringModel.BasicAck(UInt64 deliveryTag, Boolean multiple) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:08:00.346 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 19:08:02.350 +02:00 [INF] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 19:08:02.352 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:08:02.355 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 19:08:04.356 +02:00 [INF] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 19:08:04.357 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:08:04.357 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 19:08:06.357 +02:00 [INF] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 19:08:06.357 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:08:06.358 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 19:08:06.358 +02:00 [ERR] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 19:08:17.155 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:08:17.197 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:08:17.255 +02:00 [INF] Registering a service [id: notifications-service:93e6bad6feb94254b2f3d7596f1e38ca] in Consul... +2024-05-17 19:08:17.276 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:08:17.281 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:08:17.282 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:08:17.288 +02:00 [INF] Received HTTP response headers after 4.1886ms - 200 +2024-05-17 19:08:17.289 +02:00 [INF] End processing HTTP request after 9.0363ms - 200 +2024-05-17 19:08:17.293 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:08:17.294 +02:00 [INF] Registered a service [id: notifications-service:93e6bad6feb94254b2f3d7596f1e38ca] in Consul. +2024-05-17 19:08:17.300 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:08:17.310 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:08:17.317 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:08:17.319 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 19:08:17.324 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:08:17.331 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:08:17.332 +02:00 [INF] Received a message with ID: '85f8f76aab184b67ba33ffa4b947848a', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:17.334 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:08:17.336 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:08:17.338 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:08:17.353 +02:00 [INF] Handling a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.000 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:18.004 +02:00 [INF] Handled a message: friend_request_created with ID: 85f8f76aab184b67ba33ffa4b947848a, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.015 +02:00 [INF] Received a message with ID: '3a9dccdd276148c5b8e08852e71083b9', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:18.016 +02:00 [INF] Handling a message: friend_request_created with ID: 3a9dccdd276148c5b8e08852e71083b9, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.056 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.182 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.231 +02:00 [INF] Published NotificationCreated event for NotificationId=2d2c978a-c9f2-43d6-ad72-e25a8f8d0382 +2024-05-17 19:08:18.281 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:18.282 +02:00 [INF] Handled a message: friend_request_created with ID: 3a9dccdd276148c5b8e08852e71083b9, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.284 +02:00 [INF] Received a message with ID: '9343399b40b243c58d48ea920dc5c990', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964905, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:18.286 +02:00 [INF] Handling a message: friend_request_created with ID: 9343399b40b243c58d48ea920dc5c990, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.332 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.400 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.432 +02:00 [INF] Published NotificationCreated event for NotificationId=00386107-bf8e-4c13-900f-764e2b19110b +2024-05-17 19:08:18.466 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:18.468 +02:00 [INF] Handled a message: friend_request_created with ID: 9343399b40b243c58d48ea920dc5c990, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.472 +02:00 [INF] Received a message with ID: 'fd3287c347b7479e872affae9ed6fda1', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964906, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:18.473 +02:00 [INF] Handling a message: friend_request_created with ID: fd3287c347b7479e872affae9ed6fda1, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.504 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.581 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.622 +02:00 [INF] Published NotificationCreated event for NotificationId=2bbfac76-17ed-4508-b4d8-c798280542f8 +2024-05-17 19:08:18.659 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:18.659 +02:00 [INF] Handled a message: friend_request_created with ID: fd3287c347b7479e872affae9ed6fda1, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.662 +02:00 [INF] Received a message with ID: '36d53818ca924b79b2e709242dc283ae', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964906, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:18.663 +02:00 [INF] Handling a message: friend_request_created with ID: 36d53818ca924b79b2e709242dc283ae, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.692 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.755 +02:00 [INF] Stored new friend event and notification for UserId=00000000-0000-0000-0000-000000000000 +2024-05-17 19:08:18.774 +02:00 [INF] Deregistering a service [id: notifications-service:93e6bad6feb94254b2f3d7596f1e38ca] from Consul... +2024-05-17 19:08:18.782 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:93e6bad6feb94254b2f3d7596f1e38ca" +2024-05-17 19:08:18.783 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:93e6bad6feb94254b2f3d7596f1e38ca +2024-05-17 19:08:18.784 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:93e6bad6feb94254b2f3d7596f1e38ca +2024-05-17 19:08:18.787 +02:00 [INF] Published NotificationCreated event for NotificationId=0e264314-c8ff-4666-a51c-49bc64cab3f4 +2024-05-17 19:08:18.814 +02:00 [INF] Received HTTP response headers after 29.0731ms - 200 +2024-05-17 19:08:18.815 +02:00 [INF] End processing HTTP request after 31.6239ms - 200 +2024-05-17 19:08:18.816 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:08:18.819 +02:00 [INF] Deregistered a service [id: notifications-service:93e6bad6feb94254b2f3d7596f1e38ca] from Consul. +2024-05-17 19:08:18.820 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 19:08:18.821 +02:00 [INF] Handled a message: friend_request_created with ID: 36d53818ca924b79b2e709242dc283ae, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 19:08:18.826 +02:00 [INF] Received a message with ID: 'c4cc6b6503bc41a9b40306c023fda6a8', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964906, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 19:08:18.827 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.BuildCorrelationContext(IServiceScope scope, BasicDeliverEventArgs args) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass25_0.<b__0>d.MoveNext() +2024-05-17 19:09:59.385 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 19:09:59.429 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 19:09:59.503 +02:00 [INF] Registering a service [id: notifications-service:53c4230fb9454566b57abaf8b6481c93] in Consul... +2024-05-17 19:09:59.521 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 19:09:59.525 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:09:59.526 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 19:09:59.533 +02:00 [INF] Received HTTP response headers after 5.7466ms - 200 +2024-05-17 19:09:59.534 +02:00 [INF] End processing HTTP request after 10.3852ms - 200 +2024-05-17 19:09:59.538 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:09:59.539 +02:00 [INF] Registered a service [id: notifications-service:53c4230fb9454566b57abaf8b6481c93] in Consul. +2024-05-17 19:09:59.546 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 19:09:59.555 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 19:09:59.559 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 19:09:59.562 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 19:09:59.564 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 19:09:59.567 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 19:09:59.569 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 19:09:59.572 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 19:10:25.462 +02:00 [INF] Received a message with ID: '7e5ff0752c0942de85b9bc37644fe88d', Correlation ID: 'a4c66fb477fd468fb4ffa181668db00a', timestamp: 1715965825, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 19:10:25.462 +02:00 [INF] Received a message with ID: 'dafa2e29cf0040f78383a75fc2124ffc', Correlation ID: 'aee5c7f7f9384fdb8712768c655e4b69', timestamp: 1715965825, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 19:10:25.482 +02:00 [INF] Handling a message: friend_invited with ID: dafa2e29cf0040f78383a75fc2124ffc, Correlation ID: aee5c7f7f9384fdb8712768c655e4b69, retry: 0 +2024-05-17 19:10:25.482 +02:00 [INF] Handling a message: friend_request_sent with ID: 7e5ff0752c0942de85b9bc37644fe88d, Correlation ID: a4c66fb477fd468fb4ffa181668db00a, retry: 0 +2024-05-17 19:10:25.484 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:10:25.496 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '7e5ff0752c0942de85b9bc37644fe88d', Correlation ID: 'a4c66fb477fd468fb4ffa181668db00a', retry 1/3... +2024-05-17 19:10:25.747 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 742db376-d36f-45d0-a764-9f22453a22e6. +2024-05-17 19:10:25.749 +02:00 [INF] Handled a message: friend_invited with ID: dafa2e29cf0040f78383a75fc2124ffc, Correlation ID: aee5c7f7f9384fdb8712768c655e4b69, retry: 0 +2024-05-17 19:10:27.499 +02:00 [INF] Handling a message: friend_request_sent with ID: 7e5ff0752c0942de85b9bc37644fe88d, Correlation ID: a4c66fb477fd468fb4ffa181668db00a, retry: 1 +2024-05-17 19:10:27.500 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:10:27.501 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '7e5ff0752c0942de85b9bc37644fe88d', Correlation ID: 'a4c66fb477fd468fb4ffa181668db00a', retry 2/3... +2024-05-17 19:10:29.502 +02:00 [INF] Handling a message: friend_request_sent with ID: 7e5ff0752c0942de85b9bc37644fe88d, Correlation ID: a4c66fb477fd468fb4ffa181668db00a, retry: 2 +2024-05-17 19:10:29.502 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:10:29.503 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '7e5ff0752c0942de85b9bc37644fe88d', Correlation ID: 'a4c66fb477fd468fb4ffa181668db00a', retry 3/3... +2024-05-17 19:10:31.505 +02:00 [INF] Handling a message: friend_request_sent with ID: 7e5ff0752c0942de85b9bc37644fe88d, Correlation ID: a4c66fb477fd468fb4ffa181668db00a, retry: 3 +2024-05-17 19:10:31.506 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 19:10:31.508 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '7e5ff0752c0942de85b9bc37644fe88d', Correlation ID: 'a4c66fb477fd468fb4ffa181668db00a', retry 4/3... +2024-05-17 19:10:31.508 +02:00 [ERR] Handling a message: friend_request_sent with ID: 7e5ff0752c0942de85b9bc37644fe88d, Correlation ID: a4c66fb477fd468fb4ffa181668db00a failed +2024-05-17 19:11:12.068 +02:00 [INF] Deregistering a service [id: notifications-service:53c4230fb9454566b57abaf8b6481c93] from Consul... +2024-05-17 19:11:12.069 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:53c4230fb9454566b57abaf8b6481c93" +2024-05-17 19:11:12.070 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:53c4230fb9454566b57abaf8b6481c93 +2024-05-17 19:11:12.070 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:53c4230fb9454566b57abaf8b6481c93 +2024-05-17 19:11:12.071 +02:00 [INF] Received HTTP response headers after 1.3448ms - 200 +2024-05-17 19:11:12.072 +02:00 [INF] End processing HTTP request after 2.0567ms - 200 +2024-05-17 19:11:12.072 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 19:11:12.072 +02:00 [INF] Deregistered a service [id: notifications-service:53c4230fb9454566b57abaf8b6481c93] from Consul. +2024-05-17 20:16:55.295 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:16:55.348 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:16:55.465 +02:00 [INF] Registering a service [id: notifications-service:d6860275d0554f8588f543028745a40c] in Consul... +2024-05-17 20:16:55.510 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:16:55.514 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:16:55.515 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:16:55.523 +02:00 [INF] Received HTTP response headers after 5.4108ms - 200 +2024-05-17 20:16:55.524 +02:00 [INF] End processing HTTP request after 10.5347ms - 200 +2024-05-17 20:16:55.527 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:16:55.527 +02:00 [INF] Registered a service [id: notifications-service:d6860275d0554f8588f543028745a40c] in Consul. +2024-05-17 20:16:55.533 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:16:55.544 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:16:55.547 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:16:55.549 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:16:55.554 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:16:55.558 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:16:55.560 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:16:55.562 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:17:16.627 +02:00 [INF] Received a message with ID: 'ebd45a1e61104b53865f7d296620fb49', Correlation ID: '7365b8b29c114d1189c0e116eae9e15b', timestamp: 1715969836, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:17:16.631 +02:00 [INF] Received a message with ID: '228f2051be87442aa8aae648be44a73c', Correlation ID: '53a9d2cc113b46b388483f53b59efb59', timestamp: 1715969836, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:17:16.656 +02:00 [INF] Handling a message: friend_invited with ID: ebd45a1e61104b53865f7d296620fb49, Correlation ID: 7365b8b29c114d1189c0e116eae9e15b, retry: 0 +2024-05-17 20:17:16.656 +02:00 [INF] Handling a message: friend_request_sent with ID: 228f2051be87442aa8aae648be44a73c, Correlation ID: 53a9d2cc113b46b388483f53b59efb59, retry: 0 +2024-05-17 20:17:16.660 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:17:16.670 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '228f2051be87442aa8aae648be44a73c', Correlation ID: '53a9d2cc113b46b388483f53b59efb59', retry 1/3... +2024-05-17 20:17:16.910 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to dd30a0db-c3c8-4102-a452-06cc7cdf1dd5. +2024-05-17 20:17:16.913 +02:00 [INF] Handled a message: friend_invited with ID: ebd45a1e61104b53865f7d296620fb49, Correlation ID: 7365b8b29c114d1189c0e116eae9e15b, retry: 0 +2024-05-17 20:17:18.672 +02:00 [INF] Handling a message: friend_request_sent with ID: 228f2051be87442aa8aae648be44a73c, Correlation ID: 53a9d2cc113b46b388483f53b59efb59, retry: 1 +2024-05-17 20:17:18.674 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:17:18.676 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '228f2051be87442aa8aae648be44a73c', Correlation ID: '53a9d2cc113b46b388483f53b59efb59', retry 2/3... +2024-05-17 20:17:20.675 +02:00 [INF] Handling a message: friend_request_sent with ID: 228f2051be87442aa8aae648be44a73c, Correlation ID: 53a9d2cc113b46b388483f53b59efb59, retry: 2 +2024-05-17 20:17:20.676 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:17:20.678 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '228f2051be87442aa8aae648be44a73c', Correlation ID: '53a9d2cc113b46b388483f53b59efb59', retry 3/3... +2024-05-17 20:17:22.679 +02:00 [INF] Handling a message: friend_request_sent with ID: 228f2051be87442aa8aae648be44a73c, Correlation ID: 53a9d2cc113b46b388483f53b59efb59, retry: 3 +2024-05-17 20:17:22.679 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:17:22.680 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '228f2051be87442aa8aae648be44a73c', Correlation ID: '53a9d2cc113b46b388483f53b59efb59', retry 4/3... +2024-05-17 20:17:22.680 +02:00 [ERR] Handling a message: friend_request_sent with ID: 228f2051be87442aa8aae648be44a73c, Correlation ID: 53a9d2cc113b46b388483f53b59efb59 failed +2024-05-17 20:19:01.977 +02:00 [INF] Deregistering a service [id: notifications-service:d6860275d0554f8588f543028745a40c] from Consul... +2024-05-17 20:19:01.986 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d6860275d0554f8588f543028745a40c" +2024-05-17 20:19:01.986 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d6860275d0554f8588f543028745a40c +2024-05-17 20:19:01.986 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d6860275d0554f8588f543028745a40c +2024-05-17 20:19:01.991 +02:00 [INF] Received HTTP response headers after 4.0053ms - 200 +2024-05-17 20:19:01.992 +02:00 [INF] End processing HTTP request after 6.329ms - 200 +2024-05-17 20:19:01.993 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:19:01.993 +02:00 [INF] Deregistered a service [id: notifications-service:d6860275d0554f8588f543028745a40c] from Consul. +2024-05-17 20:19:16.145 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:19:16.196 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:19:16.264 +02:00 [INF] Registering a service [id: notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448] in Consul... +2024-05-17 20:19:16.286 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:19:16.292 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:19:16.293 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:19:16.300 +02:00 [INF] Received HTTP response headers after 4.8513ms - 200 +2024-05-17 20:19:16.301 +02:00 [INF] End processing HTTP request after 10.8646ms - 200 +2024-05-17 20:19:16.304 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:19:16.304 +02:00 [INF] Registered a service [id: notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448] in Consul. +2024-05-17 20:19:16.312 +02:00 [INF] Deregistering a service [id: notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448] from Consul... +2024-05-17 20:19:16.314 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448" +2024-05-17 20:19:16.315 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448 +2024-05-17 20:19:16.315 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448 +2024-05-17 20:19:16.317 +02:00 [INF] Received HTTP response headers after 1.7719ms - 200 +2024-05-17 20:19:16.317 +02:00 [INF] End processing HTTP request after 2.4714ms - 200 +2024-05-17 20:19:16.318 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:19:16.318 +02:00 [INF] Deregistered a service [id: notifications-service:39a857a97d4a47fe9fd4fc7dd65e2448] from Consul. +2024-05-17 20:20:17.165 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:20:17.202 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:20:17.261 +02:00 [INF] Registering a service [id: notifications-service:1bd46a24a2794df68156ae72908115fe] in Consul... +2024-05-17 20:20:17.283 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:20:17.287 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:20:17.287 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:20:17.296 +02:00 [INF] Received HTTP response headers after 6.5297ms - 200 +2024-05-17 20:20:17.297 +02:00 [INF] End processing HTTP request after 11.2173ms - 200 +2024-05-17 20:20:17.300 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:20:17.301 +02:00 [INF] Registered a service [id: notifications-service:1bd46a24a2794df68156ae72908115fe] in Consul. +2024-05-17 20:20:17.307 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:20:17.316 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:20:17.319 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:20:17.321 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:20:17.326 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:20:17.329 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:20:17.332 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:20:17.334 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:20:23.990 +02:00 [INF] Received a message with ID: '1cfd6c954c9f4567bcc768e1818cccad', Correlation ID: 'd749cbaecbdc490595f9c4c3efdc434d', timestamp: 1715970023, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:20:23.990 +02:00 [INF] Received a message with ID: '751f3f13053a4c2b8ce03f912639e1f9', Correlation ID: '8b9125b2218846c3b8887743809a42f8', timestamp: 1715970023, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:20:24.009 +02:00 [INF] Handling a message: friend_invited with ID: 1cfd6c954c9f4567bcc768e1818cccad, Correlation ID: d749cbaecbdc490595f9c4c3efdc434d, retry: 0 +2024-05-17 20:20:24.009 +02:00 [INF] Handling a message: friend_request_sent with ID: 751f3f13053a4c2b8ce03f912639e1f9, Correlation ID: 8b9125b2218846c3b8887743809a42f8, retry: 0 +2024-05-17 20:20:24.011 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:24.016 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:24.022 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1cfd6c954c9f4567bcc768e1818cccad', Correlation ID: 'd749cbaecbdc490595f9c4c3efdc434d', retry 1/3... +2024-05-17 20:20:24.019 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '751f3f13053a4c2b8ce03f912639e1f9', Correlation ID: '8b9125b2218846c3b8887743809a42f8', retry 1/3... +2024-05-17 20:20:26.024 +02:00 [INF] Handling a message: friend_invited with ID: 1cfd6c954c9f4567bcc768e1818cccad, Correlation ID: d749cbaecbdc490595f9c4c3efdc434d, retry: 1 +2024-05-17 20:20:26.024 +02:00 [INF] Handling a message: friend_request_sent with ID: 751f3f13053a4c2b8ce03f912639e1f9, Correlation ID: 8b9125b2218846c3b8887743809a42f8, retry: 1 +2024-05-17 20:20:26.025 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:26.027 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '751f3f13053a4c2b8ce03f912639e1f9', Correlation ID: '8b9125b2218846c3b8887743809a42f8', retry 2/3... +2024-05-17 20:20:26.028 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:26.031 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1cfd6c954c9f4567bcc768e1818cccad', Correlation ID: 'd749cbaecbdc490595f9c4c3efdc434d', retry 2/3... +2024-05-17 20:20:28.028 +02:00 [INF] Handling a message: friend_request_sent with ID: 751f3f13053a4c2b8ce03f912639e1f9, Correlation ID: 8b9125b2218846c3b8887743809a42f8, retry: 2 +2024-05-17 20:20:28.028 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:28.029 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '751f3f13053a4c2b8ce03f912639e1f9', Correlation ID: '8b9125b2218846c3b8887743809a42f8', retry 3/3... +2024-05-17 20:20:28.034 +02:00 [INF] Handling a message: friend_invited with ID: 1cfd6c954c9f4567bcc768e1818cccad, Correlation ID: d749cbaecbdc490595f9c4c3efdc434d, retry: 2 +2024-05-17 20:20:28.035 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:28.036 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1cfd6c954c9f4567bcc768e1818cccad', Correlation ID: 'd749cbaecbdc490595f9c4c3efdc434d', retry 3/3... +2024-05-17 20:20:30.029 +02:00 [INF] Handling a message: friend_request_sent with ID: 751f3f13053a4c2b8ce03f912639e1f9, Correlation ID: 8b9125b2218846c3b8887743809a42f8, retry: 3 +2024-05-17 20:20:30.029 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:30.030 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '751f3f13053a4c2b8ce03f912639e1f9', Correlation ID: '8b9125b2218846c3b8887743809a42f8', retry 4/3... +2024-05-17 20:20:30.031 +02:00 [ERR] Handling a message: friend_request_sent with ID: 751f3f13053a4c2b8ce03f912639e1f9, Correlation ID: 8b9125b2218846c3b8887743809a42f8 failed +2024-05-17 20:20:30.037 +02:00 [INF] Handling a message: friend_invited with ID: 1cfd6c954c9f4567bcc768e1818cccad, Correlation ID: d749cbaecbdc490595f9c4c3efdc434d, retry: 3 +2024-05-17 20:20:30.037 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:20:30.038 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1cfd6c954c9f4567bcc768e1818cccad', Correlation ID: 'd749cbaecbdc490595f9c4c3efdc434d', retry 4/3... +2024-05-17 20:20:30.039 +02:00 [ERR] Handling a message: friend_invited with ID: 1cfd6c954c9f4567bcc768e1818cccad, Correlation ID: d749cbaecbdc490595f9c4c3efdc434d failed +2024-05-17 20:22:39.752 +02:00 [INF] Received a message with ID: '397b124e6ad546b1a9a2a1f60512bedd', Correlation ID: 'f8c13c1ac14f40d1bd8867ebdee76651', timestamp: 1715970159, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:22:39.753 +02:00 [INF] Handling a message: friend_invited with ID: 397b124e6ad546b1a9a2a1f60512bedd, Correlation ID: f8c13c1ac14f40d1bd8867ebdee76651, retry: 0 +2024-05-17 20:22:39.754 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:39.755 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '397b124e6ad546b1a9a2a1f60512bedd', Correlation ID: 'f8c13c1ac14f40d1bd8867ebdee76651', retry 1/3... +2024-05-17 20:22:39.756 +02:00 [INF] Received a message with ID: '428a1f2b06c5475284fd2a05658ee663', Correlation ID: '943f87ccabb847cfbee42cb6f371e185', timestamp: 1715970159, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:22:39.757 +02:00 [INF] Handling a message: friend_request_sent with ID: 428a1f2b06c5475284fd2a05658ee663, Correlation ID: 943f87ccabb847cfbee42cb6f371e185, retry: 0 +2024-05-17 20:22:39.758 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:39.758 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '428a1f2b06c5475284fd2a05658ee663', Correlation ID: '943f87ccabb847cfbee42cb6f371e185', retry 1/3... +2024-05-17 20:22:41.756 +02:00 [INF] Handling a message: friend_invited with ID: 397b124e6ad546b1a9a2a1f60512bedd, Correlation ID: f8c13c1ac14f40d1bd8867ebdee76651, retry: 1 +2024-05-17 20:22:41.757 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:41.757 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '397b124e6ad546b1a9a2a1f60512bedd', Correlation ID: 'f8c13c1ac14f40d1bd8867ebdee76651', retry 2/3... +2024-05-17 20:22:41.760 +02:00 [INF] Handling a message: friend_request_sent with ID: 428a1f2b06c5475284fd2a05658ee663, Correlation ID: 943f87ccabb847cfbee42cb6f371e185, retry: 1 +2024-05-17 20:22:41.760 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:41.761 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '428a1f2b06c5475284fd2a05658ee663', Correlation ID: '943f87ccabb847cfbee42cb6f371e185', retry 2/3... +2024-05-17 20:22:43.756 +02:00 [INF] Handling a message: friend_invited with ID: 397b124e6ad546b1a9a2a1f60512bedd, Correlation ID: f8c13c1ac14f40d1bd8867ebdee76651, retry: 2 +2024-05-17 20:22:43.757 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:43.759 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '397b124e6ad546b1a9a2a1f60512bedd', Correlation ID: 'f8c13c1ac14f40d1bd8867ebdee76651', retry 3/3... +2024-05-17 20:22:43.760 +02:00 [INF] Handling a message: friend_request_sent with ID: 428a1f2b06c5475284fd2a05658ee663, Correlation ID: 943f87ccabb847cfbee42cb6f371e185, retry: 2 +2024-05-17 20:22:43.761 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:43.761 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '428a1f2b06c5475284fd2a05658ee663', Correlation ID: '943f87ccabb847cfbee42cb6f371e185', retry 3/3... +2024-05-17 20:22:45.760 +02:00 [INF] Handling a message: friend_request_sent with ID: 428a1f2b06c5475284fd2a05658ee663, Correlation ID: 943f87ccabb847cfbee42cb6f371e185, retry: 3 +2024-05-17 20:22:45.760 +02:00 [INF] Handling a message: friend_invited with ID: 397b124e6ad546b1a9a2a1f60512bedd, Correlation ID: f8c13c1ac14f40d1bd8867ebdee76651, retry: 3 +2024-05-17 20:22:45.761 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:45.762 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:22:45.764 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '397b124e6ad546b1a9a2a1f60512bedd', Correlation ID: 'f8c13c1ac14f40d1bd8867ebdee76651', retry 4/3... +2024-05-17 20:22:45.762 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '428a1f2b06c5475284fd2a05658ee663', Correlation ID: '943f87ccabb847cfbee42cb6f371e185', retry 4/3... +2024-05-17 20:22:45.765 +02:00 [ERR] Handling a message: friend_invited with ID: 397b124e6ad546b1a9a2a1f60512bedd, Correlation ID: f8c13c1ac14f40d1bd8867ebdee76651 failed +2024-05-17 20:22:45.765 +02:00 [ERR] Handling a message: friend_request_sent with ID: 428a1f2b06c5475284fd2a05658ee663, Correlation ID: 943f87ccabb847cfbee42cb6f371e185 failed +2024-05-17 20:23:29.055 +02:00 [INF] Deregistering a service [id: notifications-service:1bd46a24a2794df68156ae72908115fe] from Consul... +2024-05-17 20:23:29.058 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1bd46a24a2794df68156ae72908115fe" +2024-05-17 20:23:29.058 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1bd46a24a2794df68156ae72908115fe +2024-05-17 20:23:29.059 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1bd46a24a2794df68156ae72908115fe +2024-05-17 20:23:29.064 +02:00 [INF] Received HTTP response headers after 4.6388ms - 200 +2024-05-17 20:23:29.064 +02:00 [INF] End processing HTTP request after 5.7644ms - 200 +2024-05-17 20:23:29.064 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:23:29.065 +02:00 [INF] Deregistered a service [id: notifications-service:1bd46a24a2794df68156ae72908115fe] from Consul. +2024-05-17 20:23:39.069 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:23:39.120 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:23:39.204 +02:00 [INF] Registering a service [id: notifications-service:0605fd4741a547c3ae21d76f9fb31a67] in Consul... +2024-05-17 20:23:39.228 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:23:39.234 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:23:39.236 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:23:39.244 +02:00 [INF] Received HTTP response headers after 5.0264ms - 200 +2024-05-17 20:23:39.246 +02:00 [INF] End processing HTTP request after 12.617ms - 200 +2024-05-17 20:23:39.249 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:23:39.250 +02:00 [INF] Registered a service [id: notifications-service:0605fd4741a547c3ae21d76f9fb31a67] in Consul. +2024-05-17 20:23:39.257 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:23:39.270 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:23:39.272 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:23:39.274 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:23:39.281 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:23:39.283 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:23:39.286 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:23:39.288 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:24:08.380 +02:00 [INF] Received a message with ID: '47320722840b4b1b93a3a40717063879', Correlation ID: '249793a497bb4a0c87f2adf8592854a1', timestamp: 1715970248, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:24:08.380 +02:00 [INF] Received a message with ID: 'b42224f6b7314527a622bf146a0d77fb', Correlation ID: '433c8b05dd09454aa5c2551fd14760cf', timestamp: 1715970248, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:24:08.399 +02:00 [INF] Handling a message: friend_request_sent with ID: 47320722840b4b1b93a3a40717063879, Correlation ID: 249793a497bb4a0c87f2adf8592854a1, retry: 0 +2024-05-17 20:24:08.399 +02:00 [INF] Handling a message: friend_invited with ID: b42224f6b7314527a622bf146a0d77fb, Correlation ID: 433c8b05dd09454aa5c2551fd14760cf, retry: 0 +2024-05-17 20:24:08.401 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:08.409 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:08.413 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b42224f6b7314527a622bf146a0d77fb', Correlation ID: '433c8b05dd09454aa5c2551fd14760cf', retry 1/3... +2024-05-17 20:24:08.411 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '47320722840b4b1b93a3a40717063879', Correlation ID: '249793a497bb4a0c87f2adf8592854a1', retry 1/3... +2024-05-17 20:24:10.416 +02:00 [INF] Handling a message: friend_invited with ID: b42224f6b7314527a622bf146a0d77fb, Correlation ID: 433c8b05dd09454aa5c2551fd14760cf, retry: 1 +2024-05-17 20:24:10.416 +02:00 [INF] Handling a message: friend_request_sent with ID: 47320722840b4b1b93a3a40717063879, Correlation ID: 249793a497bb4a0c87f2adf8592854a1, retry: 1 +2024-05-17 20:24:10.417 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:10.418 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:10.419 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b42224f6b7314527a622bf146a0d77fb', Correlation ID: '433c8b05dd09454aa5c2551fd14760cf', retry 2/3... +2024-05-17 20:24:10.418 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '47320722840b4b1b93a3a40717063879', Correlation ID: '249793a497bb4a0c87f2adf8592854a1', retry 2/3... +2024-05-17 20:24:12.420 +02:00 [INF] Handling a message: friend_invited with ID: b42224f6b7314527a622bf146a0d77fb, Correlation ID: 433c8b05dd09454aa5c2551fd14760cf, retry: 2 +2024-05-17 20:24:12.422 +02:00 [INF] Handling a message: friend_request_sent with ID: 47320722840b4b1b93a3a40717063879, Correlation ID: 249793a497bb4a0c87f2adf8592854a1, retry: 2 +2024-05-17 20:24:12.423 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:12.424 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '47320722840b4b1b93a3a40717063879', Correlation ID: '249793a497bb4a0c87f2adf8592854a1', retry 3/3... +2024-05-17 20:24:12.425 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:12.430 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b42224f6b7314527a622bf146a0d77fb', Correlation ID: '433c8b05dd09454aa5c2551fd14760cf', retry 3/3... +2024-05-17 20:24:14.423 +02:00 [INF] Handling a message: friend_request_sent with ID: 47320722840b4b1b93a3a40717063879, Correlation ID: 249793a497bb4a0c87f2adf8592854a1, retry: 3 +2024-05-17 20:24:14.425 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:14.425 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '47320722840b4b1b93a3a40717063879', Correlation ID: '249793a497bb4a0c87f2adf8592854a1', retry 4/3... +2024-05-17 20:24:14.425 +02:00 [ERR] Handling a message: friend_request_sent with ID: 47320722840b4b1b93a3a40717063879, Correlation ID: 249793a497bb4a0c87f2adf8592854a1 failed +2024-05-17 20:24:14.432 +02:00 [INF] Handling a message: friend_invited with ID: b42224f6b7314527a622bf146a0d77fb, Correlation ID: 433c8b05dd09454aa5c2551fd14760cf, retry: 3 +2024-05-17 20:24:14.432 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:14.433 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b42224f6b7314527a622bf146a0d77fb', Correlation ID: '433c8b05dd09454aa5c2551fd14760cf', retry 4/3... +2024-05-17 20:24:14.433 +02:00 [ERR] Handling a message: friend_invited with ID: b42224f6b7314527a622bf146a0d77fb, Correlation ID: 433c8b05dd09454aa5c2551fd14760cf failed +2024-05-17 20:24:43.744 +02:00 [INF] Deregistering a service [id: notifications-service:0605fd4741a547c3ae21d76f9fb31a67] from Consul... +2024-05-17 20:24:43.746 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0605fd4741a547c3ae21d76f9fb31a67" +2024-05-17 20:24:43.747 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0605fd4741a547c3ae21d76f9fb31a67 +2024-05-17 20:24:43.747 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0605fd4741a547c3ae21d76f9fb31a67 +2024-05-17 20:24:43.750 +02:00 [INF] Received HTTP response headers after 2.9751ms - 200 +2024-05-17 20:24:43.751 +02:00 [INF] End processing HTTP request after 3.7977ms - 200 +2024-05-17 20:24:43.751 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:24:43.752 +02:00 [INF] Deregistered a service [id: notifications-service:0605fd4741a547c3ae21d76f9fb31a67] from Consul. +2024-05-17 20:24:51.928 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:24:51.968 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:24:52.031 +02:00 [INF] Registering a service [id: notifications-service:a93489bf222f49079d97515f05bbffde] in Consul... +2024-05-17 20:24:52.051 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:24:52.054 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:24:52.054 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:24:52.060 +02:00 [INF] Received HTTP response headers after 3.9631ms - 200 +2024-05-17 20:24:52.061 +02:00 [INF] End processing HTTP request after 8.2063ms - 200 +2024-05-17 20:24:52.066 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:24:52.067 +02:00 [INF] Registered a service [id: notifications-service:a93489bf222f49079d97515f05bbffde] in Consul. +2024-05-17 20:24:52.073 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:24:52.083 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:24:52.086 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:24:52.088 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:24:52.090 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:24:52.092 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:24:52.095 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:24:52.101 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:24:53.429 +02:00 [INF] Received a message with ID: '64658efd63ee435a85e1a5558a0e61ca', Correlation ID: '7634494777a5481288969c0291cb95b8', timestamp: 1715970293, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:24:53.429 +02:00 [INF] Received a message with ID: '867eac3d5034409d9a041a8f1191eb67', Correlation ID: '30df1d01fec04fd48aa7385db26aa9ec', timestamp: 1715970293, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:24:53.450 +02:00 [INF] Handling a message: friend_invited with ID: 64658efd63ee435a85e1a5558a0e61ca, Correlation ID: 7634494777a5481288969c0291cb95b8, retry: 0 +2024-05-17 20:24:53.450 +02:00 [INF] Handling a message: friend_request_sent with ID: 867eac3d5034409d9a041a8f1191eb67, Correlation ID: 30df1d01fec04fd48aa7385db26aa9ec, retry: 0 +2024-05-17 20:24:53.452 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:53.459 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:53.465 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '64658efd63ee435a85e1a5558a0e61ca', Correlation ID: '7634494777a5481288969c0291cb95b8', retry 1/3... +2024-05-17 20:24:53.463 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '867eac3d5034409d9a041a8f1191eb67', Correlation ID: '30df1d01fec04fd48aa7385db26aa9ec', retry 1/3... +2024-05-17 20:24:55.469 +02:00 [INF] Handling a message: friend_request_sent with ID: 867eac3d5034409d9a041a8f1191eb67, Correlation ID: 30df1d01fec04fd48aa7385db26aa9ec, retry: 1 +2024-05-17 20:24:55.469 +02:00 [INF] Handling a message: friend_invited with ID: 64658efd63ee435a85e1a5558a0e61ca, Correlation ID: 7634494777a5481288969c0291cb95b8, retry: 1 +2024-05-17 20:24:55.471 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:55.472 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '867eac3d5034409d9a041a8f1191eb67', Correlation ID: '30df1d01fec04fd48aa7385db26aa9ec', retry 2/3... +2024-05-17 20:24:55.475 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:55.481 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '64658efd63ee435a85e1a5558a0e61ca', Correlation ID: '7634494777a5481288969c0291cb95b8', retry 2/3... +2024-05-17 20:24:57.471 +02:00 [INF] Handling a message: friend_request_sent with ID: 867eac3d5034409d9a041a8f1191eb67, Correlation ID: 30df1d01fec04fd48aa7385db26aa9ec, retry: 2 +2024-05-17 20:24:57.473 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:57.473 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '867eac3d5034409d9a041a8f1191eb67', Correlation ID: '30df1d01fec04fd48aa7385db26aa9ec', retry 3/3... +2024-05-17 20:24:57.482 +02:00 [INF] Handling a message: friend_invited with ID: 64658efd63ee435a85e1a5558a0e61ca, Correlation ID: 7634494777a5481288969c0291cb95b8, retry: 2 +2024-05-17 20:24:57.483 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:57.484 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '64658efd63ee435a85e1a5558a0e61ca', Correlation ID: '7634494777a5481288969c0291cb95b8', retry 3/3... +2024-05-17 20:24:59.472 +02:00 [INF] Handling a message: friend_request_sent with ID: 867eac3d5034409d9a041a8f1191eb67, Correlation ID: 30df1d01fec04fd48aa7385db26aa9ec, retry: 3 +2024-05-17 20:24:59.473 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:59.473 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '867eac3d5034409d9a041a8f1191eb67', Correlation ID: '30df1d01fec04fd48aa7385db26aa9ec', retry 4/3... +2024-05-17 20:24:59.473 +02:00 [ERR] Handling a message: friend_request_sent with ID: 867eac3d5034409d9a041a8f1191eb67, Correlation ID: 30df1d01fec04fd48aa7385db26aa9ec failed +2024-05-17 20:24:59.485 +02:00 [INF] Handling a message: friend_invited with ID: 64658efd63ee435a85e1a5558a0e61ca, Correlation ID: 7634494777a5481288969c0291cb95b8, retry: 3 +2024-05-17 20:24:59.485 +02:00 [ERR] The given key 'students' was not present in the dictionary. +System.Collections.Generic.KeyNotFoundException: The given key 'students' was not present in the dictionary. + at System.Collections.Generic.Dictionary`2.get_Item(TKey key) + at MiniSpace.Services.Notifications.Infrastructure.Services.Clients.StudentsServiceClient..ctor(IHttpClient httpClient, HttpClientOptions options) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Services/Clients/StudentsServiceClient.cs:line 17 + at InvokeStub_StudentsServiceClient..ctor(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithFewArgs(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:24:59.486 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '64658efd63ee435a85e1a5558a0e61ca', Correlation ID: '7634494777a5481288969c0291cb95b8', retry 4/3... +2024-05-17 20:24:59.486 +02:00 [ERR] Handling a message: friend_invited with ID: 64658efd63ee435a85e1a5558a0e61ca, Correlation ID: 7634494777a5481288969c0291cb95b8 failed +2024-05-17 20:26:30.428 +02:00 [INF] Deregistering a service [id: notifications-service:a93489bf222f49079d97515f05bbffde] from Consul... +2024-05-17 20:26:30.431 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a93489bf222f49079d97515f05bbffde" +2024-05-17 20:26:30.431 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a93489bf222f49079d97515f05bbffde +2024-05-17 20:26:30.432 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a93489bf222f49079d97515f05bbffde +2024-05-17 20:26:30.441 +02:00 [INF] Received HTTP response headers after 8.2231ms - 200 +2024-05-17 20:26:30.441 +02:00 [INF] End processing HTTP request after 9.9946ms - 200 +2024-05-17 20:26:30.442 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:26:30.444 +02:00 [INF] Deregistered a service [id: notifications-service:a93489bf222f49079d97515f05bbffde] from Consul. +2024-05-17 20:28:12.964 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:28:13.012 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:28:13.065 +02:00 [INF] Registering a service [id: notifications-service:6934f692479942d49ca7d4b2b0e713de] in Consul... +2024-05-17 20:28:13.086 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:28:13.093 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:28:13.094 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:28:13.103 +02:00 [INF] Received HTTP response headers after 6.9434ms - 200 +2024-05-17 20:28:13.105 +02:00 [INF] End processing HTTP request after 13.0993ms - 200 +2024-05-17 20:28:13.110 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:28:13.111 +02:00 [INF] Registered a service [id: notifications-service:6934f692479942d49ca7d4b2b0e713de] in Consul. +2024-05-17 20:28:13.118 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:28:13.130 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:28:13.132 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:28:13.135 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:28:13.142 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:28:13.145 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:28:13.148 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:28:13.151 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:28:17.609 +02:00 [INF] Received a message with ID: '273cea46994140919f1f0a5d686e2f90', Correlation ID: 'c99b565a27e7426dbf19e0510c7252eb', timestamp: 1715970497, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:28:17.609 +02:00 [INF] Received a message with ID: '278da1ea92c7405f9f04e7806e82f923', Correlation ID: 'b2f06f9664b74c56b0ccb13428f9165f', timestamp: 1715970497, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:28:17.634 +02:00 [INF] Handling a message: friend_invited with ID: 278da1ea92c7405f9f04e7806e82f923, Correlation ID: b2f06f9664b74c56b0ccb13428f9165f, retry: 0 +2024-05-17 20:28:17.634 +02:00 [INF] Handling a message: friend_request_sent with ID: 273cea46994140919f1f0a5d686e2f90, Correlation ID: c99b565a27e7426dbf19e0510c7252eb, retry: 0 +2024-05-17 20:28:17.636 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:17.647 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '273cea46994140919f1f0a5d686e2f90', Correlation ID: 'c99b565a27e7426dbf19e0510c7252eb', retry 1/3... +2024-05-17 20:28:17.724 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:28:17.725 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:17.727 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:17.757 +02:00 [INF] Received HTTP response headers after 28.9629ms - 404 +2024-05-17 20:28:17.758 +02:00 [INF] End processing HTTP request after 33.1555ms - 404 +2024-05-17 20:28:17.761 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:17.783 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597" +2024-05-17 20:28:17.785 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:17.786 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:17.789 +02:00 [INF] Received HTTP response headers after 2.4196ms - 404 +2024-05-17 20:28:17.791 +02:00 [INF] End processing HTTP request after 5.7395ms - 404 +2024-05-17 20:28:17.792 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:17.794 +02:00 [ERR] There was an error when processing a message with id: '278da1ea92c7405f9f04e7806e82f923'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:28:17.803 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:17.804 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '278da1ea92c7405f9f04e7806e82f923', Correlation ID: 'b2f06f9664b74c56b0ccb13428f9165f', retry 1/3... +2024-05-17 20:28:19.647 +02:00 [INF] Handling a message: friend_request_sent with ID: 273cea46994140919f1f0a5d686e2f90, Correlation ID: c99b565a27e7426dbf19e0510c7252eb, retry: 1 +2024-05-17 20:28:19.647 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:19.648 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '273cea46994140919f1f0a5d686e2f90', Correlation ID: 'c99b565a27e7426dbf19e0510c7252eb', retry 2/3... +2024-05-17 20:28:19.803 +02:00 [INF] Handling a message: friend_invited with ID: 278da1ea92c7405f9f04e7806e82f923, Correlation ID: b2f06f9664b74c56b0ccb13428f9165f, retry: 1 +2024-05-17 20:28:19.833 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:28:19.833 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:19.834 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:19.835 +02:00 [INF] Received HTTP response headers after 0.9468ms - 404 +2024-05-17 20:28:19.835 +02:00 [INF] End processing HTTP request after 1.7512ms - 404 +2024-05-17 20:28:19.835 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:19.835 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597" +2024-05-17 20:28:19.836 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:19.836 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:19.837 +02:00 [INF] Received HTTP response headers after 1.4869ms - 404 +2024-05-17 20:28:19.838 +02:00 [INF] End processing HTTP request after 2.2572ms - 404 +2024-05-17 20:28:19.838 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:19.839 +02:00 [ERR] There was an error when processing a message with id: '278da1ea92c7405f9f04e7806e82f923'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:28:19.840 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:19.841 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '278da1ea92c7405f9f04e7806e82f923', Correlation ID: 'b2f06f9664b74c56b0ccb13428f9165f', retry 2/3... +2024-05-17 20:28:21.647 +02:00 [INF] Handling a message: friend_request_sent with ID: 273cea46994140919f1f0a5d686e2f90, Correlation ID: c99b565a27e7426dbf19e0510c7252eb, retry: 2 +2024-05-17 20:28:21.648 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:21.648 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '273cea46994140919f1f0a5d686e2f90', Correlation ID: 'c99b565a27e7426dbf19e0510c7252eb', retry 3/3... +2024-05-17 20:28:21.840 +02:00 [INF] Handling a message: friend_invited with ID: 278da1ea92c7405f9f04e7806e82f923, Correlation ID: b2f06f9664b74c56b0ccb13428f9165f, retry: 2 +2024-05-17 20:28:21.872 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:28:21.872 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:21.873 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:21.874 +02:00 [INF] Received HTTP response headers after 0.7274ms - 404 +2024-05-17 20:28:21.874 +02:00 [INF] End processing HTTP request after 1.6902ms - 404 +2024-05-17 20:28:21.875 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:21.875 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597" +2024-05-17 20:28:21.875 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:21.876 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:21.877 +02:00 [INF] Received HTTP response headers after 1.0371ms - 404 +2024-05-17 20:28:21.877 +02:00 [INF] End processing HTTP request after 1.7712ms - 404 +2024-05-17 20:28:21.877 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:21.878 +02:00 [ERR] There was an error when processing a message with id: '278da1ea92c7405f9f04e7806e82f923'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:28:21.878 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:21.879 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '278da1ea92c7405f9f04e7806e82f923', Correlation ID: 'b2f06f9664b74c56b0ccb13428f9165f', retry 3/3... +2024-05-17 20:28:23.647 +02:00 [INF] Handling a message: friend_request_sent with ID: 273cea46994140919f1f0a5d686e2f90, Correlation ID: c99b565a27e7426dbf19e0510c7252eb, retry: 3 +2024-05-17 20:28:23.650 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:23.652 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '273cea46994140919f1f0a5d686e2f90', Correlation ID: 'c99b565a27e7426dbf19e0510c7252eb', retry 4/3... +2024-05-17 20:28:23.652 +02:00 [ERR] Handling a message: friend_request_sent with ID: 273cea46994140919f1f0a5d686e2f90, Correlation ID: c99b565a27e7426dbf19e0510c7252eb failed +2024-05-17 20:28:23.880 +02:00 [INF] Handling a message: friend_invited with ID: 278da1ea92c7405f9f04e7806e82f923, Correlation ID: b2f06f9664b74c56b0ccb13428f9165f, retry: 3 +2024-05-17 20:28:23.907 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:28:23.907 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:23.907 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:28:23.908 +02:00 [INF] Received HTTP response headers after 0.5936ms - 404 +2024-05-17 20:28:23.908 +02:00 [INF] End processing HTTP request after 1.0702ms - 404 +2024-05-17 20:28:23.908 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:23.909 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597" +2024-05-17 20:28:23.909 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:23.909 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/09690c9a-239f-4e1e-bd55-23bdc8a45597 +2024-05-17 20:28:23.910 +02:00 [INF] Received HTTP response headers after 0.5702ms - 404 +2024-05-17 20:28:23.910 +02:00 [INF] End processing HTTP request after 1.5179ms - 404 +2024-05-17 20:28:23.911 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:28:23.911 +02:00 [ERR] There was an error when processing a message with id: '278da1ea92c7405f9f04e7806e82f923'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:28:23.912 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:28:23.912 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '278da1ea92c7405f9f04e7806e82f923', Correlation ID: 'b2f06f9664b74c56b0ccb13428f9165f', retry 4/3... +2024-05-17 20:28:23.912 +02:00 [ERR] Handling a message: friend_invited with ID: 278da1ea92c7405f9f04e7806e82f923, Correlation ID: b2f06f9664b74c56b0ccb13428f9165f failed +2024-05-17 20:29:37.359 +02:00 [INF] Received a message with ID: 'c2fc09b9580c4c94b04436f582725f9c', Correlation ID: 'b3c4febb3ffe41d3a1d94936c6638c30', timestamp: 1715970577, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:29:37.358 +02:00 [INF] Received a message with ID: '2e1213c4aa9f422cbd45dfa2c5092001', Correlation ID: 'c9bb6e5332704ced8f5cb2ae7387282c', timestamp: 1715970577, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:29:37.360 +02:00 [INF] Handling a message: friend_invited with ID: c2fc09b9580c4c94b04436f582725f9c, Correlation ID: b3c4febb3ffe41d3a1d94936c6638c30, retry: 0 +2024-05-17 20:29:37.360 +02:00 [INF] Handling a message: friend_request_sent with ID: 2e1213c4aa9f422cbd45dfa2c5092001, Correlation ID: c9bb6e5332704ced8f5cb2ae7387282c, retry: 0 +2024-05-17 20:29:37.360 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:37.360 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2e1213c4aa9f422cbd45dfa2c5092001', Correlation ID: 'c9bb6e5332704ced8f5cb2ae7387282c', retry 1/3... +2024-05-17 20:29:37.387 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:29:37.387 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:37.387 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:37.388 +02:00 [INF] Received HTTP response headers after 1.0676ms - 404 +2024-05-17 20:29:37.388 +02:00 [INF] End processing HTTP request after 1.4208ms - 404 +2024-05-17 20:29:37.389 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:37.389 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b" +2024-05-17 20:29:37.389 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:37.389 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:37.390 +02:00 [INF] Received HTTP response headers after 0.4869ms - 404 +2024-05-17 20:29:37.390 +02:00 [INF] End processing HTTP request after 0.8333ms - 404 +2024-05-17 20:29:37.390 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:37.390 +02:00 [ERR] There was an error when processing a message with id: 'c2fc09b9580c4c94b04436f582725f9c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:29:37.391 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:37.391 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c2fc09b9580c4c94b04436f582725f9c', Correlation ID: 'b3c4febb3ffe41d3a1d94936c6638c30', retry 1/3... +2024-05-17 20:29:39.361 +02:00 [INF] Handling a message: friend_request_sent with ID: 2e1213c4aa9f422cbd45dfa2c5092001, Correlation ID: c9bb6e5332704ced8f5cb2ae7387282c, retry: 1 +2024-05-17 20:29:39.362 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:39.363 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2e1213c4aa9f422cbd45dfa2c5092001', Correlation ID: 'c9bb6e5332704ced8f5cb2ae7387282c', retry 2/3... +2024-05-17 20:29:39.393 +02:00 [INF] Handling a message: friend_invited with ID: c2fc09b9580c4c94b04436f582725f9c, Correlation ID: b3c4febb3ffe41d3a1d94936c6638c30, retry: 1 +2024-05-17 20:29:39.423 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:29:39.424 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:39.424 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:39.427 +02:00 [INF] Received HTTP response headers after 2.45ms - 404 +2024-05-17 20:29:39.428 +02:00 [INF] End processing HTTP request after 3.8076ms - 404 +2024-05-17 20:29:39.428 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:39.428 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b" +2024-05-17 20:29:39.429 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:39.431 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:39.433 +02:00 [INF] Received HTTP response headers after 1.5896ms - 404 +2024-05-17 20:29:39.433 +02:00 [INF] End processing HTTP request after 4.7298ms - 404 +2024-05-17 20:29:39.434 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:39.435 +02:00 [ERR] There was an error when processing a message with id: 'c2fc09b9580c4c94b04436f582725f9c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:29:39.436 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:39.437 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c2fc09b9580c4c94b04436f582725f9c', Correlation ID: 'b3c4febb3ffe41d3a1d94936c6638c30', retry 2/3... +2024-05-17 20:29:41.363 +02:00 [INF] Handling a message: friend_request_sent with ID: 2e1213c4aa9f422cbd45dfa2c5092001, Correlation ID: c9bb6e5332704ced8f5cb2ae7387282c, retry: 2 +2024-05-17 20:29:41.364 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:41.364 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2e1213c4aa9f422cbd45dfa2c5092001', Correlation ID: 'c9bb6e5332704ced8f5cb2ae7387282c', retry 3/3... +2024-05-17 20:29:41.436 +02:00 [INF] Handling a message: friend_invited with ID: c2fc09b9580c4c94b04436f582725f9c, Correlation ID: b3c4febb3ffe41d3a1d94936c6638c30, retry: 2 +2024-05-17 20:29:41.464 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:29:41.465 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:41.465 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:41.465 +02:00 [INF] Received HTTP response headers after 0.6175ms - 404 +2024-05-17 20:29:41.465 +02:00 [INF] End processing HTTP request after 0.9424ms - 404 +2024-05-17 20:29:41.466 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:41.466 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b" +2024-05-17 20:29:41.466 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:41.466 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:41.467 +02:00 [INF] Received HTTP response headers after 0.64ms - 404 +2024-05-17 20:29:41.467 +02:00 [INF] End processing HTTP request after 1.2067ms - 404 +2024-05-17 20:29:41.467 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:41.468 +02:00 [ERR] There was an error when processing a message with id: 'c2fc09b9580c4c94b04436f582725f9c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:29:41.468 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:41.468 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c2fc09b9580c4c94b04436f582725f9c', Correlation ID: 'b3c4febb3ffe41d3a1d94936c6638c30', retry 3/3... +2024-05-17 20:29:43.363 +02:00 [INF] Handling a message: friend_request_sent with ID: 2e1213c4aa9f422cbd45dfa2c5092001, Correlation ID: c9bb6e5332704ced8f5cb2ae7387282c, retry: 3 +2024-05-17 20:29:43.363 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:43.364 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2e1213c4aa9f422cbd45dfa2c5092001', Correlation ID: 'c9bb6e5332704ced8f5cb2ae7387282c', retry 4/3... +2024-05-17 20:29:43.364 +02:00 [ERR] Handling a message: friend_request_sent with ID: 2e1213c4aa9f422cbd45dfa2c5092001, Correlation ID: c9bb6e5332704ced8f5cb2ae7387282c failed +2024-05-17 20:29:43.467 +02:00 [INF] Handling a message: friend_invited with ID: c2fc09b9580c4c94b04436f582725f9c, Correlation ID: b3c4febb3ffe41d3a1d94936c6638c30, retry: 3 +2024-05-17 20:29:43.495 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:29:43.495 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:43.495 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:29:43.496 +02:00 [INF] Received HTTP response headers after 0.6463ms - 404 +2024-05-17 20:29:43.496 +02:00 [INF] End processing HTTP request after 1.2533ms - 404 +2024-05-17 20:29:43.497 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:43.497 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b" +2024-05-17 20:29:43.497 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:43.497 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/c9c250f2-3d44-461c-a64b-8bb9c331ad8b +2024-05-17 20:29:43.497 +02:00 [INF] Received HTTP response headers after 0.4203ms - 404 +2024-05-17 20:29:43.498 +02:00 [INF] End processing HTTP request after 0.8696ms - 404 +2024-05-17 20:29:43.498 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:29:43.498 +02:00 [ERR] There was an error when processing a message with id: 'c2fc09b9580c4c94b04436f582725f9c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:29:43.498 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:29:43.499 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c2fc09b9580c4c94b04436f582725f9c', Correlation ID: 'b3c4febb3ffe41d3a1d94936c6638c30', retry 4/3... +2024-05-17 20:29:43.499 +02:00 [ERR] Handling a message: friend_invited with ID: c2fc09b9580c4c94b04436f582725f9c, Correlation ID: b3c4febb3ffe41d3a1d94936c6638c30 failed +2024-05-17 20:30:31.605 +02:00 [INF] Received a message with ID: 'e26c9f8dff7d40278f6aabec8f26f071', Correlation ID: 'a8a55fcc83e34c2ebe2f3de406676c1d', timestamp: 1715970631, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:30:31.605 +02:00 [INF] Received a message with ID: 'fbd0830c3aa24137b8b03e51300f783b', Correlation ID: '0026b59759474edc92eeed6cba312634', timestamp: 1715970631, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:30:31.606 +02:00 [INF] Handling a message: friend_request_sent with ID: e26c9f8dff7d40278f6aabec8f26f071, Correlation ID: a8a55fcc83e34c2ebe2f3de406676c1d, retry: 0 +2024-05-17 20:30:31.606 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:31.606 +02:00 [INF] Handling a message: friend_invited with ID: fbd0830c3aa24137b8b03e51300f783b, Correlation ID: 0026b59759474edc92eeed6cba312634, retry: 0 +2024-05-17 20:30:31.607 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: 'e26c9f8dff7d40278f6aabec8f26f071', Correlation ID: 'a8a55fcc83e34c2ebe2f3de406676c1d', retry 1/3... +2024-05-17 20:30:31.634 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:30:31.634 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:31.634 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:31.635 +02:00 [INF] Received HTTP response headers after 1.0837ms - 404 +2024-05-17 20:30:31.635 +02:00 [INF] End processing HTTP request after 1.4099ms - 404 +2024-05-17 20:30:31.635 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:31.636 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873" +2024-05-17 20:30:31.636 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:31.636 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:31.636 +02:00 [INF] Received HTTP response headers after 0.6262ms - 404 +2024-05-17 20:30:31.637 +02:00 [INF] End processing HTTP request after 1.115ms - 404 +2024-05-17 20:30:31.637 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:31.637 +02:00 [ERR] There was an error when processing a message with id: 'fbd0830c3aa24137b8b03e51300f783b'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:30:31.638 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:31.638 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fbd0830c3aa24137b8b03e51300f783b', Correlation ID: '0026b59759474edc92eeed6cba312634', retry 1/3... +2024-05-17 20:30:33.608 +02:00 [INF] Handling a message: friend_request_sent with ID: e26c9f8dff7d40278f6aabec8f26f071, Correlation ID: a8a55fcc83e34c2ebe2f3de406676c1d, retry: 1 +2024-05-17 20:30:33.608 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:33.608 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: 'e26c9f8dff7d40278f6aabec8f26f071', Correlation ID: 'a8a55fcc83e34c2ebe2f3de406676c1d', retry 2/3... +2024-05-17 20:30:33.641 +02:00 [INF] Handling a message: friend_invited with ID: fbd0830c3aa24137b8b03e51300f783b, Correlation ID: 0026b59759474edc92eeed6cba312634, retry: 1 +2024-05-17 20:30:33.669 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:30:33.669 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:33.669 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:33.670 +02:00 [INF] Received HTTP response headers after 0.6688ms - 404 +2024-05-17 20:30:33.670 +02:00 [INF] End processing HTTP request after 1.0135ms - 404 +2024-05-17 20:30:33.670 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:33.670 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873" +2024-05-17 20:30:33.671 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:33.671 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:33.672 +02:00 [INF] Received HTTP response headers after 0.6867ms - 404 +2024-05-17 20:30:33.672 +02:00 [INF] End processing HTTP request after 1.0041ms - 404 +2024-05-17 20:30:33.672 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:33.672 +02:00 [ERR] There was an error when processing a message with id: 'fbd0830c3aa24137b8b03e51300f783b'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:30:33.673 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:33.674 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fbd0830c3aa24137b8b03e51300f783b', Correlation ID: '0026b59759474edc92eeed6cba312634', retry 2/3... +2024-05-17 20:30:35.607 +02:00 [INF] Handling a message: friend_request_sent with ID: e26c9f8dff7d40278f6aabec8f26f071, Correlation ID: a8a55fcc83e34c2ebe2f3de406676c1d, retry: 2 +2024-05-17 20:30:35.608 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:35.609 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: 'e26c9f8dff7d40278f6aabec8f26f071', Correlation ID: 'a8a55fcc83e34c2ebe2f3de406676c1d', retry 3/3... +2024-05-17 20:30:35.671 +02:00 [INF] Handling a message: friend_invited with ID: fbd0830c3aa24137b8b03e51300f783b, Correlation ID: 0026b59759474edc92eeed6cba312634, retry: 2 +2024-05-17 20:30:35.700 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:30:35.701 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:35.701 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:35.703 +02:00 [INF] Received HTTP response headers after 1.8833ms - 404 +2024-05-17 20:30:35.705 +02:00 [INF] End processing HTTP request after 4.4685ms - 404 +2024-05-17 20:30:35.706 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:35.707 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873" +2024-05-17 20:30:35.707 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:35.708 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:35.710 +02:00 [INF] Received HTTP response headers after 2.198ms - 404 +2024-05-17 20:30:35.711 +02:00 [INF] End processing HTTP request after 3.3896ms - 404 +2024-05-17 20:30:35.711 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:35.712 +02:00 [ERR] There was an error when processing a message with id: 'fbd0830c3aa24137b8b03e51300f783b'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:30:35.713 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:35.715 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fbd0830c3aa24137b8b03e51300f783b', Correlation ID: '0026b59759474edc92eeed6cba312634', retry 3/3... +2024-05-17 20:30:37.608 +02:00 [INF] Handling a message: friend_request_sent with ID: e26c9f8dff7d40278f6aabec8f26f071, Correlation ID: a8a55fcc83e34c2ebe2f3de406676c1d, retry: 3 +2024-05-17 20:30:37.608 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:37.609 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: 'e26c9f8dff7d40278f6aabec8f26f071', Correlation ID: 'a8a55fcc83e34c2ebe2f3de406676c1d', retry 4/3... +2024-05-17 20:30:37.609 +02:00 [ERR] Handling a message: friend_request_sent with ID: e26c9f8dff7d40278f6aabec8f26f071, Correlation ID: a8a55fcc83e34c2ebe2f3de406676c1d failed +2024-05-17 20:30:37.716 +02:00 [INF] Handling a message: friend_invited with ID: fbd0830c3aa24137b8b03e51300f783b, Correlation ID: 0026b59759474edc92eeed6cba312634, retry: 3 +2024-05-17 20:30:37.745 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:30:37.746 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:37.746 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:30:37.748 +02:00 [INF] Received HTTP response headers after 1.7633ms - 404 +2024-05-17 20:30:37.749 +02:00 [INF] End processing HTTP request after 2.7406ms - 404 +2024-05-17 20:30:37.749 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:37.749 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873" +2024-05-17 20:30:37.749 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:37.750 +02:00 [INF] Sending HTTP request GET http://localhost:9999/localhost/students/3aeb3feb-3b0b-45fa-897f-04cf590e9873 +2024-05-17 20:30:37.752 +02:00 [INF] Received HTTP response headers after 1.4955ms - 404 +2024-05-17 20:30:37.753 +02:00 [INF] End processing HTTP request after 3.8433ms - 404 +2024-05-17 20:30:37.754 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 20:30:37.757 +02:00 [ERR] There was an error when processing a message with id: 'fbd0830c3aa24137b8b03e51300f783b'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 20:30:37.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 47 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:30:37.762 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fbd0830c3aa24137b8b03e51300f783b', Correlation ID: '0026b59759474edc92eeed6cba312634', retry 4/3... +2024-05-17 20:30:37.763 +02:00 [ERR] Handling a message: friend_invited with ID: fbd0830c3aa24137b8b03e51300f783b, Correlation ID: 0026b59759474edc92eeed6cba312634 failed +2024-05-17 20:31:35.608 +02:00 [INF] Deregistering a service [id: notifications-service:6934f692479942d49ca7d4b2b0e713de] from Consul... +2024-05-17 20:31:35.608 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:6934f692479942d49ca7d4b2b0e713de" +2024-05-17 20:31:35.608 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6934f692479942d49ca7d4b2b0e713de +2024-05-17 20:31:35.609 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6934f692479942d49ca7d4b2b0e713de +2024-05-17 20:31:35.611 +02:00 [INF] Received HTTP response headers after 1.6094ms - 200 +2024-05-17 20:31:35.611 +02:00 [INF] End processing HTTP request after 2.23ms - 200 +2024-05-17 20:31:35.611 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:31:35.611 +02:00 [INF] Deregistered a service [id: notifications-service:6934f692479942d49ca7d4b2b0e713de] from Consul. +2024-05-17 20:32:11.121 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:32:11.159 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:32:11.200 +02:00 [INF] Registering a service [id: notifications-service:de6efc4bc2094da4afa6a29f64e00329] in Consul... +2024-05-17 20:32:11.216 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:32:11.220 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:32:11.220 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:32:11.228 +02:00 [INF] Received HTTP response headers after 5.3352ms - 200 +2024-05-17 20:32:11.229 +02:00 [INF] End processing HTTP request after 9.9326ms - 200 +2024-05-17 20:32:11.231 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:32:11.232 +02:00 [INF] Registered a service [id: notifications-service:de6efc4bc2094da4afa6a29f64e00329] in Consul. +2024-05-17 20:32:11.238 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:32:11.248 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:32:11.252 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:32:11.254 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:32:11.257 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:32:11.260 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:32:11.263 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:32:11.265 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:32:17.926 +02:00 [INF] Received a message with ID: '68aa598401984ca688d1b8e6d99ca1a0', Correlation ID: '811c0b0c5cd84c15ada19f401341be1b', timestamp: 1715970737, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:32:17.926 +02:00 [INF] Received a message with ID: 'e0ddcf9508124484bea900906cf7c9a3', Correlation ID: '50edfb01be87444baf807741777519da', timestamp: 1715970737, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:32:17.961 +02:00 [INF] Handling a message: friend_request_sent with ID: 68aa598401984ca688d1b8e6d99ca1a0, Correlation ID: 811c0b0c5cd84c15ada19f401341be1b, retry: 0 +2024-05-17 20:32:17.961 +02:00 [INF] Handling a message: friend_invited with ID: e0ddcf9508124484bea900906cf7c9a3, Correlation ID: 50edfb01be87444baf807741777519da, retry: 0 +2024-05-17 20:32:17.963 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:32:17.973 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '68aa598401984ca688d1b8e6d99ca1a0', Correlation ID: '811c0b0c5cd84c15ada19f401341be1b', retry 1/3... +2024-05-17 20:32:18.011 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:32:18.012 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:32:18.012 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:32:18.045 +02:00 [INF] Received HTTP response headers after 33.3724ms - 200 +2024-05-17 20:32:18.046 +02:00 [INF] End processing HTTP request after 34.0457ms - 200 +2024-05-17 20:32:18.046 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:32:18.054 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/e61a5e4a-c2a0-4d6e-89c4-b5c6640795f6" +2024-05-17 20:32:18.055 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/e61a5e4a-c2a0-4d6e-89c4-b5c6640795f6 +2024-05-17 20:32:18.055 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/e61a5e4a-c2a0-4d6e-89c4-b5c6640795f6 +2024-05-17 20:32:18.086 +02:00 [INF] Received HTTP response headers after 30.8068ms - 200 +2024-05-17 20:32:18.086 +02:00 [INF] End processing HTTP request after 31.7578ms - 200 +2024-05-17 20:32:18.087 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:32:18.338 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to e61a5e4a-c2a0-4d6e-89c4-b5c6640795f6. +2024-05-17 20:32:18.345 +02:00 [INF] Handled a message: friend_invited with ID: e0ddcf9508124484bea900906cf7c9a3, Correlation ID: 50edfb01be87444baf807741777519da, retry: 0 +2024-05-17 20:32:19.976 +02:00 [INF] Handling a message: friend_request_sent with ID: 68aa598401984ca688d1b8e6d99ca1a0, Correlation ID: 811c0b0c5cd84c15ada19f401341be1b, retry: 1 +2024-05-17 20:32:19.976 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:32:19.978 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '68aa598401984ca688d1b8e6d99ca1a0', Correlation ID: '811c0b0c5cd84c15ada19f401341be1b', retry 2/3... +2024-05-17 20:32:21.980 +02:00 [INF] Handling a message: friend_request_sent with ID: 68aa598401984ca688d1b8e6d99ca1a0, Correlation ID: 811c0b0c5cd84c15ada19f401341be1b, retry: 2 +2024-05-17 20:32:21.981 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:32:21.982 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '68aa598401984ca688d1b8e6d99ca1a0', Correlation ID: '811c0b0c5cd84c15ada19f401341be1b', retry 3/3... +2024-05-17 20:32:23.983 +02:00 [INF] Handling a message: friend_request_sent with ID: 68aa598401984ca688d1b8e6d99ca1a0, Correlation ID: 811c0b0c5cd84c15ada19f401341be1b, retry: 3 +2024-05-17 20:32:23.985 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:32:23.986 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '68aa598401984ca688d1b8e6d99ca1a0', Correlation ID: '811c0b0c5cd84c15ada19f401341be1b', retry 4/3... +2024-05-17 20:32:23.986 +02:00 [ERR] Handling a message: friend_request_sent with ID: 68aa598401984ca688d1b8e6d99ca1a0, Correlation ID: 811c0b0c5cd84c15ada19f401341be1b failed +2024-05-17 20:34:47.654 +02:00 [INF] Deregistering a service [id: notifications-service:de6efc4bc2094da4afa6a29f64e00329] from Consul... +2024-05-17 20:34:47.656 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:de6efc4bc2094da4afa6a29f64e00329" +2024-05-17 20:34:47.656 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:de6efc4bc2094da4afa6a29f64e00329 +2024-05-17 20:34:47.656 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:de6efc4bc2094da4afa6a29f64e00329 +2024-05-17 20:34:47.660 +02:00 [INF] Received HTTP response headers after 3.6135ms - 200 +2024-05-17 20:34:47.660 +02:00 [INF] End processing HTTP request after 4.1969ms - 200 +2024-05-17 20:34:47.660 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:34:47.661 +02:00 [INF] Deregistered a service [id: notifications-service:de6efc4bc2094da4afa6a29f64e00329] from Consul. +2024-05-17 20:35:04.086 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:35:04.125 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:35:04.187 +02:00 [INF] Registering a service [id: notifications-service:798fa65b80544d04b35cbbbefe4152be] in Consul... +2024-05-17 20:35:04.207 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:35:04.212 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:35:04.213 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:35:04.220 +02:00 [INF] Received HTTP response headers after 4.8734ms - 200 +2024-05-17 20:35:04.221 +02:00 [INF] End processing HTTP request after 10.3293ms - 200 +2024-05-17 20:35:04.224 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:35:04.224 +02:00 [INF] Registered a service [id: notifications-service:798fa65b80544d04b35cbbbefe4152be] in Consul. +2024-05-17 20:35:04.231 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:35:04.241 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:35:04.245 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:35:04.247 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:35:04.249 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:35:04.251 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:35:04.253 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:35:04.256 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:35:07.184 +02:00 [INF] Received a message with ID: '11d84b7ceb9e413c8745fdc8c5e6e493', Correlation ID: '8ba9c02d453545f6bab8b57a07635764', timestamp: 1715970907, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:35:07.185 +02:00 [INF] Received a message with ID: '2189b11a0e484bee98bcfba8c7741605', Correlation ID: 'c95dacf6463f41c09a3bc5f5a87f821d', timestamp: 1715970907, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:35:07.219 +02:00 [INF] Handling a message: friend_invited with ID: 11d84b7ceb9e413c8745fdc8c5e6e493, Correlation ID: 8ba9c02d453545f6bab8b57a07635764, retry: 0 +2024-05-17 20:35:07.219 +02:00 [INF] Handling a message: friend_request_sent with ID: 2189b11a0e484bee98bcfba8c7741605, Correlation ID: c95dacf6463f41c09a3bc5f5a87f821d, retry: 0 +2024-05-17 20:35:07.222 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:35:07.231 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2189b11a0e484bee98bcfba8c7741605', Correlation ID: 'c95dacf6463f41c09a3bc5f5a87f821d', retry 1/3... +2024-05-17 20:35:07.302 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:35:07.303 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:35:07.304 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:35:07.353 +02:00 [INF] Received HTTP response headers after 48.2623ms - 200 +2024-05-17 20:35:07.355 +02:00 [INF] End processing HTTP request after 51.7372ms - 200 +2024-05-17 20:35:07.357 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:35:07.366 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/90185078-d09d-4899-b124-4006dbdc01f4" +2024-05-17 20:35:07.366 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/90185078-d09d-4899-b124-4006dbdc01f4 +2024-05-17 20:35:07.366 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/90185078-d09d-4899-b124-4006dbdc01f4 +2024-05-17 20:35:07.549 +02:00 [INF] Received HTTP response headers after 182.5226ms - 200 +2024-05-17 20:35:07.550 +02:00 [INF] End processing HTTP request after 183.6138ms - 200 +2024-05-17 20:35:07.550 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:35:07.799 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 90185078-d09d-4899-b124-4006dbdc01f4. +2024-05-17 20:35:07.805 +02:00 [INF] Handled a message: friend_invited with ID: 11d84b7ceb9e413c8745fdc8c5e6e493, Correlation ID: 8ba9c02d453545f6bab8b57a07635764, retry: 0 +2024-05-17 20:35:09.232 +02:00 [INF] Handling a message: friend_request_sent with ID: 2189b11a0e484bee98bcfba8c7741605, Correlation ID: c95dacf6463f41c09a3bc5f5a87f821d, retry: 1 +2024-05-17 20:35:09.233 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:35:09.234 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2189b11a0e484bee98bcfba8c7741605', Correlation ID: 'c95dacf6463f41c09a3bc5f5a87f821d', retry 2/3... +2024-05-17 20:35:11.236 +02:00 [INF] Handling a message: friend_request_sent with ID: 2189b11a0e484bee98bcfba8c7741605, Correlation ID: c95dacf6463f41c09a3bc5f5a87f821d, retry: 2 +2024-05-17 20:35:11.236 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:35:11.237 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2189b11a0e484bee98bcfba8c7741605', Correlation ID: 'c95dacf6463f41c09a3bc5f5a87f821d', retry 3/3... +2024-05-17 20:35:13.236 +02:00 [INF] Handling a message: friend_request_sent with ID: 2189b11a0e484bee98bcfba8c7741605, Correlation ID: c95dacf6463f41c09a3bc5f5a87f821d, retry: 3 +2024-05-17 20:35:13.237 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:35:13.238 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '2189b11a0e484bee98bcfba8c7741605', Correlation ID: 'c95dacf6463f41c09a3bc5f5a87f821d', retry 4/3... +2024-05-17 20:35:13.238 +02:00 [ERR] Handling a message: friend_request_sent with ID: 2189b11a0e484bee98bcfba8c7741605, Correlation ID: c95dacf6463f41c09a3bc5f5a87f821d failed +2024-05-17 20:36:11.766 +02:00 [INF] Deregistering a service [id: notifications-service:798fa65b80544d04b35cbbbefe4152be] from Consul... +2024-05-17 20:36:11.769 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:798fa65b80544d04b35cbbbefe4152be" +2024-05-17 20:36:11.770 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:798fa65b80544d04b35cbbbefe4152be +2024-05-17 20:36:11.771 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:798fa65b80544d04b35cbbbefe4152be +2024-05-17 20:36:11.783 +02:00 [INF] Received HTTP response headers after 11.7822ms - 200 +2024-05-17 20:36:11.785 +02:00 [INF] End processing HTTP request after 14.8567ms - 200 +2024-05-17 20:36:11.785 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:36:11.789 +02:00 [INF] Deregistered a service [id: notifications-service:798fa65b80544d04b35cbbbefe4152be] from Consul. +2024-05-17 20:49:40.042 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:49:40.082 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:49:40.135 +02:00 [INF] Registering a service [id: notifications-service:ff70d2b57123420c8f9e35d7defc78b5] in Consul... +2024-05-17 20:49:40.155 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:49:40.160 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:49:40.161 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:49:40.182 +02:00 [INF] Received HTTP response headers after 18.9285ms - 200 +2024-05-17 20:49:40.183 +02:00 [INF] End processing HTTP request after 23.3521ms - 200 +2024-05-17 20:49:40.186 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:49:40.187 +02:00 [INF] Registered a service [id: notifications-service:ff70d2b57123420c8f9e35d7defc78b5] in Consul. +2024-05-17 20:49:40.195 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:49:40.204 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:49:40.209 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:49:40.211 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:49:40.213 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:49:40.216 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:49:40.219 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:49:40.221 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:49:47.528 +02:00 [INF] Received a message with ID: '1762f6142a274fd4a19f362f0f413106', Correlation ID: '1e881d8f42a149b99ca66f85994d2de9', timestamp: 1715971787, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:49:47.528 +02:00 [INF] Received a message with ID: '8d6354d1c4fb4ee1b9868f723e5973a9', Correlation ID: 'd36b83649e0848d192f5bd32cd595eee', timestamp: 1715971787, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:49:47.558 +02:00 [INF] Handling a message: friend_invited with ID: 8d6354d1c4fb4ee1b9868f723e5973a9, Correlation ID: d36b83649e0848d192f5bd32cd595eee, retry: 0 +2024-05-17 20:49:47.558 +02:00 [INF] Handling a message: friend_request_sent with ID: 1762f6142a274fd4a19f362f0f413106, Correlation ID: 1e881d8f42a149b99ca66f85994d2de9, retry: 0 +2024-05-17 20:49:47.563 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:49:47.579 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '1762f6142a274fd4a19f362f0f413106', Correlation ID: '1e881d8f42a149b99ca66f85994d2de9', retry 1/3... +2024-05-17 20:49:47.622 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:49:47.622 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:49:47.623 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:49:47.913 +02:00 [INF] Received HTTP response headers after 289.9566ms - 200 +2024-05-17 20:49:47.913 +02:00 [INF] End processing HTTP request after 290.9904ms - 200 +2024-05-17 20:49:47.914 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:49:47.933 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f971c185-4c39-4b2a-8368-3eb2f8145cc7" +2024-05-17 20:49:47.934 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f971c185-4c39-4b2a-8368-3eb2f8145cc7 +2024-05-17 20:49:47.934 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f971c185-4c39-4b2a-8368-3eb2f8145cc7 +2024-05-17 20:49:47.962 +02:00 [INF] Received HTTP response headers after 28.2772ms - 200 +2024-05-17 20:49:47.963 +02:00 [INF] End processing HTTP request after 29.0511ms - 200 +2024-05-17 20:49:47.963 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:49:48.144 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to f971c185-4c39-4b2a-8368-3eb2f8145cc7. +2024-05-17 20:49:48.146 +02:00 [INF] Handled a message: friend_invited with ID: 8d6354d1c4fb4ee1b9868f723e5973a9, Correlation ID: d36b83649e0848d192f5bd32cd595eee, retry: 0 +2024-05-17 20:49:49.579 +02:00 [INF] Handling a message: friend_request_sent with ID: 1762f6142a274fd4a19f362f0f413106, Correlation ID: 1e881d8f42a149b99ca66f85994d2de9, retry: 1 +2024-05-17 20:49:49.580 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:49:49.580 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '1762f6142a274fd4a19f362f0f413106', Correlation ID: '1e881d8f42a149b99ca66f85994d2de9', retry 2/3... +2024-05-17 20:49:51.581 +02:00 [INF] Handling a message: friend_request_sent with ID: 1762f6142a274fd4a19f362f0f413106, Correlation ID: 1e881d8f42a149b99ca66f85994d2de9, retry: 2 +2024-05-17 20:49:51.583 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:49:51.585 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '1762f6142a274fd4a19f362f0f413106', Correlation ID: '1e881d8f42a149b99ca66f85994d2de9', retry 3/3... +2024-05-17 20:49:53.585 +02:00 [INF] Handling a message: friend_request_sent with ID: 1762f6142a274fd4a19f362f0f413106, Correlation ID: 1e881d8f42a149b99ca66f85994d2de9, retry: 3 +2024-05-17 20:49:53.587 +02:00 [ERR] No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. +System.InvalidOperationException: No service for type 'Convey.CQRS.Events.IEventHandler`1[MiniSpace.Services.Notifications.Application.Events.External.FriendRequestSent]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 20:49:53.589 +02:00 [ERR] Unable to handle a message: 'friend_request_sent' with ID: '1762f6142a274fd4a19f362f0f413106', Correlation ID: '1e881d8f42a149b99ca66f85994d2de9', retry 4/3... +2024-05-17 20:49:53.589 +02:00 [ERR] Handling a message: friend_request_sent with ID: 1762f6142a274fd4a19f362f0f413106, Correlation ID: 1e881d8f42a149b99ca66f85994d2de9 failed +2024-05-17 20:57:20.682 +02:00 [INF] Deregistering a service [id: notifications-service:ff70d2b57123420c8f9e35d7defc78b5] from Consul... +2024-05-17 20:57:20.683 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ff70d2b57123420c8f9e35d7defc78b5" +2024-05-17 20:57:20.683 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ff70d2b57123420c8f9e35d7defc78b5 +2024-05-17 20:57:20.683 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ff70d2b57123420c8f9e35d7defc78b5 +2024-05-17 20:57:20.687 +02:00 [INF] Received HTTP response headers after 3.2165ms - 200 +2024-05-17 20:57:20.687 +02:00 [INF] End processing HTTP request after 3.714ms - 200 +2024-05-17 20:57:20.687 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:57:20.687 +02:00 [INF] Deregistered a service [id: notifications-service:ff70d2b57123420c8f9e35d7defc78b5] from Consul. +2024-05-17 20:57:30.081 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 20:57:30.117 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 20:57:30.166 +02:00 [INF] Registering a service [id: notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc] in Consul... +2024-05-17 20:57:30.184 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 20:57:30.188 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:57:30.189 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 20:57:30.196 +02:00 [INF] Received HTTP response headers after 5.5606ms - 200 +2024-05-17 20:57:30.197 +02:00 [INF] End processing HTTP request after 9.6326ms - 200 +2024-05-17 20:57:30.200 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:57:30.200 +02:00 [INF] Registered a service [id: notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc] in Consul. +2024-05-17 20:57:30.206 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 20:57:30.214 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 20:57:30.216 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 20:57:30.218 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 20:57:30.220 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 20:57:30.222 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 20:57:30.224 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 20:57:30.226 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 20:57:51.373 +02:00 [INF] Received a message with ID: '6f65497551e9427a9fea29214807f901', Correlation ID: '7b2572ca45eb497096dbb3c60a9f6b0f', timestamp: 1715972271, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 20:57:51.373 +02:00 [INF] Received a message with ID: 'f78332a318ba4c55a72235f96abae2c4', Correlation ID: 'b707778bd454412aad4712d290293b7c', timestamp: 1715972271, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 20:57:51.393 +02:00 [INF] Handling a message: friend_request_sent with ID: 6f65497551e9427a9fea29214807f901, Correlation ID: 7b2572ca45eb497096dbb3c60a9f6b0f, retry: 0 +2024-05-17 20:57:51.393 +02:00 [INF] Handling a message: friend_invited with ID: f78332a318ba4c55a72235f96abae2c4, Correlation ID: b707778bd454412aad4712d290293b7c, retry: 0 +2024-05-17 20:57:51.444 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 20:57:51.444 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:57:51.445 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 20:57:51.481 +02:00 [INF] Received HTTP response headers after 36.1159ms - 200 +2024-05-17 20:57:51.481 +02:00 [INF] End processing HTTP request after 36.8821ms - 200 +2024-05-17 20:57:51.482 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:57:51.497 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bd83821d-a321-4418-a31d-627ac308f4f4" +2024-05-17 20:57:51.498 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bd83821d-a321-4418-a31d-627ac308f4f4 +2024-05-17 20:57:51.498 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bd83821d-a321-4418-a31d-627ac308f4f4 +2024-05-17 20:57:51.527 +02:00 [INF] Received HTTP response headers after 29.3118ms - 200 +2024-05-17 20:57:51.528 +02:00 [INF] End processing HTTP request after 30.8948ms - 200 +2024-05-17 20:57:51.529 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 20:57:51.710 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bd83821d-a321-4418-a31d-627ac308f4f4. +2024-05-17 20:57:51.712 +02:00 [INF] Handled a message: friend_invited with ID: f78332a318ba4c55a72235f96abae2c4, Correlation ID: b707778bd454412aad4712d290293b7c, retry: 0 +2024-05-17 20:57:51.776 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bd83821d-a321-4418-a31d-627ac308f4f4. +2024-05-17 20:57:51.776 +02:00 [INF] Handled a message: friend_request_sent with ID: 6f65497551e9427a9fea29214807f901, Correlation ID: 7b2572ca45eb497096dbb3c60a9f6b0f, retry: 0 +2024-05-17 21:33:37.313 +02:00 [INF] Deregistering a service [id: notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc] from Consul... +2024-05-17 21:33:37.319 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc" +2024-05-17 21:33:37.319 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc +2024-05-17 21:33:37.319 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc +2024-05-17 21:33:37.331 +02:00 [INF] Received HTTP response headers after 10.9991ms - 200 +2024-05-17 21:33:37.331 +02:00 [INF] End processing HTTP request after 12.2814ms - 200 +2024-05-17 21:33:37.331 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:33:37.333 +02:00 [INF] Deregistered a service [id: notifications-service:abf35de809ac4bcc9ffe577aeea2c8bc] from Consul. +2024-05-17 21:33:44.897 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:33:44.943 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:33:44.988 +02:00 [INF] Registering a service [id: notifications-service:132991832e1a46b89bccdf5b139fac4f] in Consul... +2024-05-17 21:33:45.008 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:33:45.012 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:33:45.013 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:33:45.026 +02:00 [INF] Received HTTP response headers after 10.3872ms - 200 +2024-05-17 21:33:45.027 +02:00 [INF] End processing HTTP request after 15.5639ms - 200 +2024-05-17 21:33:45.030 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:33:45.031 +02:00 [INF] Registered a service [id: notifications-service:132991832e1a46b89bccdf5b139fac4f] in Consul. +2024-05-17 21:33:45.037 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:33:45.045 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:33:45.047 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:33:45.049 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:33:45.051 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:33:45.054 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:33:45.056 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:33:45.058 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:34:49.787 +02:00 [INF] Received a message with ID: '53c20f545a034fbfbfd9aedfa2eeff57', Correlation ID: '3b1e8f9565444560aef7a2e74695868f', timestamp: 1715974489, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:34:49.787 +02:00 [INF] Received a message with ID: '525c5537bc9f49cb825089056ac070e8', Correlation ID: '6e827928682c44829182ae9d032d1af0', timestamp: 1715974489, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:34:49.813 +02:00 [INF] Handling a message: friend_invited with ID: 53c20f545a034fbfbfd9aedfa2eeff57, Correlation ID: 3b1e8f9565444560aef7a2e74695868f, retry: 0 +2024-05-17 21:34:49.813 +02:00 [INF] Handling a message: friend_request_sent with ID: 525c5537bc9f49cb825089056ac070e8, Correlation ID: 6e827928682c44829182ae9d032d1af0, retry: 0 +2024-05-17 21:34:49.819 +02:00 [ERR] Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. +System.InvalidOperationException: Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:34:49.833 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '53c20f545a034fbfbfd9aedfa2eeff57', Correlation ID: '3b1e8f9565444560aef7a2e74695868f', retry 1/3... +2024-05-17 21:34:50.042 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bfd279dc-6a89-43c0-ae0b-a75ad272563a. +2024-05-17 21:34:50.045 +02:00 [INF] Handled a message: friend_request_sent with ID: 525c5537bc9f49cb825089056ac070e8, Correlation ID: 6e827928682c44829182ae9d032d1af0, retry: 0 +2024-05-17 21:34:51.837 +02:00 [INF] Handling a message: friend_invited with ID: 53c20f545a034fbfbfd9aedfa2eeff57, Correlation ID: 3b1e8f9565444560aef7a2e74695868f, retry: 1 +2024-05-17 21:34:51.838 +02:00 [ERR] Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. +System.InvalidOperationException: Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:34:51.839 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '53c20f545a034fbfbfd9aedfa2eeff57', Correlation ID: '3b1e8f9565444560aef7a2e74695868f', retry 2/3... +2024-05-17 21:34:53.844 +02:00 [INF] Handling a message: friend_invited with ID: 53c20f545a034fbfbfd9aedfa2eeff57, Correlation ID: 3b1e8f9565444560aef7a2e74695868f, retry: 2 +2024-05-17 21:34:53.845 +02:00 [ERR] Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. +System.InvalidOperationException: Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:34:53.847 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '53c20f545a034fbfbfd9aedfa2eeff57', Correlation ID: '3b1e8f9565444560aef7a2e74695868f', retry 3/3... +2024-05-17 21:34:55.848 +02:00 [INF] Handling a message: friend_invited with ID: 53c20f545a034fbfbfd9aedfa2eeff57, Correlation ID: 3b1e8f9565444560aef7a2e74695868f, retry: 3 +2024-05-17 21:34:55.850 +02:00 [ERR] Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. +System.InvalidOperationException: Unable to resolve service for type 'MiniSpace.Services.Notifications.Core.Repositories.IStudentNotificationsRepository' while attempting to activate 'MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(IServiceProvider provider, Type instanceType, Object[] parameters) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetServiceOrCreateInstance(IServiceProvider provider, Type type) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.GetInstance(IServiceProvider provider, ServiceDescriptor descriptor) + at Microsoft.Extensions.DependencyInjection.ServiceCollectionExtensions.<>c__DisplayClass20_0.b__0(IServiceProvider provider) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass2_0.b__0(ServiceProviderEngineScope scope) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:34:55.852 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '53c20f545a034fbfbfd9aedfa2eeff57', Correlation ID: '3b1e8f9565444560aef7a2e74695868f', retry 4/3... +2024-05-17 21:34:55.853 +02:00 [ERR] Handling a message: friend_invited with ID: 53c20f545a034fbfbfd9aedfa2eeff57, Correlation ID: 3b1e8f9565444560aef7a2e74695868f failed +2024-05-17 21:35:47.607 +02:00 [INF] Deregistering a service [id: notifications-service:132991832e1a46b89bccdf5b139fac4f] from Consul... +2024-05-17 21:35:47.608 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:132991832e1a46b89bccdf5b139fac4f" +2024-05-17 21:35:47.609 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:132991832e1a46b89bccdf5b139fac4f +2024-05-17 21:35:47.609 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:132991832e1a46b89bccdf5b139fac4f +2024-05-17 21:35:47.612 +02:00 [INF] Received HTTP response headers after 2.4303ms - 200 +2024-05-17 21:35:47.612 +02:00 [INF] End processing HTTP request after 3.3748ms - 200 +2024-05-17 21:35:47.612 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:35:47.613 +02:00 [INF] Deregistered a service [id: notifications-service:132991832e1a46b89bccdf5b139fac4f] from Consul. +2024-05-17 21:35:54.762 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:35:54.800 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:35:54.885 +02:00 [INF] Registering a service [id: notifications-service:8d76747cbfb94944b0930d3406c3822a] in Consul... +2024-05-17 21:35:54.905 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:35:54.909 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:35:54.910 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:35:54.917 +02:00 [INF] Received HTTP response headers after 4.7648ms - 200 +2024-05-17 21:35:54.918 +02:00 [INF] End processing HTTP request after 9.6288ms - 200 +2024-05-17 21:35:54.920 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:35:54.921 +02:00 [INF] Registered a service [id: notifications-service:8d76747cbfb94944b0930d3406c3822a] in Consul. +2024-05-17 21:35:54.927 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:35:54.937 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:35:54.940 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:35:54.942 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:35:54.945 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:35:54.947 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:35:54.950 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:35:54.952 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:35:56.478 +02:00 [INF] Received a message with ID: '305442fde7ec404f96fe929b3affcd3f', Correlation ID: '42bbe8534fda45bfa97ca5bc63a31361', timestamp: 1715974556, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:35:56.478 +02:00 [INF] Received a message with ID: 'eb780f873eb742d3a5a2333dc545736b', Correlation ID: '02d2724872b8489a8c45781d51612f2c', timestamp: 1715974556, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:35:56.496 +02:00 [INF] Handling a message: friend_request_sent with ID: 305442fde7ec404f96fe929b3affcd3f, Correlation ID: 42bbe8534fda45bfa97ca5bc63a31361, retry: 0 +2024-05-17 21:35:56.496 +02:00 [INF] Handling a message: friend_invited with ID: eb780f873eb742d3a5a2333dc545736b, Correlation ID: 02d2724872b8489a8c45781d51612f2c, retry: 0 +2024-05-17 21:35:56.700 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to d3f36e86-0feb-4eeb-a6b0-8ab92d9c598f. +2024-05-17 21:35:56.702 +02:00 [INF] Handled a message: friend_request_sent with ID: 305442fde7ec404f96fe929b3affcd3f, Correlation ID: 42bbe8534fda45bfa97ca5bc63a31361, retry: 0 +2024-05-17 21:35:56.784 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:35:56.785 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:35:56.785 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:35:57.073 +02:00 [INF] Received HTTP response headers after 287.5542ms - 200 +2024-05-17 21:35:57.073 +02:00 [INF] End processing HTTP request after 288.3416ms - 200 +2024-05-17 21:35:57.073 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:35:57.088 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/d3f36e86-0feb-4eeb-a6b0-8ab92d9c598f" +2024-05-17 21:35:57.088 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/d3f36e86-0feb-4eeb-a6b0-8ab92d9c598f +2024-05-17 21:35:57.089 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/d3f36e86-0feb-4eeb-a6b0-8ab92d9c598f +2024-05-17 21:35:57.148 +02:00 [INF] Received HTTP response headers after 59.0289ms - 200 +2024-05-17 21:35:57.149 +02:00 [INF] End processing HTTP request after 60.1671ms - 200 +2024-05-17 21:35:57.149 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:35:57.346 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to d3f36e86-0feb-4eeb-a6b0-8ab92d9c598f. +2024-05-17 21:35:57.347 +02:00 [INF] Handled a message: friend_invited with ID: eb780f873eb742d3a5a2333dc545736b, Correlation ID: 02d2724872b8489a8c45781d51612f2c, retry: 0 +2024-05-17 21:39:59.164 +02:00 [INF] Deregistering a service [id: notifications-service:8d76747cbfb94944b0930d3406c3822a] from Consul... +2024-05-17 21:39:59.165 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8d76747cbfb94944b0930d3406c3822a" +2024-05-17 21:39:59.165 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8d76747cbfb94944b0930d3406c3822a +2024-05-17 21:39:59.166 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8d76747cbfb94944b0930d3406c3822a +2024-05-17 21:39:59.168 +02:00 [INF] Received HTTP response headers after 1.9182ms - 200 +2024-05-17 21:39:59.169 +02:00 [INF] End processing HTTP request after 3.4705ms - 200 +2024-05-17 21:39:59.169 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:39:59.170 +02:00 [INF] Deregistered a service [id: notifications-service:8d76747cbfb94944b0930d3406c3822a] from Consul. +2024-05-17 21:40:14.138 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:40:14.172 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:40:14.220 +02:00 [INF] Registering a service [id: notifications-service:2401031718af4ed5b80d7a5ad15b59bd] in Consul... +2024-05-17 21:40:14.236 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:40:14.241 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:40:14.241 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:40:14.248 +02:00 [INF] Received HTTP response headers after 4.3214ms - 200 +2024-05-17 21:40:14.249 +02:00 [INF] End processing HTTP request after 9.1003ms - 200 +2024-05-17 21:40:14.251 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:40:14.252 +02:00 [INF] Registered a service [id: notifications-service:2401031718af4ed5b80d7a5ad15b59bd] in Consul. +2024-05-17 21:40:14.258 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:40:14.267 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:40:14.269 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:40:14.270 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:40:14.273 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:40:14.275 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:40:14.277 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:40:14.279 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:40:15.505 +02:00 [INF] Received a message with ID: 'f520f30970e544bfae8ac015eab50d29', Correlation ID: '6453c355221942b5a33ee91459c57100', timestamp: 1715974815, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:40:15.505 +02:00 [INF] Received a message with ID: '69b9fec64c974f7098d560c6801c804f', Correlation ID: '941a203e092343c98135395ec890d3d7', timestamp: 1715974815, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:40:15.524 +02:00 [INF] Handling a message: friend_request_sent with ID: 69b9fec64c974f7098d560c6801c804f, Correlation ID: 941a203e092343c98135395ec890d3d7, retry: 0 +2024-05-17 21:40:15.524 +02:00 [INF] Handling a message: friend_invited with ID: f520f30970e544bfae8ac015eab50d29, Correlation ID: 6453c355221942b5a33ee91459c57100, retry: 0 +2024-05-17 21:40:15.587 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:40:15.587 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:40:15.587 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:40:15.624 +02:00 [INF] Received HTTP response headers after 36.4083ms - 200 +2024-05-17 21:40:15.624 +02:00 [INF] End processing HTTP request after 37.1595ms - 200 +2024-05-17 21:40:15.624 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:40:15.639 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/8ad30685-fb77-49aa-9d20-d4cc2072d4ae" +2024-05-17 21:40:15.640 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/8ad30685-fb77-49aa-9d20-d4cc2072d4ae +2024-05-17 21:40:15.640 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/8ad30685-fb77-49aa-9d20-d4cc2072d4ae +2024-05-17 21:40:15.695 +02:00 [INF] Received HTTP response headers after 55.4016ms - 200 +2024-05-17 21:40:15.696 +02:00 [INF] End processing HTTP request after 56.2342ms - 200 +2024-05-17 21:40:15.696 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:40:15.943 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 8ad30685-fb77-49aa-9d20-d4cc2072d4ae. +2024-05-17 21:40:15.945 +02:00 [INF] Handled a message: friend_request_sent with ID: 69b9fec64c974f7098d560c6801c804f, Correlation ID: 941a203e092343c98135395ec890d3d7, retry: 0 +2024-05-17 21:40:15.956 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 8ad30685-fb77-49aa-9d20-d4cc2072d4ae. +2024-05-17 21:40:15.956 +02:00 [INF] Handled a message: friend_invited with ID: f520f30970e544bfae8ac015eab50d29, Correlation ID: 6453c355221942b5a33ee91459c57100, retry: 0 +2024-05-17 21:47:28.945 +02:00 [INF] Received a message with ID: '0469f5726abb48a19f591d329c2c0c68', Correlation ID: 'b2a3aabea74b4d5fa47ee62b2a77a8de', timestamp: 1715975248, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:47:28.945 +02:00 [INF] Received a message with ID: 'a5370a293b344438b39ba1097ec14e7b', Correlation ID: '1e41d1915fd1478fa59d5093fd390f08', timestamp: 1715975248, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:47:28.946 +02:00 [INF] Handling a message: friend_invited with ID: 0469f5726abb48a19f591d329c2c0c68, Correlation ID: b2a3aabea74b4d5fa47ee62b2a77a8de, retry: 0 +2024-05-17 21:47:28.946 +02:00 [INF] Handling a message: friend_request_sent with ID: a5370a293b344438b39ba1097ec14e7b, Correlation ID: 1e41d1915fd1478fa59d5093fd390f08, retry: 0 +2024-05-17 21:47:28.979 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:28.980 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:28.980 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:29.013 +02:00 [INF] Received HTTP response headers after 32.5619ms - 200 +2024-05-17 21:47:29.014 +02:00 [INF] End processing HTTP request after 34.4874ms - 200 +2024-05-17 21:47:29.014 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:29.016 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33" +2024-05-17 21:47:29.016 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:29.016 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:29.048 +02:00 [INF] Received HTTP response headers after 31.1622ms - 200 +2024-05-17 21:47:29.049 +02:00 [INF] End processing HTTP request after 32.726ms - 200 +2024-05-17 21:47:29.049 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:29.058 +02:00 [ERR] There was an error when processing a message with id: '0469f5726abb48a19f591d329c2c0c68'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:47:29.075 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 195ee268-3601-4d09-944c-eb78730d1e33. +2024-05-17 21:47:29.100 +02:00 [INF] Handled a message: friend_request_sent with ID: a5370a293b344438b39ba1097ec14e7b, Correlation ID: 1e41d1915fd1478fa59d5093fd390f08, retry: 0 +2024-05-17 21:47:29.100 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:47:29.107 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0469f5726abb48a19f591d329c2c0c68', Correlation ID: 'b2a3aabea74b4d5fa47ee62b2a77a8de', retry 1/3... +2024-05-17 21:47:31.116 +02:00 [INF] Handling a message: friend_invited with ID: 0469f5726abb48a19f591d329c2c0c68, Correlation ID: b2a3aabea74b4d5fa47ee62b2a77a8de, retry: 1 +2024-05-17 21:47:31.149 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:31.149 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:31.150 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:31.191 +02:00 [INF] Received HTTP response headers after 41.0068ms - 200 +2024-05-17 21:47:31.191 +02:00 [INF] End processing HTTP request after 42.1193ms - 200 +2024-05-17 21:47:31.192 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:31.192 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33" +2024-05-17 21:47:31.192 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:31.192 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:31.224 +02:00 [INF] Received HTTP response headers after 30.1354ms - 200 +2024-05-17 21:47:31.224 +02:00 [INF] End processing HTTP request after 32.2884ms - 200 +2024-05-17 21:47:31.225 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:31.226 +02:00 [ERR] There was an error when processing a message with id: '0469f5726abb48a19f591d329c2c0c68'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:47:31.228 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:47:31.231 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0469f5726abb48a19f591d329c2c0c68', Correlation ID: 'b2a3aabea74b4d5fa47ee62b2a77a8de', retry 2/3... +2024-05-17 21:47:33.232 +02:00 [INF] Handling a message: friend_invited with ID: 0469f5726abb48a19f591d329c2c0c68, Correlation ID: b2a3aabea74b4d5fa47ee62b2a77a8de, retry: 2 +2024-05-17 21:47:33.260 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:33.261 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:33.261 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:33.294 +02:00 [INF] Received HTTP response headers after 32.3432ms - 200 +2024-05-17 21:47:33.294 +02:00 [INF] End processing HTTP request after 33.7448ms - 200 +2024-05-17 21:47:33.295 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:33.295 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33" +2024-05-17 21:47:33.296 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:33.296 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:33.337 +02:00 [INF] Received HTTP response headers after 40.5758ms - 200 +2024-05-17 21:47:33.343 +02:00 [INF] End processing HTTP request after 46.8714ms - 200 +2024-05-17 21:47:33.344 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:33.347 +02:00 [ERR] There was an error when processing a message with id: '0469f5726abb48a19f591d329c2c0c68'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:47:33.364 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:47:33.380 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0469f5726abb48a19f591d329c2c0c68', Correlation ID: 'b2a3aabea74b4d5fa47ee62b2a77a8de', retry 3/3... +2024-05-17 21:47:33.564 +02:00 [INF] Received a message with ID: '4b613813b0ee4d8aaa64c53efb0635ff', Correlation ID: '6bf45cdeb84149a9a291dcdaa9377af2', timestamp: 1715975253, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:47:33.569 +02:00 [INF] Handling a message: friend_request_sent with ID: 4b613813b0ee4d8aaa64c53efb0635ff, Correlation ID: 6bf45cdeb84149a9a291dcdaa9377af2, retry: 0 +2024-05-17 21:47:33.688 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 700ce416-5d8b-4e16-9d48-606f661a7072. +2024-05-17 21:47:33.688 +02:00 [INF] Handled a message: friend_request_sent with ID: 4b613813b0ee4d8aaa64c53efb0635ff, Correlation ID: 6bf45cdeb84149a9a291dcdaa9377af2, retry: 0 +2024-05-17 21:47:35.364 +02:00 [INF] Received a message with ID: '4db876c6826e4c129ef5058176e3a66a', Correlation ID: 'ddfb5e79e2da4a0aa0cbb41ddba9aa8a', timestamp: 1715975255, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:47:35.365 +02:00 [INF] Handling a message: friend_request_sent with ID: 4db876c6826e4c129ef5058176e3a66a, Correlation ID: ddfb5e79e2da4a0aa0cbb41ddba9aa8a, retry: 0 +2024-05-17 21:47:35.380 +02:00 [INF] Handling a message: friend_invited with ID: 0469f5726abb48a19f591d329c2c0c68, Correlation ID: b2a3aabea74b4d5fa47ee62b2a77a8de, retry: 3 +2024-05-17 21:47:35.407 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:35.407 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.407 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.436 +02:00 [INF] Received HTTP response headers after 28.8156ms - 200 +2024-05-17 21:47:35.436 +02:00 [INF] End processing HTTP request after 29.1526ms - 200 +2024-05-17 21:47:35.436 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:35.439 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33" +2024-05-17 21:47:35.439 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:35.440 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/195ee268-3601-4d09-944c-eb78730d1e33 +2024-05-17 21:47:35.466 +02:00 [INF] Received HTTP response headers after 26.7502ms - 200 +2024-05-17 21:47:35.467 +02:00 [INF] End processing HTTP request after 27.152ms - 200 +2024-05-17 21:47:35.467 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:35.467 +02:00 [ERR] There was an error when processing a message with id: '0469f5726abb48a19f591d329c2c0c68'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:47:35.468 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 197. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:47:35.469 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0469f5726abb48a19f591d329c2c0c68', Correlation ID: 'b2a3aabea74b4d5fa47ee62b2a77a8de', retry 4/3... +2024-05-17 21:47:35.469 +02:00 [ERR] Handling a message: friend_invited with ID: 0469f5726abb48a19f591d329c2c0c68, Correlation ID: b2a3aabea74b4d5fa47ee62b2a77a8de failed +2024-05-17 21:47:35.471 +02:00 [INF] Received a message with ID: 'bf8f10ad6dd944828ff9587f7445b85e', Correlation ID: '84f63c8ccfa244b6a895de2498f9adb5', timestamp: 1715975253, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:47:35.471 +02:00 [INF] Handling a message: friend_invited with ID: bf8f10ad6dd944828ff9587f7445b85e, Correlation ID: 84f63c8ccfa244b6a895de2498f9adb5, retry: 0 +2024-05-17 21:47:35.489 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 7fe649a2-7ee8-47c5-83b1-d65ac4f12e2e. +2024-05-17 21:47:35.490 +02:00 [INF] Handled a message: friend_request_sent with ID: 4db876c6826e4c129ef5058176e3a66a, Correlation ID: ddfb5e79e2da4a0aa0cbb41ddba9aa8a, retry: 0 +2024-05-17 21:47:35.497 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:35.498 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.498 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.532 +02:00 [INF] Received HTTP response headers after 32.9624ms - 200 +2024-05-17 21:47:35.533 +02:00 [INF] End processing HTTP request after 35.4198ms - 200 +2024-05-17 21:47:35.534 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:35.534 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/700ce416-5d8b-4e16-9d48-606f661a7072" +2024-05-17 21:47:35.535 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/700ce416-5d8b-4e16-9d48-606f661a7072 +2024-05-17 21:47:35.535 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/700ce416-5d8b-4e16-9d48-606f661a7072 +2024-05-17 21:47:35.620 +02:00 [INF] Received HTTP response headers after 84.77ms - 200 +2024-05-17 21:47:35.621 +02:00 [INF] End processing HTTP request after 85.8111ms - 200 +2024-05-17 21:47:35.623 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:35.787 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 700ce416-5d8b-4e16-9d48-606f661a7072. +2024-05-17 21:47:35.787 +02:00 [INF] Handled a message: friend_invited with ID: bf8f10ad6dd944828ff9587f7445b85e, Correlation ID: 84f63c8ccfa244b6a895de2498f9adb5, retry: 0 +2024-05-17 21:47:35.788 +02:00 [INF] Received a message with ID: 'bea1dfba6dc3435d9dde78222d5826f7', Correlation ID: '06f19fe6513f4ac6bdbdd18466f64e2f', timestamp: 1715975255, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:47:35.788 +02:00 [INF] Handling a message: friend_invited with ID: bea1dfba6dc3435d9dde78222d5826f7, Correlation ID: 06f19fe6513f4ac6bdbdd18466f64e2f, retry: 0 +2024-05-17 21:47:35.815 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:35.816 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.816 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:35.844 +02:00 [INF] Received HTTP response headers after 26.9668ms - 200 +2024-05-17 21:47:35.844 +02:00 [INF] End processing HTTP request after 28.218ms - 200 +2024-05-17 21:47:35.845 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:35.845 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/7fe649a2-7ee8-47c5-83b1-d65ac4f12e2e" +2024-05-17 21:47:35.845 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/7fe649a2-7ee8-47c5-83b1-d65ac4f12e2e +2024-05-17 21:47:35.845 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/7fe649a2-7ee8-47c5-83b1-d65ac4f12e2e +2024-05-17 21:47:36.248 +02:00 [INF] Received HTTP response headers after 402.5512ms - 200 +2024-05-17 21:47:36.248 +02:00 [INF] End processing HTTP request after 403.0342ms - 200 +2024-05-17 21:47:36.249 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:36.410 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 7fe649a2-7ee8-47c5-83b1-d65ac4f12e2e. +2024-05-17 21:47:36.410 +02:00 [INF] Handled a message: friend_invited with ID: bea1dfba6dc3435d9dde78222d5826f7, Correlation ID: 06f19fe6513f4ac6bdbdd18466f64e2f, retry: 0 +2024-05-17 21:47:36.862 +02:00 [INF] Received a message with ID: '15a656518d4944c1bd3904821ae82517', Correlation ID: '9edbf618eb604c1fbd5eb664807d7950', timestamp: 1715975256, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:47:36.863 +02:00 [INF] Received a message with ID: '95824894e1a840cf8cdc22d38bac1e3f', Correlation ID: '54ab4a73654340a4adaa0bd38ef1f680', timestamp: 1715975256, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:47:36.863 +02:00 [INF] Handling a message: friend_request_sent with ID: 15a656518d4944c1bd3904821ae82517, Correlation ID: 9edbf618eb604c1fbd5eb664807d7950, retry: 0 +2024-05-17 21:47:36.863 +02:00 [INF] Handling a message: friend_invited with ID: 95824894e1a840cf8cdc22d38bac1e3f, Correlation ID: 54ab4a73654340a4adaa0bd38ef1f680, retry: 0 +2024-05-17 21:47:36.893 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:36.893 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:36.893 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:36.922 +02:00 [INF] Received HTTP response headers after 28.1975ms - 200 +2024-05-17 21:47:36.922 +02:00 [INF] End processing HTTP request after 28.7163ms - 200 +2024-05-17 21:47:36.922 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:36.923 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/7fcf3b9f-ce73-4c08-bb7d-6d8b5067a509" +2024-05-17 21:47:36.923 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/7fcf3b9f-ce73-4c08-bb7d-6d8b5067a509 +2024-05-17 21:47:36.923 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/7fcf3b9f-ce73-4c08-bb7d-6d8b5067a509 +2024-05-17 21:47:36.985 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 7fcf3b9f-ce73-4c08-bb7d-6d8b5067a509. +2024-05-17 21:47:36.986 +02:00 [INF] Handled a message: friend_request_sent with ID: 15a656518d4944c1bd3904821ae82517, Correlation ID: 9edbf618eb604c1fbd5eb664807d7950, retry: 0 +2024-05-17 21:47:37.318 +02:00 [INF] Received HTTP response headers after 394.8358ms - 200 +2024-05-17 21:47:37.319 +02:00 [INF] End processing HTTP request after 395.2537ms - 200 +2024-05-17 21:47:37.319 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:37.473 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 7fcf3b9f-ce73-4c08-bb7d-6d8b5067a509. +2024-05-17 21:47:37.473 +02:00 [INF] Handled a message: friend_invited with ID: 95824894e1a840cf8cdc22d38bac1e3f, Correlation ID: 54ab4a73654340a4adaa0bd38ef1f680, retry: 0 +2024-05-17 21:47:38.375 +02:00 [INF] Received a message with ID: '3aaccbb7ab2f43c5a183309f8a51964e', Correlation ID: '3394f3a495b046e2b02a8a90b1208d04', timestamp: 1715975258, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:47:38.375 +02:00 [INF] Received a message with ID: '83b51f34569c403a88b15cbeb2475a91', Correlation ID: '4034312cadd543ee931fde8c2e0b16c3', timestamp: 1715975258, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:47:38.377 +02:00 [INF] Handling a message: friend_request_sent with ID: 83b51f34569c403a88b15cbeb2475a91, Correlation ID: 4034312cadd543ee931fde8c2e0b16c3, retry: 0 +2024-05-17 21:47:38.375 +02:00 [INF] Handling a message: friend_invited with ID: 3aaccbb7ab2f43c5a183309f8a51964e, Correlation ID: 3394f3a495b046e2b02a8a90b1208d04, retry: 0 +2024-05-17 21:47:38.525 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 3a1988f1-c552-49a6-806f-19cfbcd73a09. +2024-05-17 21:47:38.526 +02:00 [INF] Handled a message: friend_request_sent with ID: 83b51f34569c403a88b15cbeb2475a91, Correlation ID: 4034312cadd543ee931fde8c2e0b16c3, retry: 0 +2024-05-17 21:47:38.809 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:47:38.810 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:38.810 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:47:38.839 +02:00 [INF] Received HTTP response headers after 28.4934ms - 200 +2024-05-17 21:47:38.839 +02:00 [INF] End processing HTTP request after 29.3652ms - 200 +2024-05-17 21:47:38.839 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:38.839 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/3a1988f1-c552-49a6-806f-19cfbcd73a09" +2024-05-17 21:47:38.840 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/3a1988f1-c552-49a6-806f-19cfbcd73a09 +2024-05-17 21:47:38.840 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/3a1988f1-c552-49a6-806f-19cfbcd73a09 +2024-05-17 21:47:39.003 +02:00 [INF] Received HTTP response headers after 162.9558ms - 200 +2024-05-17 21:47:39.003 +02:00 [INF] End processing HTTP request after 163.304ms - 200 +2024-05-17 21:47:39.003 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:47:39.155 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 3a1988f1-c552-49a6-806f-19cfbcd73a09. +2024-05-17 21:47:39.155 +02:00 [INF] Handled a message: friend_invited with ID: 3aaccbb7ab2f43c5a183309f8a51964e, Correlation ID: 3394f3a495b046e2b02a8a90b1208d04, retry: 0 +2024-05-17 21:51:15.928 +02:00 [INF] Deregistering a service [id: notifications-service:2401031718af4ed5b80d7a5ad15b59bd] from Consul... +2024-05-17 21:51:15.930 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:2401031718af4ed5b80d7a5ad15b59bd" +2024-05-17 21:51:15.931 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2401031718af4ed5b80d7a5ad15b59bd +2024-05-17 21:51:15.931 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2401031718af4ed5b80d7a5ad15b59bd +2024-05-17 21:51:15.937 +02:00 [INF] Received HTTP response headers after 5.403ms - 200 +2024-05-17 21:51:15.937 +02:00 [INF] End processing HTTP request after 6.5667ms - 200 +2024-05-17 21:51:15.938 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:15.939 +02:00 [INF] Deregistered a service [id: notifications-service:2401031718af4ed5b80d7a5ad15b59bd] from Consul. +2024-05-17 21:51:26.213 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:51:26.253 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:51:26.330 +02:00 [INF] Registering a service [id: notifications-service:272bc9da1b1a46bda5d7544c90fea39e] in Consul... +2024-05-17 21:51:26.346 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:51:26.349 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:51:26.350 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:51:26.356 +02:00 [INF] Received HTTP response headers after 4.4683ms - 200 +2024-05-17 21:51:26.357 +02:00 [INF] End processing HTTP request after 8.8149ms - 200 +2024-05-17 21:51:26.360 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:26.361 +02:00 [INF] Registered a service [id: notifications-service:272bc9da1b1a46bda5d7544c90fea39e] in Consul. +2024-05-17 21:51:26.367 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:51:26.379 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:51:26.382 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:51:26.385 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:51:26.388 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:51:26.391 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:51:26.393 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:51:26.396 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:51:35.196 +02:00 [INF] Received a message with ID: 'b59f27154a4346c5a774d82fb49c72c4', Correlation ID: '9d682fe5fbe6470e8bb34049dbcc1be0', timestamp: 1715975495, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:51:35.196 +02:00 [INF] Received a message with ID: '38d13051fe694ff1a9d5782f121cabfe', Correlation ID: '0dc124f0303c45a3ab782d998f5a214d', timestamp: 1715975495, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:51:35.215 +02:00 [INF] Handling a message: friend_invited with ID: 38d13051fe694ff1a9d5782f121cabfe, Correlation ID: 0dc124f0303c45a3ab782d998f5a214d, retry: 0 +2024-05-17 21:51:35.215 +02:00 [INF] Handling a message: friend_request_sent with ID: b59f27154a4346c5a774d82fb49c72c4, Correlation ID: 9d682fe5fbe6470e8bb34049dbcc1be0, retry: 0 +2024-05-17 21:51:35.268 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:51:35.268 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:35.268 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:35.300 +02:00 [INF] Received HTTP response headers after 31.5374ms - 200 +2024-05-17 21:51:35.300 +02:00 [INF] End processing HTTP request after 32.2889ms - 200 +2024-05-17 21:51:35.301 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:35.315 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c" +2024-05-17 21:51:35.316 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:35.316 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:35.345 +02:00 [INF] Received HTTP response headers after 28.8858ms - 200 +2024-05-17 21:51:35.346 +02:00 [INF] End processing HTTP request after 30.327ms - 200 +2024-05-17 21:51:35.347 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:35.356 +02:00 [ERR] There was an error when processing a message with id: '38d13051fe694ff1a9d5782f121cabfe'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:51:35.373 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:51:35.375 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '38d13051fe694ff1a9d5782f121cabfe', Correlation ID: '0dc124f0303c45a3ab782d998f5a214d', retry 1/3... +2024-05-17 21:51:35.666 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 41c8ed6c-167d-4599-a099-19e2a008c75c. +2024-05-17 21:51:35.668 +02:00 [INF] Handled a message: friend_request_sent with ID: b59f27154a4346c5a774d82fb49c72c4, Correlation ID: 9d682fe5fbe6470e8bb34049dbcc1be0, retry: 0 +2024-05-17 21:51:37.376 +02:00 [INF] Handling a message: friend_invited with ID: 38d13051fe694ff1a9d5782f121cabfe, Correlation ID: 0dc124f0303c45a3ab782d998f5a214d, retry: 1 +2024-05-17 21:51:37.418 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:51:37.418 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:37.419 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:37.446 +02:00 [INF] Received HTTP response headers after 27.3997ms - 200 +2024-05-17 21:51:37.447 +02:00 [INF] End processing HTTP request after 28.3429ms - 200 +2024-05-17 21:51:37.447 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:37.448 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c" +2024-05-17 21:51:37.448 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:37.448 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:37.478 +02:00 [INF] Received HTTP response headers after 29.7551ms - 200 +2024-05-17 21:51:37.479 +02:00 [INF] End processing HTTP request after 30.8997ms - 200 +2024-05-17 21:51:37.479 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:37.480 +02:00 [ERR] There was an error when processing a message with id: '38d13051fe694ff1a9d5782f121cabfe'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:51:37.481 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:51:37.483 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '38d13051fe694ff1a9d5782f121cabfe', Correlation ID: '0dc124f0303c45a3ab782d998f5a214d', retry 2/3... +2024-05-17 21:51:39.483 +02:00 [INF] Handling a message: friend_invited with ID: 38d13051fe694ff1a9d5782f121cabfe, Correlation ID: 0dc124f0303c45a3ab782d998f5a214d, retry: 2 +2024-05-17 21:51:39.518 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:51:39.519 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:39.520 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:39.554 +02:00 [INF] Received HTTP response headers after 34.442ms - 200 +2024-05-17 21:51:39.555 +02:00 [INF] End processing HTTP request after 36.2623ms - 200 +2024-05-17 21:51:39.556 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:39.557 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c" +2024-05-17 21:51:39.558 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:39.559 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:39.593 +02:00 [INF] Received HTTP response headers after 33.6596ms - 200 +2024-05-17 21:51:39.594 +02:00 [INF] End processing HTTP request after 35.6958ms - 200 +2024-05-17 21:51:39.594 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:39.605 +02:00 [ERR] There was an error when processing a message with id: '38d13051fe694ff1a9d5782f121cabfe'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:51:39.608 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:51:39.611 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '38d13051fe694ff1a9d5782f121cabfe', Correlation ID: '0dc124f0303c45a3ab782d998f5a214d', retry 3/3... +2024-05-17 21:51:41.612 +02:00 [INF] Handling a message: friend_invited with ID: 38d13051fe694ff1a9d5782f121cabfe, Correlation ID: 0dc124f0303c45a3ab782d998f5a214d, retry: 3 +2024-05-17 21:51:41.642 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:51:41.643 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:41.643 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:51:41.677 +02:00 [INF] Received HTTP response headers after 33.3093ms - 200 +2024-05-17 21:51:41.677 +02:00 [INF] End processing HTTP request after 34.5594ms - 200 +2024-05-17 21:51:41.678 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:41.678 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c" +2024-05-17 21:51:41.678 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:41.679 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/41c8ed6c-167d-4599-a099-19e2a008c75c +2024-05-17 21:51:41.711 +02:00 [INF] Received HTTP response headers after 31.9459ms - 200 +2024-05-17 21:51:41.711 +02:00 [INF] End processing HTTP request after 32.6503ms - 200 +2024-05-17 21:51:41.711 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:51:41.712 +02:00 [ERR] There was an error when processing a message with id: '38d13051fe694ff1a9d5782f121cabfe'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 21:51:41.713 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 188. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 21:51:41.714 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '38d13051fe694ff1a9d5782f121cabfe', Correlation ID: '0dc124f0303c45a3ab782d998f5a214d', retry 4/3... +2024-05-17 21:51:41.714 +02:00 [ERR] Handling a message: friend_invited with ID: 38d13051fe694ff1a9d5782f121cabfe, Correlation ID: 0dc124f0303c45a3ab782d998f5a214d failed +2024-05-17 21:54:04.785 +02:00 [INF] Deregistering a service [id: notifications-service:272bc9da1b1a46bda5d7544c90fea39e] from Consul... +2024-05-17 21:54:04.786 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:272bc9da1b1a46bda5d7544c90fea39e" +2024-05-17 21:54:04.788 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:272bc9da1b1a46bda5d7544c90fea39e +2024-05-17 21:54:04.788 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:272bc9da1b1a46bda5d7544c90fea39e +2024-05-17 21:54:04.792 +02:00 [INF] Received HTTP response headers after 3.7578ms - 200 +2024-05-17 21:54:04.792 +02:00 [INF] End processing HTTP request after 4.3608ms - 200 +2024-05-17 21:54:04.793 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:04.793 +02:00 [INF] Deregistered a service [id: notifications-service:272bc9da1b1a46bda5d7544c90fea39e] from Consul. +2024-05-17 21:54:10.950 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:54:10.992 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:54:11.044 +02:00 [INF] Registering a service [id: notifications-service:092a6827f8094af6a0a4bca72edde317] in Consul... +2024-05-17 21:54:11.062 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:54:11.065 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:54:11.066 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:54:11.072 +02:00 [INF] Received HTTP response headers after 4.5847ms - 200 +2024-05-17 21:54:11.073 +02:00 [INF] End processing HTTP request after 9.0467ms - 200 +2024-05-17 21:54:11.076 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:11.077 +02:00 [INF] Registered a service [id: notifications-service:092a6827f8094af6a0a4bca72edde317] in Consul. +2024-05-17 21:54:11.083 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:54:11.093 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:54:11.095 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:54:11.097 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:54:11.099 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:54:11.101 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:54:11.104 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:54:11.106 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:54:14.524 +02:00 [INF] Received a message with ID: '2f20d8a6f7fe4038ad9d581e937e8f53', Correlation ID: '0d7069b299dc4f9b9a1d60515459d330', timestamp: 1715975654, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:54:14.524 +02:00 [INF] Received a message with ID: 'c976e2650ee64e9ab7ede030fec2cb4d', Correlation ID: 'd059cca0bf9a4aa680ffe5eb1ee1c42a', timestamp: 1715975654, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:54:14.583 +02:00 [INF] Handling a message: friend_request_sent with ID: 2f20d8a6f7fe4038ad9d581e937e8f53, Correlation ID: 0d7069b299dc4f9b9a1d60515459d330, retry: 0 +2024-05-17 21:54:14.584 +02:00 [INF] Handling a message: friend_invited with ID: c976e2650ee64e9ab7ede030fec2cb4d, Correlation ID: d059cca0bf9a4aa680ffe5eb1ee1c42a, retry: 0 +2024-05-17 21:54:14.636 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:54:14.636 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:54:14.637 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:54:14.675 +02:00 [INF] Received HTTP response headers after 38.0027ms - 200 +2024-05-17 21:54:14.675 +02:00 [INF] End processing HTTP request after 38.8564ms - 200 +2024-05-17 21:54:14.676 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:14.696 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/969ea16a-f9a3-4ecc-81cb-bfcfc3ff09a5" +2024-05-17 21:54:14.697 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/969ea16a-f9a3-4ecc-81cb-bfcfc3ff09a5 +2024-05-17 21:54:14.697 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/969ea16a-f9a3-4ecc-81cb-bfcfc3ff09a5 +2024-05-17 21:54:14.884 +02:00 [INF] Received HTTP response headers after 186.3531ms - 200 +2024-05-17 21:54:14.884 +02:00 [INF] End processing HTTP request after 187.7455ms - 200 +2024-05-17 21:54:14.885 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:15.170 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 969ea16a-f9a3-4ecc-81cb-bfcfc3ff09a5. +2024-05-17 21:54:15.172 +02:00 [INF] Handled a message: friend_request_sent with ID: 2f20d8a6f7fe4038ad9d581e937e8f53, Correlation ID: 0d7069b299dc4f9b9a1d60515459d330, retry: 0 +2024-05-17 21:54:15.186 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 969ea16a-f9a3-4ecc-81cb-bfcfc3ff09a5. +2024-05-17 21:54:15.186 +02:00 [INF] Handled a message: friend_invited with ID: c976e2650ee64e9ab7ede030fec2cb4d, Correlation ID: d059cca0bf9a4aa680ffe5eb1ee1c42a, retry: 0 +2024-05-17 21:54:33.641 +02:00 [INF] Received a message with ID: '54d23bcc19f64bdfb6186309d02ec1f3', Correlation ID: 'be4ef8885c19448f80b2aefcfe613aea', timestamp: 1715975673, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:54:33.641 +02:00 [INF] Received a message with ID: '11618fd4168b4235998d5a2dba23d8a3', Correlation ID: 'f9c0ca2f7e854916af4c71bcd718e2c1', timestamp: 1715975673, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:54:33.642 +02:00 [INF] Handling a message: friend_request_sent with ID: 54d23bcc19f64bdfb6186309d02ec1f3, Correlation ID: be4ef8885c19448f80b2aefcfe613aea, retry: 0 +2024-05-17 21:54:33.643 +02:00 [INF] Handling a message: friend_invited with ID: 11618fd4168b4235998d5a2dba23d8a3, Correlation ID: f9c0ca2f7e854916af4c71bcd718e2c1, retry: 0 +2024-05-17 21:54:33.674 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:54:33.674 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:54:33.675 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:54:33.703 +02:00 [INF] Received HTTP response headers after 27.7715ms - 200 +2024-05-17 21:54:33.703 +02:00 [INF] End processing HTTP request after 29.0686ms - 200 +2024-05-17 21:54:33.704 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:33.704 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/03a24232-5bdf-460c-9ea2-054295ad56b2" +2024-05-17 21:54:33.704 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/03a24232-5bdf-460c-9ea2-054295ad56b2 +2024-05-17 21:54:33.704 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/03a24232-5bdf-460c-9ea2-054295ad56b2 +2024-05-17 21:54:33.764 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 03a24232-5bdf-460c-9ea2-054295ad56b2. +2024-05-17 21:54:33.764 +02:00 [INF] Handled a message: friend_request_sent with ID: 54d23bcc19f64bdfb6186309d02ec1f3, Correlation ID: be4ef8885c19448f80b2aefcfe613aea, retry: 0 +2024-05-17 21:54:33.892 +02:00 [INF] Received HTTP response headers after 187.4448ms - 200 +2024-05-17 21:54:33.892 +02:00 [INF] End processing HTTP request after 188.0171ms - 200 +2024-05-17 21:54:33.892 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:54:34.047 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 03a24232-5bdf-460c-9ea2-054295ad56b2. +2024-05-17 21:54:34.047 +02:00 [INF] Handled a message: friend_invited with ID: 11618fd4168b4235998d5a2dba23d8a3, Correlation ID: f9c0ca2f7e854916af4c71bcd718e2c1, retry: 0 +2024-05-17 21:56:14.222 +02:00 [INF] Deregistering a service [id: notifications-service:092a6827f8094af6a0a4bca72edde317] from Consul... +2024-05-17 21:56:14.225 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:092a6827f8094af6a0a4bca72edde317" +2024-05-17 21:56:14.226 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:092a6827f8094af6a0a4bca72edde317 +2024-05-17 21:56:14.226 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:092a6827f8094af6a0a4bca72edde317 +2024-05-17 21:56:14.233 +02:00 [INF] Received HTTP response headers after 6.8884ms - 200 +2024-05-17 21:56:14.234 +02:00 [INF] End processing HTTP request after 8.3052ms - 200 +2024-05-17 21:56:14.235 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:14.236 +02:00 [INF] Deregistered a service [id: notifications-service:092a6827f8094af6a0a4bca72edde317] from Consul. +2024-05-17 21:56:20.682 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:56:20.718 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:56:20.769 +02:00 [INF] Registering a service [id: notifications-service:3752ea074e7d4ecbb461ddf5efcdf938] in Consul... +2024-05-17 21:56:20.785 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:56:20.788 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:56:20.789 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:56:20.795 +02:00 [INF] Received HTTP response headers after 4.3015ms - 200 +2024-05-17 21:56:20.796 +02:00 [INF] End processing HTTP request after 8.6428ms - 200 +2024-05-17 21:56:20.799 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:20.799 +02:00 [INF] Registered a service [id: notifications-service:3752ea074e7d4ecbb461ddf5efcdf938] in Consul. +2024-05-17 21:56:20.805 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:56:20.814 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:56:20.816 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:56:20.818 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:56:20.820 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:56:20.822 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:56:20.824 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:56:20.826 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:56:22.540 +02:00 [INF] Received a message with ID: 'f9748fecafdd42338783e8fd7a1448aa', Correlation ID: '2161a0285f6241fe9a1275fc1fbf366e', timestamp: 1715975782, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:56:22.540 +02:00 [INF] Received a message with ID: '5372da92aab14a6d826a82ce4fbdd6e5', Correlation ID: '699b08f373444969b19071b1d6cbea4a', timestamp: 1715975782, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:56:22.561 +02:00 [INF] Handling a message: friend_request_sent with ID: f9748fecafdd42338783e8fd7a1448aa, Correlation ID: 2161a0285f6241fe9a1275fc1fbf366e, retry: 0 +2024-05-17 21:56:22.561 +02:00 [INF] Handling a message: friend_invited with ID: 5372da92aab14a6d826a82ce4fbdd6e5, Correlation ID: 699b08f373444969b19071b1d6cbea4a, retry: 0 +2024-05-17 21:56:22.771 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to ee5d1edf-933d-4e6e-844d-3bbddc8cd3e0. +2024-05-17 21:56:22.773 +02:00 [INF] Handled a message: friend_request_sent with ID: f9748fecafdd42338783e8fd7a1448aa, Correlation ID: 2161a0285f6241fe9a1275fc1fbf366e, retry: 0 +2024-05-17 21:56:22.858 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:56:22.859 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:56:22.859 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:56:22.897 +02:00 [INF] Received HTTP response headers after 38.2855ms - 200 +2024-05-17 21:56:22.898 +02:00 [INF] End processing HTTP request after 39.2804ms - 200 +2024-05-17 21:56:22.898 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:22.916 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/ee5d1edf-933d-4e6e-844d-3bbddc8cd3e0" +2024-05-17 21:56:22.916 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/ee5d1edf-933d-4e6e-844d-3bbddc8cd3e0 +2024-05-17 21:56:22.917 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/ee5d1edf-933d-4e6e-844d-3bbddc8cd3e0 +2024-05-17 21:56:23.110 +02:00 [INF] Received HTTP response headers after 193.2088ms - 200 +2024-05-17 21:56:23.111 +02:00 [INF] End processing HTTP request after 194.2424ms - 200 +2024-05-17 21:56:23.111 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:23.294 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to ee5d1edf-933d-4e6e-844d-3bbddc8cd3e0. +2024-05-17 21:56:23.294 +02:00 [INF] Handled a message: friend_invited with ID: 5372da92aab14a6d826a82ce4fbdd6e5, Correlation ID: 699b08f373444969b19071b1d6cbea4a, retry: 0 +2024-05-17 21:56:32.248 +02:00 [INF] Received a message with ID: 'c7cbc04b41d74bc49c9a4d8508f095f5', Correlation ID: '3ebf9cfa380a43d9b61ebb7c8f3e45ac', timestamp: 1715975792, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:56:32.248 +02:00 [INF] Received a message with ID: '168a82f275fd499d9035c337c06f6bff', Correlation ID: '9414c4f66f4d453fb62acfc35cbb56e0', timestamp: 1715975792, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:56:32.251 +02:00 [INF] Handling a message: friend_invited with ID: c7cbc04b41d74bc49c9a4d8508f095f5, Correlation ID: 3ebf9cfa380a43d9b61ebb7c8f3e45ac, retry: 0 +2024-05-17 21:56:32.252 +02:00 [INF] Handling a message: friend_request_sent with ID: 168a82f275fd499d9035c337c06f6bff, Correlation ID: 9414c4f66f4d453fb62acfc35cbb56e0, retry: 0 +2024-05-17 21:56:32.291 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:56:32.292 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:56:32.292 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:56:32.323 +02:00 [INF] Received HTTP response headers after 30.1258ms - 200 +2024-05-17 21:56:32.324 +02:00 [INF] End processing HTTP request after 31.7561ms - 200 +2024-05-17 21:56:32.324 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:32.326 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/a9b83241-53b0-4a26-9eac-e1199a6fc51b" +2024-05-17 21:56:32.326 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/a9b83241-53b0-4a26-9eac-e1199a6fc51b +2024-05-17 21:56:32.326 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/a9b83241-53b0-4a26-9eac-e1199a6fc51b +2024-05-17 21:56:32.388 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to a9b83241-53b0-4a26-9eac-e1199a6fc51b. +2024-05-17 21:56:32.389 +02:00 [INF] Handled a message: friend_request_sent with ID: 168a82f275fd499d9035c337c06f6bff, Correlation ID: 9414c4f66f4d453fb62acfc35cbb56e0, retry: 0 +2024-05-17 21:56:32.514 +02:00 [INF] Received HTTP response headers after 187.1367ms - 200 +2024-05-17 21:56:32.514 +02:00 [INF] End processing HTTP request after 188.6578ms - 200 +2024-05-17 21:56:32.515 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:56:32.668 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to a9b83241-53b0-4a26-9eac-e1199a6fc51b. +2024-05-17 21:56:32.669 +02:00 [INF] Handled a message: friend_invited with ID: c7cbc04b41d74bc49c9a4d8508f095f5, Correlation ID: 3ebf9cfa380a43d9b61ebb7c8f3e45ac, retry: 0 +2024-05-17 21:59:38.000 +02:00 [INF] Deregistering a service [id: notifications-service:3752ea074e7d4ecbb461ddf5efcdf938] from Consul... +2024-05-17 21:59:38.001 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:3752ea074e7d4ecbb461ddf5efcdf938" +2024-05-17 21:59:38.001 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:3752ea074e7d4ecbb461ddf5efcdf938 +2024-05-17 21:59:38.001 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:3752ea074e7d4ecbb461ddf5efcdf938 +2024-05-17 21:59:38.004 +02:00 [INF] Received HTTP response headers after 1.9008ms - 200 +2024-05-17 21:59:38.004 +02:00 [INF] End processing HTTP request after 2.9263ms - 200 +2024-05-17 21:59:38.004 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:59:38.005 +02:00 [INF] Deregistered a service [id: notifications-service:3752ea074e7d4ecbb461ddf5efcdf938] from Consul. +2024-05-17 21:59:44.012 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 21:59:44.051 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 21:59:44.101 +02:00 [INF] Registering a service [id: notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526] in Consul... +2024-05-17 21:59:44.118 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 21:59:44.121 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:59:44.122 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 21:59:44.128 +02:00 [INF] Received HTTP response headers after 4.3423ms - 200 +2024-05-17 21:59:44.129 +02:00 [INF] End processing HTTP request after 8.7925ms - 200 +2024-05-17 21:59:44.131 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:59:44.132 +02:00 [INF] Registered a service [id: notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526] in Consul. +2024-05-17 21:59:44.138 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 21:59:44.146 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 21:59:44.148 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 21:59:44.150 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 21:59:44.152 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 21:59:44.154 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 21:59:44.156 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 21:59:44.158 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 21:59:45.344 +02:00 [INF] Received a message with ID: '369fabaf72fd4386aa4f04025e9f4093', Correlation ID: 'f22c8343cabe4aff8a9c90fb238bf0af', timestamp: 1715975985, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 21:59:45.344 +02:00 [INF] Received a message with ID: '6b7a9a8c9d89439fb317068c2ca015ac', Correlation ID: 'b92356d00bd647e7aefad4687da8f7c9', timestamp: 1715975985, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 21:59:45.362 +02:00 [INF] Handling a message: friend_request_sent with ID: 6b7a9a8c9d89439fb317068c2ca015ac, Correlation ID: b92356d00bd647e7aefad4687da8f7c9, retry: 0 +2024-05-17 21:59:45.362 +02:00 [INF] Handling a message: friend_invited with ID: 369fabaf72fd4386aa4f04025e9f4093, Correlation ID: f22c8343cabe4aff8a9c90fb238bf0af, retry: 0 +2024-05-17 21:59:45.570 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to c0176aab-666b-4b19-87e0-3cf5088cac75. +2024-05-17 21:59:45.572 +02:00 [INF] Handled a message: friend_request_sent with ID: 6b7a9a8c9d89439fb317068c2ca015ac, Correlation ID: b92356d00bd647e7aefad4687da8f7c9, retry: 0 +2024-05-17 21:59:45.671 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 21:59:45.672 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:59:45.672 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 21:59:45.708 +02:00 [INF] Received HTTP response headers after 36.0557ms - 200 +2024-05-17 21:59:45.708 +02:00 [INF] End processing HTTP request after 36.8779ms - 200 +2024-05-17 21:59:45.709 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:59:45.727 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/c0176aab-666b-4b19-87e0-3cf5088cac75" +2024-05-17 21:59:45.728 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/c0176aab-666b-4b19-87e0-3cf5088cac75 +2024-05-17 21:59:45.728 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/c0176aab-666b-4b19-87e0-3cf5088cac75 +2024-05-17 21:59:45.923 +02:00 [INF] Received HTTP response headers after 194.5847ms - 200 +2024-05-17 21:59:45.923 +02:00 [INF] End processing HTTP request after 195.3989ms - 200 +2024-05-17 21:59:45.923 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 21:59:46.114 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to c0176aab-666b-4b19-87e0-3cf5088cac75. +2024-05-17 21:59:46.115 +02:00 [INF] Handled a message: friend_invited with ID: 369fabaf72fd4386aa4f04025e9f4093, Correlation ID: f22c8343cabe4aff8a9c90fb238bf0af, retry: 0 +2024-05-17 22:00:05.324 +02:00 [INF] Received a message with ID: '79ac9eb097854ee2bed44a7076af27f0', Correlation ID: '1c52030eb6b145b6ae357fee6e981bc6', timestamp: 1715976005, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:00:05.324 +02:00 [INF] Received a message with ID: '5649bb9952b14f5d9a5443580d547720', Correlation ID: 'b32a5ab913dd452c95ce51757d769183', timestamp: 1715976005, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:00:05.332 +02:00 [INF] Handling a message: friend_request_sent with ID: 79ac9eb097854ee2bed44a7076af27f0, Correlation ID: 1c52030eb6b145b6ae357fee6e981bc6, retry: 0 +2024-05-17 22:00:05.332 +02:00 [INF] Handling a message: friend_invited with ID: 5649bb9952b14f5d9a5443580d547720, Correlation ID: b32a5ab913dd452c95ce51757d769183, retry: 0 +2024-05-17 22:00:05.368 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:05.369 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:05.369 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:05.422 +02:00 [INF] Received HTTP response headers after 52.1201ms - 200 +2024-05-17 22:00:05.422 +02:00 [INF] End processing HTTP request after 53.7173ms - 200 +2024-05-17 22:00:05.423 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:05.423 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2" +2024-05-17 22:00:05.423 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:05.423 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:05.453 +02:00 [INF] Received HTTP response headers after 29.895ms - 200 +2024-05-17 22:00:05.454 +02:00 [INF] End processing HTTP request after 31.2473ms - 200 +2024-05-17 22:00:05.455 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:05.461 +02:00 [ERR] There was an error when processing a message with id: '5649bb9952b14f5d9a5443580d547720'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:00:05.491 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:00:05.492 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '5649bb9952b14f5d9a5443580d547720', Correlation ID: 'b32a5ab913dd452c95ce51757d769183', retry 1/3... +2024-05-17 22:00:05.568 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2. +2024-05-17 22:00:05.569 +02:00 [INF] Handled a message: friend_request_sent with ID: 79ac9eb097854ee2bed44a7076af27f0, Correlation ID: 1c52030eb6b145b6ae357fee6e981bc6, retry: 0 +2024-05-17 22:00:07.497 +02:00 [INF] Handling a message: friend_invited with ID: 5649bb9952b14f5d9a5443580d547720, Correlation ID: b32a5ab913dd452c95ce51757d769183, retry: 1 +2024-05-17 22:00:07.524 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:07.524 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:07.524 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:07.554 +02:00 [INF] Received HTTP response headers after 29.5587ms - 200 +2024-05-17 22:00:07.554 +02:00 [INF] End processing HTTP request after 30.1179ms - 200 +2024-05-17 22:00:07.554 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:07.555 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2" +2024-05-17 22:00:07.555 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:07.555 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:07.583 +02:00 [INF] Received HTTP response headers after 28.3062ms - 200 +2024-05-17 22:00:07.584 +02:00 [INF] End processing HTTP request after 28.8969ms - 200 +2024-05-17 22:00:07.584 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:07.585 +02:00 [ERR] There was an error when processing a message with id: '5649bb9952b14f5d9a5443580d547720'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:00:07.586 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:00:07.587 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '5649bb9952b14f5d9a5443580d547720', Correlation ID: 'b32a5ab913dd452c95ce51757d769183', retry 2/3... +2024-05-17 22:00:09.587 +02:00 [INF] Handling a message: friend_invited with ID: 5649bb9952b14f5d9a5443580d547720, Correlation ID: b32a5ab913dd452c95ce51757d769183, retry: 2 +2024-05-17 22:00:09.614 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:09.614 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:09.614 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:09.644 +02:00 [INF] Received HTTP response headers after 29.5387ms - 200 +2024-05-17 22:00:09.645 +02:00 [INF] End processing HTTP request after 30.3641ms - 200 +2024-05-17 22:00:09.645 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:09.646 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2" +2024-05-17 22:00:09.647 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:09.647 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:09.676 +02:00 [INF] Received HTTP response headers after 28.8818ms - 200 +2024-05-17 22:00:09.678 +02:00 [INF] End processing HTTP request after 30.9728ms - 200 +2024-05-17 22:00:09.678 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:09.680 +02:00 [ERR] There was an error when processing a message with id: '5649bb9952b14f5d9a5443580d547720'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:00:09.681 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:00:09.683 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '5649bb9952b14f5d9a5443580d547720', Correlation ID: 'b32a5ab913dd452c95ce51757d769183', retry 3/3... +2024-05-17 22:00:11.684 +02:00 [INF] Handling a message: friend_invited with ID: 5649bb9952b14f5d9a5443580d547720, Correlation ID: b32a5ab913dd452c95ce51757d769183, retry: 3 +2024-05-17 22:00:11.720 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:11.721 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:11.721 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:11.753 +02:00 [INF] Received HTTP response headers after 31.1328ms - 200 +2024-05-17 22:00:11.753 +02:00 [INF] End processing HTTP request after 32.068ms - 200 +2024-05-17 22:00:11.753 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:11.754 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2" +2024-05-17 22:00:11.754 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:11.754 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bdb18c85-c513-47a5-bbb0-32fa6a6b1fc2 +2024-05-17 22:00:11.783 +02:00 [INF] Received HTTP response headers after 28.3287ms - 200 +2024-05-17 22:00:11.783 +02:00 [INF] End processing HTTP request after 29.2838ms - 200 +2024-05-17 22:00:11.783 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:11.784 +02:00 [ERR] There was an error when processing a message with id: '5649bb9952b14f5d9a5443580d547720'. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:00:11.785 +02:00 [ERR] The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. +System.Text.Json.JsonException: The JSON value could not be converted to System.DateTime. Path: $.dateOfBirth | LineNumber: 0 | BytePositionInLine: 179. + ---> System.InvalidOperationException: Cannot get the value of a token type 'Null' as a string. + at System.Text.Json.ThrowHelper.ThrowInvalidOperationException_ExpectedString(JsonTokenType tokenType) + at System.Text.Json.Utf8JsonReader.TryGetDateTime(DateTime& value) + at System.Text.Json.Utf8JsonReader.GetDateTime() + at System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1.ReadJsonAndSetMember(Object obj, ReadStack& state, Utf8JsonReader& reader) + at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.ContinueDeserialize(ReadBufferState& bufferState, JsonReaderState& jsonReaderState, ReadStack& readStack) + at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsync(Stream utf8Json, CancellationToken cancellationToken) + at Convey.HTTP.ConveyHttpClient.DeserializeJsonFromStream[T](Stream stream, IHttpClientSerializer serializer) + at Convey.HTTP.ConveyHttpClient.SendAsync[T](String uri, Method method, HttpContent content, IHttpClientSerializer serializer) + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 54 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:00:11.786 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '5649bb9952b14f5d9a5443580d547720', Correlation ID: 'b32a5ab913dd452c95ce51757d769183', retry 4/3... +2024-05-17 22:00:11.786 +02:00 [ERR] Handling a message: friend_invited with ID: 5649bb9952b14f5d9a5443580d547720, Correlation ID: b32a5ab913dd452c95ce51757d769183 failed +2024-05-17 22:00:36.846 +02:00 [INF] Deregistering a service [id: notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526] from Consul... +2024-05-17 22:00:36.847 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526" +2024-05-17 22:00:36.847 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526 +2024-05-17 22:00:36.848 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526 +2024-05-17 22:00:36.850 +02:00 [INF] Received HTTP response headers after 1.9175ms - 200 +2024-05-17 22:00:36.850 +02:00 [INF] End processing HTTP request after 2.5542ms - 200 +2024-05-17 22:00:36.850 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:36.851 +02:00 [INF] Deregistered a service [id: notifications-service:6c95f01ac2e94d67a0030cc3e6f5d526] from Consul. +2024-05-17 22:00:42.077 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:00:42.122 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:00:42.195 +02:00 [INF] Registering a service [id: notifications-service:e01486fe25044816b7b452fabf96f942] in Consul... +2024-05-17 22:00:42.215 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:00:42.221 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:00:42.222 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:00:42.229 +02:00 [INF] Received HTTP response headers after 4.9187ms - 200 +2024-05-17 22:00:42.230 +02:00 [INF] End processing HTTP request after 10.1077ms - 200 +2024-05-17 22:00:42.233 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:42.234 +02:00 [INF] Registered a service [id: notifications-service:e01486fe25044816b7b452fabf96f942] in Consul. +2024-05-17 22:00:42.242 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:00:42.255 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:00:42.258 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:00:42.261 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:00:42.264 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:00:42.268 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:00:42.273 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:00:42.276 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:00:45.046 +02:00 [INF] Received a message with ID: 'b84e913875d24218ae2e54f2500a675b', Correlation ID: 'a5b0a32b26b54608b63d5b02b96cdceb', timestamp: 1715976045, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:00:45.046 +02:00 [INF] Received a message with ID: '7a9778f659d74790a4980968ed943db1', Correlation ID: '7eb0f52a51024160ad5be036311c8fbd', timestamp: 1715976045, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:00:45.065 +02:00 [INF] Handling a message: friend_request_sent with ID: b84e913875d24218ae2e54f2500a675b, Correlation ID: a5b0a32b26b54608b63d5b02b96cdceb, retry: 0 +2024-05-17 22:00:45.065 +02:00 [INF] Handling a message: friend_invited with ID: 7a9778f659d74790a4980968ed943db1, Correlation ID: 7eb0f52a51024160ad5be036311c8fbd, retry: 0 +2024-05-17 22:00:45.116 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:45.116 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:45.117 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:45.148 +02:00 [INF] Received HTTP response headers after 31.2401ms - 200 +2024-05-17 22:00:45.148 +02:00 [INF] End processing HTTP request after 31.9695ms - 200 +2024-05-17 22:00:45.149 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:45.434 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to b202a5fe-afbd-4894-95e3-41aff99f430c. +2024-05-17 22:00:45.436 +02:00 [INF] Handled a message: friend_invited with ID: 7a9778f659d74790a4980968ed943db1, Correlation ID: 7eb0f52a51024160ad5be036311c8fbd, retry: 0 +2024-05-17 22:00:45.970 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to b202a5fe-afbd-4894-95e3-41aff99f430c. +2024-05-17 22:00:45.971 +02:00 [INF] Handled a message: friend_request_sent with ID: b84e913875d24218ae2e54f2500a675b, Correlation ID: a5b0a32b26b54608b63d5b02b96cdceb, retry: 0 +2024-05-17 22:00:52.637 +02:00 [INF] Received a message with ID: '294f6b4f85fd4d78a2a6ccf16e47dd7b', Correlation ID: '9a72063910eb4d74b6b2c1665fd252ff', timestamp: 1715976052, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:00:52.637 +02:00 [INF] Received a message with ID: '419238db07944155bfd703757d838ad4', Correlation ID: 'b6c25bd82e59496ba5274e7e8fdae3ac', timestamp: 1715976052, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:00:52.638 +02:00 [INF] Handling a message: friend_invited with ID: 294f6b4f85fd4d78a2a6ccf16e47dd7b, Correlation ID: 9a72063910eb4d74b6b2c1665fd252ff, retry: 0 +2024-05-17 22:00:52.639 +02:00 [INF] Handling a message: friend_request_sent with ID: 419238db07944155bfd703757d838ad4, Correlation ID: b6c25bd82e59496ba5274e7e8fdae3ac, retry: 0 +2024-05-17 22:00:52.667 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:00:52.667 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:52.668 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:00:52.696 +02:00 [INF] Received HTTP response headers after 28.1449ms - 200 +2024-05-17 22:00:52.696 +02:00 [INF] End processing HTTP request after 29.0266ms - 200 +2024-05-17 22:00:52.697 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:00:52.757 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to fd0176f4-736c-49cd-b57a-523d544ae3d3. +2024-05-17 22:00:52.757 +02:00 [INF] Handled a message: friend_request_sent with ID: 419238db07944155bfd703757d838ad4, Correlation ID: b6c25bd82e59496ba5274e7e8fdae3ac, retry: 0 +2024-05-17 22:00:52.845 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to fd0176f4-736c-49cd-b57a-523d544ae3d3. +2024-05-17 22:00:52.845 +02:00 [INF] Handled a message: friend_invited with ID: 294f6b4f85fd4d78a2a6ccf16e47dd7b, Correlation ID: 9a72063910eb4d74b6b2c1665fd252ff, retry: 0 +2024-05-17 22:01:12.291 +02:00 [INF] Received a message with ID: '47a156bdb62344c0b09b3cc6d4d83e5c', Correlation ID: '4311e56a65434feeb390807702d4dd4e', timestamp: 1715976072, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:01:12.291 +02:00 [INF] Received a message with ID: '01379045d5cc4806b6a16102a02ee561', Correlation ID: 'a186f2b572d24bd7a059128b31b6b095', timestamp: 1715976072, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:01:12.292 +02:00 [INF] Handling a message: friend_invited with ID: 47a156bdb62344c0b09b3cc6d4d83e5c, Correlation ID: 4311e56a65434feeb390807702d4dd4e, retry: 0 +2024-05-17 22:01:12.292 +02:00 [INF] Handling a message: friend_request_sent with ID: 01379045d5cc4806b6a16102a02ee561, Correlation ID: a186f2b572d24bd7a059128b31b6b095, retry: 0 +2024-05-17 22:01:12.411 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to af9ca0fc-b35b-4566-84e5-83dd08f20c3e. +2024-05-17 22:01:12.412 +02:00 [INF] Handled a message: friend_request_sent with ID: 01379045d5cc4806b6a16102a02ee561, Correlation ID: a186f2b572d24bd7a059128b31b6b095, retry: 0 +2024-05-17 22:01:12.529 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:01:12.529 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:01:12.529 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:01:12.559 +02:00 [INF] Received HTTP response headers after 29.6219ms - 200 +2024-05-17 22:01:12.559 +02:00 [INF] End processing HTTP request after 30.1709ms - 200 +2024-05-17 22:01:12.560 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:01:12.707 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to af9ca0fc-b35b-4566-84e5-83dd08f20c3e. +2024-05-17 22:01:12.708 +02:00 [INF] Handled a message: friend_invited with ID: 47a156bdb62344c0b09b3cc6d4d83e5c, Correlation ID: 4311e56a65434feeb390807702d4dd4e, retry: 0 +2024-05-17 22:03:13.783 +02:00 [INF] Deregistering a service [id: notifications-service:e01486fe25044816b7b452fabf96f942] from Consul... +2024-05-17 22:03:13.784 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:e01486fe25044816b7b452fabf96f942" +2024-05-17 22:03:13.784 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e01486fe25044816b7b452fabf96f942 +2024-05-17 22:03:13.784 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e01486fe25044816b7b452fabf96f942 +2024-05-17 22:03:13.786 +02:00 [INF] Received HTTP response headers after 2.0046ms - 200 +2024-05-17 22:03:13.787 +02:00 [INF] End processing HTTP request after 2.5406ms - 200 +2024-05-17 22:03:13.787 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:03:13.787 +02:00 [INF] Deregistered a service [id: notifications-service:e01486fe25044816b7b452fabf96f942] from Consul. +2024-05-17 22:03:25.789 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:03:25.828 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:03:25.881 +02:00 [INF] Registering a service [id: notifications-service:88b5daeb7c0c40edaa4da1f055d25844] in Consul... +2024-05-17 22:03:25.898 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:03:25.901 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:03:25.902 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:03:25.908 +02:00 [INF] Received HTTP response headers after 4.502ms - 200 +2024-05-17 22:03:25.909 +02:00 [INF] End processing HTTP request after 8.7086ms - 200 +2024-05-17 22:03:25.911 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:03:25.912 +02:00 [INF] Registered a service [id: notifications-service:88b5daeb7c0c40edaa4da1f055d25844] in Consul. +2024-05-17 22:03:25.918 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:03:25.926 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:03:25.928 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:03:25.930 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:03:25.932 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:03:25.934 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:03:25.936 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:03:25.938 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:03:57.394 +02:00 [INF] Received a message with ID: 'a24595b44b50451a91e543a063b146c6', Correlation ID: '17b6405cfa99426f979ef3331d423777', timestamp: 1715976237, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:03:57.394 +02:00 [INF] Received a message with ID: '76434a1b0607492e9cd730cdfc2265a5', Correlation ID: '53aad05dfe1a4bb895d86b600061d220', timestamp: 1715976237, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:03:57.424 +02:00 [INF] Handling a message: friend_invited with ID: 76434a1b0607492e9cd730cdfc2265a5, Correlation ID: 53aad05dfe1a4bb895d86b600061d220, retry: 0 +2024-05-17 22:03:57.424 +02:00 [INF] Handling a message: friend_request_sent with ID: a24595b44b50451a91e543a063b146c6, Correlation ID: 17b6405cfa99426f979ef3331d423777, retry: 0 +2024-05-17 22:03:57.648 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to b5689b7d-ab8b-489a-9df6-c8a6e30bd2dc. +2024-05-17 22:03:57.650 +02:00 [INF] Handled a message: friend_request_sent with ID: a24595b44b50451a91e543a063b146c6, Correlation ID: 17b6405cfa99426f979ef3331d423777, retry: 0 +2024-05-17 22:03:57.749 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:03:57.750 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:03:57.751 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:03:57.787 +02:00 [INF] Received HTTP response headers after 35.628ms - 200 +2024-05-17 22:03:57.787 +02:00 [INF] End processing HTTP request after 36.7726ms - 200 +2024-05-17 22:03:57.787 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:03:57.998 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to b5689b7d-ab8b-489a-9df6-c8a6e30bd2dc. +2024-05-17 22:03:57.999 +02:00 [INF] Handled a message: friend_invited with ID: 76434a1b0607492e9cd730cdfc2265a5, Correlation ID: 53aad05dfe1a4bb895d86b600061d220, retry: 0 +2024-05-17 22:04:04.701 +02:00 [INF] Received a message with ID: '1cd809b73c93453c8f3f47643b300c63', Correlation ID: 'd0e6a6da014841228ae69d2c42b80ba5', timestamp: 1715976244, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:04:04.702 +02:00 [INF] Handling a message: friend_invited with ID: 1cd809b73c93453c8f3f47643b300c63, Correlation ID: d0e6a6da014841228ae69d2c42b80ba5, retry: 0 +2024-05-17 22:04:04.701 +02:00 [INF] Received a message with ID: '2ba9df2894dc4a4392cd93999a019e92', Correlation ID: '9dfe308378ea465fac5b578d98ac4970', timestamp: 1715976244, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:04:04.704 +02:00 [INF] Handling a message: friend_request_sent with ID: 2ba9df2894dc4a4392cd93999a019e92, Correlation ID: 9dfe308378ea465fac5b578d98ac4970, retry: 0 +2024-05-17 22:04:04.734 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:04:04.735 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:04:04.736 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:04:04.768 +02:00 [INF] Received HTTP response headers after 31.9044ms - 200 +2024-05-17 22:04:04.769 +02:00 [INF] End processing HTTP request after 33.7887ms - 200 +2024-05-17 22:04:04.769 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:04:04.831 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 5bd997d5-431f-4819-9802-7f4df930051e. +2024-05-17 22:04:04.831 +02:00 [INF] Handled a message: friend_request_sent with ID: 2ba9df2894dc4a4392cd93999a019e92, Correlation ID: 9dfe308378ea465fac5b578d98ac4970, retry: 0 +2024-05-17 22:04:04.932 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 5bd997d5-431f-4819-9802-7f4df930051e. +2024-05-17 22:04:04.932 +02:00 [INF] Handled a message: friend_invited with ID: 1cd809b73c93453c8f3f47643b300c63, Correlation ID: d0e6a6da014841228ae69d2c42b80ba5, retry: 0 +2024-05-17 22:04:23.368 +02:00 [INF] Received a message with ID: '684c60d6b6434c19932748847be6f838', Correlation ID: '17e89d8f2f1f4fbf877fab5394dec533', timestamp: 1715976263, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:04:23.368 +02:00 [INF] Received a message with ID: '06c71a9d48e34f0282b061ed363eea59', Correlation ID: '1747df52cd9f4e1bb56fa546898d6bd2', timestamp: 1715976263, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:04:23.368 +02:00 [INF] Handling a message: friend_request_sent with ID: 684c60d6b6434c19932748847be6f838, Correlation ID: 17e89d8f2f1f4fbf877fab5394dec533, retry: 0 +2024-05-17 22:04:23.368 +02:00 [INF] Handling a message: friend_invited with ID: 06c71a9d48e34f0282b061ed363eea59, Correlation ID: 1747df52cd9f4e1bb56fa546898d6bd2, retry: 0 +2024-05-17 22:04:23.397 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:04:23.398 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:04:23.398 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:04:23.426 +02:00 [INF] Received HTTP response headers after 28.4289ms - 200 +2024-05-17 22:04:23.427 +02:00 [INF] End processing HTTP request after 28.9903ms - 200 +2024-05-17 22:04:23.427 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:04:23.486 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bc230fc6-9c3c-48e3-bcf9-54aabf7f1980. +2024-05-17 22:04:23.486 +02:00 [INF] Handled a message: friend_request_sent with ID: 684c60d6b6434c19932748847be6f838, Correlation ID: 17e89d8f2f1f4fbf877fab5394dec533, retry: 0 +2024-05-17 22:04:23.578 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to bc230fc6-9c3c-48e3-bcf9-54aabf7f1980. +2024-05-17 22:04:23.578 +02:00 [INF] Handled a message: friend_invited with ID: 06c71a9d48e34f0282b061ed363eea59, Correlation ID: 1747df52cd9f4e1bb56fa546898d6bd2, retry: 0 +2024-05-17 22:07:29.142 +02:00 [INF] Deregistering a service [id: notifications-service:88b5daeb7c0c40edaa4da1f055d25844] from Consul... +2024-05-17 22:07:29.144 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:88b5daeb7c0c40edaa4da1f055d25844" +2024-05-17 22:07:29.145 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:88b5daeb7c0c40edaa4da1f055d25844 +2024-05-17 22:07:29.145 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:88b5daeb7c0c40edaa4da1f055d25844 +2024-05-17 22:07:29.152 +02:00 [INF] Received HTTP response headers after 6.0948ms - 200 +2024-05-17 22:07:29.153 +02:00 [INF] End processing HTTP request after 7.5317ms - 200 +2024-05-17 22:07:29.153 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:29.154 +02:00 [INF] Deregistered a service [id: notifications-service:88b5daeb7c0c40edaa4da1f055d25844] from Consul. +2024-05-17 22:07:34.997 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:07:35.032 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:07:35.094 +02:00 [INF] Registering a service [id: notifications-service:75c5e63aa7884a1db843db5619d58a1d] in Consul... +2024-05-17 22:07:35.112 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:07:35.115 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:07:35.116 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:07:35.122 +02:00 [INF] Received HTTP response headers after 3.7651ms - 200 +2024-05-17 22:07:35.122 +02:00 [INF] End processing HTTP request after 7.9874ms - 200 +2024-05-17 22:07:35.125 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:35.126 +02:00 [INF] Registered a service [id: notifications-service:75c5e63aa7884a1db843db5619d58a1d] in Consul. +2024-05-17 22:07:35.132 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:07:35.140 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:07:35.142 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:07:35.144 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:07:35.146 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:07:35.148 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:07:35.151 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:07:35.153 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:07:37.340 +02:00 [INF] Received a message with ID: 'a79d37c7d5684f3bae33fff442c98a7e', Correlation ID: 'ea83bb42fef24835a334a08238c8fae4', timestamp: 1715976457, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:07:37.340 +02:00 [INF] Received a message with ID: 'ce15a3d0d52747ea9d3c968469925c25', Correlation ID: 'bd5108f68a5a4d219e76f8a8db002629', timestamp: 1715976457, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:07:37.357 +02:00 [INF] Handling a message: friend_request_sent with ID: ce15a3d0d52747ea9d3c968469925c25, Correlation ID: bd5108f68a5a4d219e76f8a8db002629, retry: 0 +2024-05-17 22:07:37.357 +02:00 [INF] Handling a message: friend_invited with ID: a79d37c7d5684f3bae33fff442c98a7e, Correlation ID: ea83bb42fef24835a334a08238c8fae4, retry: 0 +2024-05-17 22:07:37.410 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:07:37.411 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:37.411 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:37.712 +02:00 [INF] Received HTTP response headers after 301.0205ms - 200 +2024-05-17 22:07:37.713 +02:00 [INF] End processing HTTP request after 302.56ms - 200 +2024-05-17 22:07:37.714 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:37.836 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 0c1cdcac-19b1-4f51-8d2a-f03498bb50fe. +2024-05-17 22:07:37.839 +02:00 [INF] Handled a message: friend_request_sent with ID: ce15a3d0d52747ea9d3c968469925c25, Correlation ID: bd5108f68a5a4d219e76f8a8db002629, retry: 0 +2024-05-17 22:07:37.939 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 0c1cdcac-19b1-4f51-8d2a-f03498bb50fe. +2024-05-17 22:07:37.939 +02:00 [INF] Handled a message: friend_invited with ID: a79d37c7d5684f3bae33fff442c98a7e, Correlation ID: ea83bb42fef24835a334a08238c8fae4, retry: 0 +2024-05-17 22:07:44.586 +02:00 [INF] Received a message with ID: 'ed1be700889648288c9ab9616bb98263', Correlation ID: '5d76907681134fa3948553edc1e1423f', timestamp: 1715976464, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:07:44.586 +02:00 [INF] Received a message with ID: 'd6af06664e294441a64325e962fb7fab', Correlation ID: 'dc6cc23d5f804d6f9f4492b3546be036', timestamp: 1715976464, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:07:44.593 +02:00 [INF] Handling a message: friend_request_sent with ID: d6af06664e294441a64325e962fb7fab, Correlation ID: dc6cc23d5f804d6f9f4492b3546be036, retry: 0 +2024-05-17 22:07:44.591 +02:00 [INF] Handling a message: friend_invited with ID: ed1be700889648288c9ab9616bb98263, Correlation ID: 5d76907681134fa3948553edc1e1423f, retry: 0 +2024-05-17 22:07:44.634 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:07:44.634 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:44.634 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:44.665 +02:00 [INF] Received HTTP response headers after 30.7868ms - 200 +2024-05-17 22:07:44.666 +02:00 [INF] End processing HTTP request after 32.243ms - 200 +2024-05-17 22:07:44.667 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:44.726 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 1b26e494-ae25-41fe-bcba-a202c9463ccf. +2024-05-17 22:07:44.727 +02:00 [INF] Handled a message: friend_request_sent with ID: d6af06664e294441a64325e962fb7fab, Correlation ID: dc6cc23d5f804d6f9f4492b3546be036, retry: 0 +2024-05-17 22:07:44.732 +02:00 [ERR] There was an error when processing a message with id: 'ed1be700889648288c9ab9616bb98263'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:07:44.748 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:07:44.751 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'ed1be700889648288c9ab9616bb98263', Correlation ID: '5d76907681134fa3948553edc1e1423f', retry 1/3... +2024-05-17 22:07:46.751 +02:00 [INF] Handling a message: friend_invited with ID: ed1be700889648288c9ab9616bb98263, Correlation ID: 5d76907681134fa3948553edc1e1423f, retry: 1 +2024-05-17 22:07:46.784 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:07:46.784 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:46.785 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:46.815 +02:00 [INF] Received HTTP response headers after 29.7232ms - 200 +2024-05-17 22:07:46.816 +02:00 [INF] End processing HTTP request after 31.4348ms - 200 +2024-05-17 22:07:46.816 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:46.875 +02:00 [ERR] There was an error when processing a message with id: 'ed1be700889648288c9ab9616bb98263'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:07:46.880 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:07:46.886 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'ed1be700889648288c9ab9616bb98263', Correlation ID: '5d76907681134fa3948553edc1e1423f', retry 2/3... +2024-05-17 22:07:48.889 +02:00 [INF] Handling a message: friend_invited with ID: ed1be700889648288c9ab9616bb98263, Correlation ID: 5d76907681134fa3948553edc1e1423f, retry: 2 +2024-05-17 22:07:48.922 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:07:48.922 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:48.923 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:48.952 +02:00 [INF] Received HTTP response headers after 28.8448ms - 200 +2024-05-17 22:07:48.953 +02:00 [INF] End processing HTTP request after 30.2716ms - 200 +2024-05-17 22:07:48.953 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:49.014 +02:00 [ERR] There was an error when processing a message with id: 'ed1be700889648288c9ab9616bb98263'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:07:49.017 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:07:49.019 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'ed1be700889648288c9ab9616bb98263', Correlation ID: '5d76907681134fa3948553edc1e1423f', retry 3/3... +2024-05-17 22:07:51.021 +02:00 [INF] Handling a message: friend_invited with ID: ed1be700889648288c9ab9616bb98263, Correlation ID: 5d76907681134fa3948553edc1e1423f, retry: 3 +2024-05-17 22:07:51.048 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:07:51.049 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:51.049 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:07:51.078 +02:00 [INF] Received HTTP response headers after 28.6089ms - 200 +2024-05-17 22:07:51.079 +02:00 [INF] End processing HTTP request after 29.7573ms - 200 +2024-05-17 22:07:51.079 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:51.140 +02:00 [ERR] There was an error when processing a message with id: 'ed1be700889648288c9ab9616bb98263'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:07:51.143 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:07:51.144 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'ed1be700889648288c9ab9616bb98263', Correlation ID: '5d76907681134fa3948553edc1e1423f', retry 4/3... +2024-05-17 22:07:51.145 +02:00 [ERR] Handling a message: friend_invited with ID: ed1be700889648288c9ab9616bb98263, Correlation ID: 5d76907681134fa3948553edc1e1423f failed +2024-05-17 22:07:55.197 +02:00 [INF] Deregistering a service [id: notifications-service:75c5e63aa7884a1db843db5619d58a1d] from Consul... +2024-05-17 22:07:55.199 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:75c5e63aa7884a1db843db5619d58a1d" +2024-05-17 22:07:55.199 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:75c5e63aa7884a1db843db5619d58a1d +2024-05-17 22:07:55.199 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:75c5e63aa7884a1db843db5619d58a1d +2024-05-17 22:07:55.202 +02:00 [INF] Received HTTP response headers after 2.8745ms - 200 +2024-05-17 22:07:55.203 +02:00 [INF] End processing HTTP request after 4.1372ms - 200 +2024-05-17 22:07:55.203 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:07:55.205 +02:00 [INF] Deregistered a service [id: notifications-service:75c5e63aa7884a1db843db5619d58a1d] from Consul. +2024-05-17 22:08:01.177 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:08:01.213 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:08:01.266 +02:00 [INF] Registering a service [id: notifications-service:2e5c18394955448aade8870150cd87de] in Consul... +2024-05-17 22:08:01.285 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:08:01.289 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:08:01.290 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:08:01.296 +02:00 [INF] Received HTTP response headers after 4.2746ms - 200 +2024-05-17 22:08:01.297 +02:00 [INF] End processing HTTP request after 8.6967ms - 200 +2024-05-17 22:08:01.300 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:08:01.300 +02:00 [INF] Registered a service [id: notifications-service:2e5c18394955448aade8870150cd87de] in Consul. +2024-05-17 22:08:01.306 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:08:01.315 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:08:01.317 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:08:01.318 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:08:01.321 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:08:01.323 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:08:01.325 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:08:01.327 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:08:02.580 +02:00 [INF] Received a message with ID: 'f024b8bbc2964e4bbe2973430b998c49', Correlation ID: 'c40090be8b2a4215adc5e95ead30dd54', timestamp: 1715976482, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:08:02.580 +02:00 [INF] Received a message with ID: 'd18db63efe63457e9dadec1f56314569', Correlation ID: '98c7078128574b908e65f9ef653ffef9', timestamp: 1715976482, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:08:02.598 +02:00 [INF] Handling a message: friend_invited with ID: d18db63efe63457e9dadec1f56314569, Correlation ID: 98c7078128574b908e65f9ef653ffef9, retry: 0 +2024-05-17 22:08:02.598 +02:00 [INF] Handling a message: friend_request_sent with ID: f024b8bbc2964e4bbe2973430b998c49, Correlation ID: c40090be8b2a4215adc5e95ead30dd54, retry: 0 +2024-05-17 22:08:02.852 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:08:02.853 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:02.853 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:02.863 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 3c5327db-1d4f-4895-8e26-d0d7036db34c. +2024-05-17 22:08:02.865 +02:00 [INF] Handled a message: friend_request_sent with ID: f024b8bbc2964e4bbe2973430b998c49, Correlation ID: c40090be8b2a4215adc5e95ead30dd54, retry: 0 +2024-05-17 22:08:02.892 +02:00 [INF] Received HTTP response headers after 38.7657ms - 200 +2024-05-17 22:08:02.893 +02:00 [INF] End processing HTTP request after 40.0587ms - 200 +2024-05-17 22:08:02.893 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:08:03.003 +02:00 [ERR] There was an error when processing a message with id: 'd18db63efe63457e9dadec1f56314569'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:08:03.025 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:08:03.029 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd18db63efe63457e9dadec1f56314569', Correlation ID: '98c7078128574b908e65f9ef653ffef9', retry 1/3... +2024-05-17 22:08:05.031 +02:00 [INF] Handling a message: friend_invited with ID: d18db63efe63457e9dadec1f56314569, Correlation ID: 98c7078128574b908e65f9ef653ffef9, retry: 1 +2024-05-17 22:08:05.074 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:08:05.074 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:05.075 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:05.104 +02:00 [INF] Received HTTP response headers after 29.0078ms - 200 +2024-05-17 22:08:05.105 +02:00 [INF] End processing HTTP request after 31.243ms - 200 +2024-05-17 22:08:05.106 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:08:05.167 +02:00 [ERR] There was an error when processing a message with id: 'd18db63efe63457e9dadec1f56314569'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:08:05.171 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:08:05.172 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd18db63efe63457e9dadec1f56314569', Correlation ID: '98c7078128574b908e65f9ef653ffef9', retry 2/3... +2024-05-17 22:08:07.171 +02:00 [INF] Handling a message: friend_invited with ID: d18db63efe63457e9dadec1f56314569, Correlation ID: 98c7078128574b908e65f9ef653ffef9, retry: 2 +2024-05-17 22:08:07.214 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:08:07.215 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:07.216 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:07.247 +02:00 [INF] Received HTTP response headers after 30.439ms - 200 +2024-05-17 22:08:07.249 +02:00 [INF] End processing HTTP request after 34.3996ms - 200 +2024-05-17 22:08:07.250 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:08:07.312 +02:00 [ERR] There was an error when processing a message with id: 'd18db63efe63457e9dadec1f56314569'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:08:07.313 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:08:07.315 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd18db63efe63457e9dadec1f56314569', Correlation ID: '98c7078128574b908e65f9ef653ffef9', retry 3/3... +2024-05-17 22:08:09.316 +02:00 [INF] Handling a message: friend_invited with ID: d18db63efe63457e9dadec1f56314569, Correlation ID: 98c7078128574b908e65f9ef653ffef9, retry: 3 +2024-05-17 22:08:09.345 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:08:09.346 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:09.346 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:08:09.382 +02:00 [INF] Received HTTP response headers after 34.2601ms - 200 +2024-05-17 22:08:09.383 +02:00 [INF] End processing HTTP request after 37.068ms - 200 +2024-05-17 22:08:09.384 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:08:09.441 +02:00 [ERR] There was an error when processing a message with id: 'd18db63efe63457e9dadec1f56314569'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:08:09.445 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:08:09.449 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd18db63efe63457e9dadec1f56314569', Correlation ID: '98c7078128574b908e65f9ef653ffef9', retry 4/3... +2024-05-17 22:08:09.449 +02:00 [ERR] Handling a message: friend_invited with ID: d18db63efe63457e9dadec1f56314569, Correlation ID: 98c7078128574b908e65f9ef653ffef9 failed +2024-05-17 22:10:13.834 +02:00 [INF] Deregistering a service [id: notifications-service:2e5c18394955448aade8870150cd87de] from Consul... +2024-05-17 22:10:13.836 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:2e5c18394955448aade8870150cd87de" +2024-05-17 22:10:13.837 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2e5c18394955448aade8870150cd87de +2024-05-17 22:10:13.837 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2e5c18394955448aade8870150cd87de +2024-05-17 22:10:13.844 +02:00 [INF] Received HTTP response headers after 6.3378ms - 200 +2024-05-17 22:10:13.846 +02:00 [INF] End processing HTTP request after 8.8726ms - 200 +2024-05-17 22:10:13.846 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:13.847 +02:00 [INF] Deregistered a service [id: notifications-service:2e5c18394955448aade8870150cd87de] from Consul. +2024-05-17 22:10:19.820 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:10:19.861 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:10:19.918 +02:00 [INF] Registering a service [id: notifications-service:a4970f7191fd428997c5294da334bd05] in Consul... +2024-05-17 22:10:19.938 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:10:19.941 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:10:19.941 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:10:19.948 +02:00 [INF] Received HTTP response headers after 4.2132ms - 200 +2024-05-17 22:10:19.949 +02:00 [INF] End processing HTTP request after 9.0178ms - 200 +2024-05-17 22:10:19.952 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:19.953 +02:00 [INF] Registered a service [id: notifications-service:a4970f7191fd428997c5294da334bd05] in Consul. +2024-05-17 22:10:19.958 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:10:19.968 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:10:19.970 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:10:19.972 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:10:19.974 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:10:19.976 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:10:19.978 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:10:19.982 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:10:21.895 +02:00 [INF] Received a message with ID: 'e78f62a094ed437d9d680c45c2fca41e', Correlation ID: 'e70645f277b04786b5776d7fcd91e8fd', timestamp: 1715976621, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:10:21.895 +02:00 [INF] Received a message with ID: '08a4413c666f48ee9954333650bb611d', Correlation ID: '0bbaec32e9d241508137665d98f3730f', timestamp: 1715976621, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:10:21.914 +02:00 [INF] Handling a message: friend_request_sent with ID: 08a4413c666f48ee9954333650bb611d, Correlation ID: 0bbaec32e9d241508137665d98f3730f, retry: 0 +2024-05-17 22:10:21.914 +02:00 [INF] Handling a message: friend_invited with ID: e78f62a094ed437d9d680c45c2fca41e, Correlation ID: e70645f277b04786b5776d7fcd91e8fd, retry: 0 +2024-05-17 22:10:21.969 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:10:21.970 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:21.970 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:22.008 +02:00 [INF] Received HTTP response headers after 37.1309ms - 200 +2024-05-17 22:10:22.009 +02:00 [INF] End processing HTTP request after 38.655ms - 200 +2024-05-17 22:10:22.009 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:22.165 +02:00 [ERR] There was an error when processing a message with id: 'e78f62a094ed437d9d680c45c2fca41e'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:10:22.179 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:10:22.184 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e78f62a094ed437d9d680c45c2fca41e', Correlation ID: 'e70645f277b04786b5776d7fcd91e8fd', retry 1/3... +2024-05-17 22:10:22.353 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to b712aa6c-6666-4b0b-9896-1820e688e3f6. +2024-05-17 22:10:22.355 +02:00 [INF] Handled a message: friend_request_sent with ID: 08a4413c666f48ee9954333650bb611d, Correlation ID: 0bbaec32e9d241508137665d98f3730f, retry: 0 +2024-05-17 22:10:24.189 +02:00 [INF] Handling a message: friend_invited with ID: e78f62a094ed437d9d680c45c2fca41e, Correlation ID: e70645f277b04786b5776d7fcd91e8fd, retry: 1 +2024-05-17 22:10:24.218 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:10:24.218 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:24.218 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:24.247 +02:00 [INF] Received HTTP response headers after 28.528ms - 200 +2024-05-17 22:10:24.247 +02:00 [INF] End processing HTTP request after 29.2208ms - 200 +2024-05-17 22:10:24.248 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:24.303 +02:00 [ERR] There was an error when processing a message with id: 'e78f62a094ed437d9d680c45c2fca41e'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:10:24.306 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:10:24.310 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e78f62a094ed437d9d680c45c2fca41e', Correlation ID: 'e70645f277b04786b5776d7fcd91e8fd', retry 2/3... +2024-05-17 22:10:26.308 +02:00 [INF] Handling a message: friend_invited with ID: e78f62a094ed437d9d680c45c2fca41e, Correlation ID: e70645f277b04786b5776d7fcd91e8fd, retry: 2 +2024-05-17 22:10:26.338 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:10:26.338 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:26.338 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:26.367 +02:00 [INF] Received HTTP response headers after 28.8804ms - 200 +2024-05-17 22:10:26.367 +02:00 [INF] End processing HTTP request after 29.4313ms - 200 +2024-05-17 22:10:26.368 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:26.427 +02:00 [ERR] There was an error when processing a message with id: 'e78f62a094ed437d9d680c45c2fca41e'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:10:26.429 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:10:26.437 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e78f62a094ed437d9d680c45c2fca41e', Correlation ID: 'e70645f277b04786b5776d7fcd91e8fd', retry 3/3... +2024-05-17 22:10:28.436 +02:00 [INF] Handling a message: friend_invited with ID: e78f62a094ed437d9d680c45c2fca41e, Correlation ID: e70645f277b04786b5776d7fcd91e8fd, retry: 3 +2024-05-17 22:10:28.464 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:10:28.464 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:28.464 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:10:28.493 +02:00 [INF] Received HTTP response headers after 29.0889ms - 200 +2024-05-17 22:10:28.494 +02:00 [INF] End processing HTTP request after 29.8148ms - 200 +2024-05-17 22:10:28.494 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:10:28.552 +02:00 [ERR] There was an error when processing a message with id: 'e78f62a094ed437d9d680c45c2fca41e'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:10:28.554 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.SingleOrDefaultAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.GetByStudentIdAsync(Guid studentId) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 23 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 76 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:10:28.556 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e78f62a094ed437d9d680c45c2fca41e', Correlation ID: 'e70645f277b04786b5776d7fcd91e8fd', retry 4/3... +2024-05-17 22:10:28.556 +02:00 [ERR] Handling a message: friend_invited with ID: e78f62a094ed437d9d680c45c2fca41e, Correlation ID: e70645f277b04786b5776d7fcd91e8fd failed +2024-05-17 22:12:07.307 +02:00 [INF] Deregistering a service [id: notifications-service:a4970f7191fd428997c5294da334bd05] from Consul... +2024-05-17 22:12:07.310 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a4970f7191fd428997c5294da334bd05" +2024-05-17 22:12:07.310 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a4970f7191fd428997c5294da334bd05 +2024-05-17 22:12:07.311 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a4970f7191fd428997c5294da334bd05 +2024-05-17 22:12:07.317 +02:00 [INF] Received HTTP response headers after 5.8245ms - 200 +2024-05-17 22:12:07.317 +02:00 [INF] End processing HTTP request after 7.2451ms - 200 +2024-05-17 22:12:07.318 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:12:07.320 +02:00 [INF] Deregistered a service [id: notifications-service:a4970f7191fd428997c5294da334bd05] from Consul. +2024-05-17 22:12:12.998 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:12:13.038 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:12:13.098 +02:00 [INF] Registering a service [id: notifications-service:92d429bf2e6843489ab737248d095336] in Consul... +2024-05-17 22:12:13.115 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:12:13.118 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:12:13.119 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:12:13.125 +02:00 [INF] Received HTTP response headers after 4.3192ms - 200 +2024-05-17 22:12:13.126 +02:00 [INF] End processing HTTP request after 8.8707ms - 200 +2024-05-17 22:12:13.129 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:12:13.129 +02:00 [INF] Registered a service [id: notifications-service:92d429bf2e6843489ab737248d095336] in Consul. +2024-05-17 22:12:13.135 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:12:13.145 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:12:13.147 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:12:13.149 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:12:13.151 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:12:13.153 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:12:13.155 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:12:13.159 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:12:14.553 +02:00 [INF] Received a message with ID: '2159a70b78854180a1d0c6c6f043912c', Correlation ID: '543b151a467b4abc91d22c78eeaef0c5', timestamp: 1715976734, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:12:14.553 +02:00 [INF] Received a message with ID: 'df644519c4664b6a99191d45a00a1918', Correlation ID: '531380b9b5f7465087a0390b88f6a54a', timestamp: 1715976734, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:12:14.572 +02:00 [INF] Handling a message: friend_invited with ID: 2159a70b78854180a1d0c6c6f043912c, Correlation ID: 543b151a467b4abc91d22c78eeaef0c5, retry: 0 +2024-05-17 22:12:14.572 +02:00 [INF] Handling a message: friend_request_sent with ID: df644519c4664b6a99191d45a00a1918, Correlation ID: 531380b9b5f7465087a0390b88f6a54a, retry: 0 +2024-05-17 22:12:14.622 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:12:14.623 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:12:14.623 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:12:14.657 +02:00 [INF] Received HTTP response headers after 34.3179ms - 200 +2024-05-17 22:12:14.658 +02:00 [INF] End processing HTTP request after 35.0233ms - 200 +2024-05-17 22:12:14.658 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:12:14.940 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to ebe5e5bc-d599-4601-abbd-5cfd98ac6a37. +2024-05-17 22:12:14.942 +02:00 [INF] Handled a message: friend_invited with ID: 2159a70b78854180a1d0c6c6f043912c, Correlation ID: 543b151a467b4abc91d22c78eeaef0c5, retry: 0 +2024-05-17 22:12:14.953 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to ebe5e5bc-d599-4601-abbd-5cfd98ac6a37. +2024-05-17 22:12:14.954 +02:00 [INF] Handled a message: friend_request_sent with ID: df644519c4664b6a99191d45a00a1918, Correlation ID: 531380b9b5f7465087a0390b88f6a54a, retry: 0 +2024-05-17 22:12:19.776 +02:00 [INF] Received a message with ID: '361da41c037f4891966e86db99f4f355', Correlation ID: '06867510554142e0bc110f950dc74339', timestamp: 1715976739, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:12:19.777 +02:00 [INF] Received a message with ID: '6ad2b75abb3a43c69d36c2392e83b192', Correlation ID: '5fd142a61c074a2cb282fbc51e3a46c0', timestamp: 1715976739, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:12:19.778 +02:00 [INF] Handling a message: friend_request_sent with ID: 6ad2b75abb3a43c69d36c2392e83b192, Correlation ID: 5fd142a61c074a2cb282fbc51e3a46c0, retry: 0 +2024-05-17 22:12:19.778 +02:00 [INF] Handling a message: friend_invited with ID: 361da41c037f4891966e86db99f4f355, Correlation ID: 06867510554142e0bc110f950dc74339, retry: 0 +2024-05-17 22:12:19.813 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:12:19.814 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:12:19.814 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:12:19.844 +02:00 [INF] Received HTTP response headers after 30.3405ms - 200 +2024-05-17 22:12:19.845 +02:00 [INF] End processing HTTP request after 31.1949ms - 200 +2024-05-17 22:12:19.845 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:12:19.903 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 4faa1718-2902-4c9b-999a-7e3e557f1ee0. +2024-05-17 22:12:19.904 +02:00 [INF] Handled a message: friend_request_sent with ID: 6ad2b75abb3a43c69d36c2392e83b192, Correlation ID: 5fd142a61c074a2cb282fbc51e3a46c0, retry: 0 +2024-05-17 22:12:19.996 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 4faa1718-2902-4c9b-999a-7e3e557f1ee0. +2024-05-17 22:12:19.997 +02:00 [INF] Handled a message: friend_invited with ID: 361da41c037f4891966e86db99f4f355, Correlation ID: 06867510554142e0bc110f950dc74339, retry: 0 +2024-05-17 22:16:27.399 +02:00 [INF] Deregistering a service [id: notifications-service:92d429bf2e6843489ab737248d095336] from Consul... +2024-05-17 22:16:27.401 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:92d429bf2e6843489ab737248d095336" +2024-05-17 22:16:27.402 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:92d429bf2e6843489ab737248d095336 +2024-05-17 22:16:27.402 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:92d429bf2e6843489ab737248d095336 +2024-05-17 22:16:27.406 +02:00 [INF] Received HTTP response headers after 3.7011ms - 200 +2024-05-17 22:16:27.406 +02:00 [INF] End processing HTTP request after 4.6588ms - 200 +2024-05-17 22:16:27.407 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:16:27.408 +02:00 [INF] Deregistered a service [id: notifications-service:92d429bf2e6843489ab737248d095336] from Consul. +2024-05-17 22:16:33.704 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:16:33.744 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:16:33.806 +02:00 [INF] Registering a service [id: notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6] in Consul... +2024-05-17 22:16:33.827 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:16:33.830 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:16:33.831 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:16:33.838 +02:00 [INF] Received HTTP response headers after 4.5745ms - 200 +2024-05-17 22:16:33.839 +02:00 [INF] End processing HTTP request after 9.4315ms - 200 +2024-05-17 22:16:33.842 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:16:33.843 +02:00 [INF] Registered a service [id: notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6] in Consul. +2024-05-17 22:16:33.850 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:16:33.863 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:16:33.865 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:16:33.868 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:16:33.871 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:16:33.876 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:16:33.879 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:16:33.882 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:16:39.342 +02:00 [INF] Received a message with ID: '8b3df8cdb6e641f8a144201379d22406', Correlation ID: '63c9ca268e7846daa9566855557d6c5b', timestamp: 1715976999, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:16:39.342 +02:00 [INF] Received a message with ID: '501cf17b98a9423d9b12868689b69f17', Correlation ID: 'ebdb5111d6fc48afa75b0ed9f4c23ec1', timestamp: 1715976999, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:16:39.368 +02:00 [INF] Handling a message: friend_invited with ID: 8b3df8cdb6e641f8a144201379d22406, Correlation ID: 63c9ca268e7846daa9566855557d6c5b, retry: 0 +2024-05-17 22:16:39.368 +02:00 [INF] Handling a message: friend_request_sent with ID: 501cf17b98a9423d9b12868689b69f17, Correlation ID: ebdb5111d6fc48afa75b0ed9f4c23ec1, retry: 0 +2024-05-17 22:16:39.594 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 17166c9e-d3f2-44c3-97b6-0949b5a579d1. +2024-05-17 22:16:39.597 +02:00 [INF] Handled a message: friend_request_sent with ID: 501cf17b98a9423d9b12868689b69f17, Correlation ID: ebdb5111d6fc48afa75b0ed9f4c23ec1, retry: 0 +2024-05-17 22:16:39.675 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:16:39.676 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:16:39.677 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:16:39.716 +02:00 [INF] Received HTTP response headers after 38.1606ms - 200 +2024-05-17 22:16:39.716 +02:00 [INF] End processing HTTP request after 40.237ms - 200 +2024-05-17 22:16:39.717 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:16:39.919 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 17166c9e-d3f2-44c3-97b6-0949b5a579d1. +2024-05-17 22:16:39.920 +02:00 [INF] Handled a message: friend_invited with ID: 8b3df8cdb6e641f8a144201379d22406, Correlation ID: 63c9ca268e7846daa9566855557d6c5b, retry: 0 +2024-05-17 22:17:45.441 +02:00 [INF] Received a message with ID: '4b3a3a47812a456ab2257c1de6bb0625', Correlation ID: '557b21428a07445d9fd5d065ba1de9ad', timestamp: 1715977065, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-17 22:17:45.442 +02:00 [INF] Received a message with ID: '687e007590c049029eafbdac42e569b5', Correlation ID: '1b96726142944ff89d0aaf15bd3f60f2', timestamp: 1715977065, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-17 22:17:45.445 +02:00 [INF] Handling a message: friend_request_sent with ID: 687e007590c049029eafbdac42e569b5, Correlation ID: 1b96726142944ff89d0aaf15bd3f60f2, retry: 0 +2024-05-17 22:17:45.446 +02:00 [INF] Handling a message: friend_invited with ID: 4b3a3a47812a456ab2257c1de6bb0625, Correlation ID: 557b21428a07445d9fd5d065ba1de9ad, retry: 0 +2024-05-17 22:17:45.484 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e" +2024-05-17 22:17:45.484 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:17:45.485 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af9ca0fc-b35b-4566-84e5-83dd08f20c3e +2024-05-17 22:17:45.515 +02:00 [INF] Received HTTP response headers after 29.6746ms - 200 +2024-05-17 22:17:45.515 +02:00 [INF] End processing HTTP request after 30.8866ms - 200 +2024-05-17 22:17:45.515 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:17:45.573 +02:00 [INF] Processed friend request sent from af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 8b594368-746d-44fd-ab9a-a1650091a20f. +2024-05-17 22:17:45.573 +02:00 [INF] Handled a message: friend_request_sent with ID: 687e007590c049029eafbdac42e569b5, Correlation ID: 1b96726142944ff89d0aaf15bd3f60f2, retry: 0 +2024-05-17 22:17:45.668 +02:00 [INF] Handled invitation sent by af9ca0fc-b35b-4566-84e5-83dd08f20c3e to 8b594368-746d-44fd-ab9a-a1650091a20f. +2024-05-17 22:17:45.668 +02:00 [INF] Handled a message: friend_invited with ID: 4b3a3a47812a456ab2257c1de6bb0625, Correlation ID: 557b21428a07445d9fd5d065ba1de9ad, retry: 0 +2024-05-17 22:26:07.876 +02:00 [INF] Deregistering a service [id: notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6] from Consul... +2024-05-17 22:26:07.877 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6" +2024-05-17 22:26:07.877 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6 +2024-05-17 22:26:07.878 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6 +2024-05-17 22:26:07.879 +02:00 [INF] Received HTTP response headers after 1.6557ms - 200 +2024-05-17 22:26:07.880 +02:00 [INF] End processing HTTP request after 2.1387ms - 200 +2024-05-17 22:26:07.880 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:26:07.880 +02:00 [INF] Deregistered a service [id: notifications-service:a2f0f173d5204f5c93bed1381e8ea0a6] from Consul. +2024-05-17 22:26:19.235 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:26:19.278 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:26:19.325 +02:00 [INF] Registering a service [id: notifications-service:d74b40af9f4c4e43a9afea0564059406] in Consul... +2024-05-17 22:26:19.343 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:26:19.347 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:26:19.347 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:26:19.354 +02:00 [INF] Received HTTP response headers after 4.5245ms - 200 +2024-05-17 22:26:19.355 +02:00 [INF] End processing HTTP request after 9.0477ms - 200 +2024-05-17 22:26:19.358 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:26:19.358 +02:00 [INF] Registered a service [id: notifications-service:d74b40af9f4c4e43a9afea0564059406] in Consul. +2024-05-17 22:26:19.364 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:26:19.376 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:26:19.380 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:26:19.382 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 22:26:19.387 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:26:19.390 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:26:19.393 +02:00 [INF] Received a message with ID: '0d6188f39a824d36a1918a724299a465', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964906, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:19.394 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:26:19.397 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:26:19.401 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:26:19.419 +02:00 [INF] Handling a message: friend_request_created with ID: 0d6188f39a824d36a1918a724299a465, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 22:26:19.508 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:19.513 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:19.514 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:19.514 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:19.563 +02:00 [INF] Received HTTP response headers after 48.7471ms - 404 +2024-05-17 22:26:19.563 +02:00 [INF] End processing HTTP request after 49.4244ms - 404 +2024-05-17 22:26:19.563 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:19.566 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:19.566 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:19.566 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:19.595 +02:00 [INF] Received HTTP response headers after 28.5754ms - 404 +2024-05-17 22:26:19.595 +02:00 [INF] End processing HTTP request after 29.4251ms - 404 +2024-05-17 22:26:19.595 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:19.596 +02:00 [ERR] There was an error when processing a message with id: '0d6188f39a824d36a1918a724299a465'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:19.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:19.611 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0d6188f39a824d36a1918a724299a465', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 22:26:21.612 +02:00 [INF] Handling a message: friend_request_created with ID: 0d6188f39a824d36a1918a724299a465, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 22:26:21.649 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:21.649 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:21.650 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:21.652 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:21.682 +02:00 [INF] Received HTTP response headers after 29.5598ms - 404 +2024-05-17 22:26:21.683 +02:00 [INF] End processing HTTP request after 32.4862ms - 404 +2024-05-17 22:26:21.683 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:21.683 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:21.683 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:21.684 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:21.716 +02:00 [INF] Received HTTP response headers after 32.5047ms - 404 +2024-05-17 22:26:21.717 +02:00 [INF] End processing HTTP request after 33.6771ms - 404 +2024-05-17 22:26:21.718 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:21.719 +02:00 [ERR] There was an error when processing a message with id: '0d6188f39a824d36a1918a724299a465'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:21.722 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:21.723 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0d6188f39a824d36a1918a724299a465', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 22:26:23.725 +02:00 [INF] Handling a message: friend_request_created with ID: 0d6188f39a824d36a1918a724299a465, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 22:26:23.761 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:23.762 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:23.762 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:23.763 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:23.795 +02:00 [INF] Received HTTP response headers after 31.9837ms - 404 +2024-05-17 22:26:23.796 +02:00 [INF] End processing HTTP request after 33.6984ms - 404 +2024-05-17 22:26:23.797 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:23.797 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:23.798 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:23.799 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:23.828 +02:00 [INF] Received HTTP response headers after 28.9981ms - 404 +2024-05-17 22:26:23.829 +02:00 [INF] End processing HTTP request after 31.18ms - 404 +2024-05-17 22:26:23.829 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:23.830 +02:00 [ERR] There was an error when processing a message with id: '0d6188f39a824d36a1918a724299a465'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:23.831 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:23.832 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0d6188f39a824d36a1918a724299a465', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 22:26:25.833 +02:00 [INF] Handling a message: friend_request_created with ID: 0d6188f39a824d36a1918a724299a465, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 22:26:25.864 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.864 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:25.865 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.866 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.900 +02:00 [INF] Received HTTP response headers after 33.7953ms - 404 +2024-05-17 22:26:25.901 +02:00 [INF] End processing HTTP request after 35.931ms - 404 +2024-05-17 22:26:25.901 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:25.902 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:25.902 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.903 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.935 +02:00 [INF] Received HTTP response headers after 31.5495ms - 404 +2024-05-17 22:26:25.936 +02:00 [INF] End processing HTTP request after 33.0646ms - 404 +2024-05-17 22:26:25.936 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:25.937 +02:00 [ERR] There was an error when processing a message with id: '0d6188f39a824d36a1918a724299a465'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:25.939 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:25.940 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '0d6188f39a824d36a1918a724299a465', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 22:26:25.941 +02:00 [ERR] Handling a message: friend_request_created with ID: 0d6188f39a824d36a1918a724299a465, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 22:26:25.955 +02:00 [INF] Received a message with ID: '31c626b05c4341068799ddd9b7487e96', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', timestamp: 1715964906, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:25.957 +02:00 [INF] Handling a message: friend_request_created with ID: 31c626b05c4341068799ddd9b7487e96, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 0 +2024-05-17 22:26:25.996 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.996 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:25.997 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:25.998 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:26.041 +02:00 [INF] Received HTTP response headers after 42.526ms - 404 +2024-05-17 22:26:26.042 +02:00 [INF] End processing HTTP request after 45.4099ms - 404 +2024-05-17 22:26:26.043 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:26.043 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:26.044 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:26.045 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:26.081 +02:00 [INF] Received HTTP response headers after 33.7423ms - 404 +2024-05-17 22:26:26.082 +02:00 [INF] End processing HTTP request after 38.0886ms - 404 +2024-05-17 22:26:26.082 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:26.083 +02:00 [ERR] There was an error when processing a message with id: '31c626b05c4341068799ddd9b7487e96'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:26.085 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:26.087 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '31c626b05c4341068799ddd9b7487e96', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 1/3... +2024-05-17 22:26:28.087 +02:00 [INF] Handling a message: friend_request_created with ID: 31c626b05c4341068799ddd9b7487e96, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 1 +2024-05-17 22:26:28.117 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:28.119 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:28.119 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:28.121 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:28.151 +02:00 [INF] Received HTTP response headers after 28.9733ms - 404 +2024-05-17 22:26:28.151 +02:00 [INF] End processing HTTP request after 32.0756ms - 404 +2024-05-17 22:26:28.152 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:28.152 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:28.152 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:28.153 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:28.185 +02:00 [INF] Received HTTP response headers after 32.1056ms - 404 +2024-05-17 22:26:28.186 +02:00 [INF] End processing HTTP request after 33.0631ms - 404 +2024-05-17 22:26:28.186 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:28.186 +02:00 [ERR] There was an error when processing a message with id: '31c626b05c4341068799ddd9b7487e96'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:28.187 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:28.187 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '31c626b05c4341068799ddd9b7487e96', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 2/3... +2024-05-17 22:26:30.187 +02:00 [INF] Handling a message: friend_request_created with ID: 31c626b05c4341068799ddd9b7487e96, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 2 +2024-05-17 22:26:30.218 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:30.219 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:30.219 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:30.220 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:30.253 +02:00 [INF] Received HTTP response headers after 32.3406ms - 404 +2024-05-17 22:26:30.253 +02:00 [INF] End processing HTTP request after 33.7243ms - 404 +2024-05-17 22:26:30.254 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:30.254 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:30.255 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:30.255 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:30.291 +02:00 [INF] Received HTTP response headers after 35.566ms - 404 +2024-05-17 22:26:30.291 +02:00 [INF] End processing HTTP request after 36.8358ms - 404 +2024-05-17 22:26:30.293 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:30.294 +02:00 [ERR] There was an error when processing a message with id: '31c626b05c4341068799ddd9b7487e96'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:30.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:30.298 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '31c626b05c4341068799ddd9b7487e96', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 3/3... +2024-05-17 22:26:32.301 +02:00 [INF] Handling a message: friend_request_created with ID: 31c626b05c4341068799ddd9b7487e96, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985, retry: 3 +2024-05-17 22:26:32.338 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.339 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:32.340 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.341 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.373 +02:00 [INF] Received HTTP response headers after 30.6708ms - 404 +2024-05-17 22:26:32.373 +02:00 [INF] End processing HTTP request after 33.1181ms - 404 +2024-05-17 22:26:32.374 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:32.375 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:32.375 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.377 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.410 +02:00 [INF] Received HTTP response headers after 32.6485ms - 404 +2024-05-17 22:26:32.410 +02:00 [INF] End processing HTTP request after 34.5203ms - 404 +2024-05-17 22:26:32.410 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:32.410 +02:00 [ERR] There was an error when processing a message with id: '31c626b05c4341068799ddd9b7487e96'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:32.411 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:32.411 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '31c626b05c4341068799ddd9b7487e96', Correlation ID: '873d3a8e256d4b1c891f5269a1ea5985', retry 4/3... +2024-05-17 22:26:32.412 +02:00 [ERR] Handling a message: friend_request_created with ID: 31c626b05c4341068799ddd9b7487e96, Correlation ID: 873d3a8e256d4b1c891f5269a1ea5985 failed +2024-05-17 22:26:32.412 +02:00 [INF] Received a message with ID: 'cd30a75e53974ea3ba9563a32ea8d846', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:32.413 +02:00 [INF] Handling a message: friend_request_created with ID: cd30a75e53974ea3ba9563a32ea8d846, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:26:32.441 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.442 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:32.442 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.442 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.474 +02:00 [INF] Received HTTP response headers after 31.5854ms - 404 +2024-05-17 22:26:32.474 +02:00 [INF] End processing HTTP request after 32.5168ms - 404 +2024-05-17 22:26:32.475 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:32.475 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:32.476 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.476 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:32.507 +02:00 [INF] Received HTTP response headers after 30.7033ms - 404 +2024-05-17 22:26:32.509 +02:00 [INF] End processing HTTP request after 32.9088ms - 404 +2024-05-17 22:26:32.509 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:32.510 +02:00 [ERR] There was an error when processing a message with id: 'cd30a75e53974ea3ba9563a32ea8d846'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:32.512 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:32.513 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'cd30a75e53974ea3ba9563a32ea8d846', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 22:26:34.512 +02:00 [INF] Handling a message: friend_request_created with ID: cd30a75e53974ea3ba9563a32ea8d846, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 22:26:34.541 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:34.541 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:34.541 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:34.541 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:34.571 +02:00 [INF] Received HTTP response headers after 29.8825ms - 404 +2024-05-17 22:26:34.572 +02:00 [INF] End processing HTTP request after 30.2505ms - 404 +2024-05-17 22:26:34.572 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:34.572 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:34.573 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:34.573 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:34.604 +02:00 [INF] Received HTTP response headers after 30.3938ms - 404 +2024-05-17 22:26:34.604 +02:00 [INF] End processing HTTP request after 31.8708ms - 404 +2024-05-17 22:26:34.605 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:34.605 +02:00 [ERR] There was an error when processing a message with id: 'cd30a75e53974ea3ba9563a32ea8d846'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:34.607 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:34.609 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'cd30a75e53974ea3ba9563a32ea8d846', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 22:26:36.608 +02:00 [INF] Handling a message: friend_request_created with ID: cd30a75e53974ea3ba9563a32ea8d846, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 22:26:36.639 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:36.639 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:36.640 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:36.640 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:36.671 +02:00 [INF] Received HTTP response headers after 30.8833ms - 404 +2024-05-17 22:26:36.672 +02:00 [INF] End processing HTTP request after 31.9103ms - 404 +2024-05-17 22:26:36.672 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:36.674 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:36.674 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:36.675 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:36.707 +02:00 [INF] Received HTTP response headers after 30.5536ms - 404 +2024-05-17 22:26:36.708 +02:00 [INF] End processing HTTP request after 33.4596ms - 404 +2024-05-17 22:26:36.708 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:36.710 +02:00 [ERR] There was an error when processing a message with id: 'cd30a75e53974ea3ba9563a32ea8d846'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:36.719 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:36.720 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'cd30a75e53974ea3ba9563a32ea8d846', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 22:26:38.720 +02:00 [INF] Handling a message: friend_request_created with ID: cd30a75e53974ea3ba9563a32ea8d846, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 22:26:38.749 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.749 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:38.750 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.750 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.783 +02:00 [INF] Received HTTP response headers after 32.4437ms - 404 +2024-05-17 22:26:38.783 +02:00 [INF] End processing HTTP request after 33.4653ms - 404 +2024-05-17 22:26:38.783 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:38.784 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:38.784 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.785 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.818 +02:00 [INF] Received HTTP response headers after 32.6055ms - 404 +2024-05-17 22:26:38.819 +02:00 [INF] End processing HTTP request after 34.3039ms - 404 +2024-05-17 22:26:38.820 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:38.821 +02:00 [ERR] There was an error when processing a message with id: 'cd30a75e53974ea3ba9563a32ea8d846'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:38.822 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:38.824 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: 'cd30a75e53974ea3ba9563a32ea8d846', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 22:26:38.825 +02:00 [ERR] Handling a message: friend_request_created with ID: cd30a75e53974ea3ba9563a32ea8d846, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 22:26:38.828 +02:00 [INF] Received a message with ID: '72eeac4a1e9541868249b390cdb0be4e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:38.828 +02:00 [INF] Handling a message: friend_request_created with ID: 72eeac4a1e9541868249b390cdb0be4e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:26:38.857 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.858 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:38.858 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.858 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.889 +02:00 [INF] Received HTTP response headers after 31.0752ms - 404 +2024-05-17 22:26:38.890 +02:00 [INF] End processing HTTP request after 31.9115ms - 404 +2024-05-17 22:26:38.890 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:38.890 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:38.891 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.891 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:38.923 +02:00 [INF] Received HTTP response headers after 32.5943ms - 404 +2024-05-17 22:26:38.924 +02:00 [INF] End processing HTTP request after 33.0803ms - 404 +2024-05-17 22:26:38.924 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:38.924 +02:00 [ERR] There was an error when processing a message with id: '72eeac4a1e9541868249b390cdb0be4e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:38.925 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:38.925 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '72eeac4a1e9541868249b390cdb0be4e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 22:26:40.923 +02:00 [INF] Handling a message: friend_request_created with ID: 72eeac4a1e9541868249b390cdb0be4e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 22:26:40.953 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:40.953 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:40.953 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:40.954 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:40.985 +02:00 [INF] Received HTTP response headers after 30.9551ms - 404 +2024-05-17 22:26:40.985 +02:00 [INF] End processing HTTP request after 31.6741ms - 404 +2024-05-17 22:26:40.985 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:40.986 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:40.986 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:40.986 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:41.025 +02:00 [INF] Received HTTP response headers after 38.7448ms - 404 +2024-05-17 22:26:41.027 +02:00 [INF] End processing HTTP request after 41.233ms - 404 +2024-05-17 22:26:41.029 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:41.031 +02:00 [ERR] There was an error when processing a message with id: '72eeac4a1e9541868249b390cdb0be4e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:41.032 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:41.033 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '72eeac4a1e9541868249b390cdb0be4e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 22:26:43.035 +02:00 [INF] Handling a message: friend_request_created with ID: 72eeac4a1e9541868249b390cdb0be4e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 22:26:43.064 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:43.065 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:43.066 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:43.066 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:43.096 +02:00 [INF] Received HTTP response headers after 29.6271ms - 404 +2024-05-17 22:26:43.096 +02:00 [INF] End processing HTTP request after 30.8726ms - 404 +2024-05-17 22:26:43.097 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:43.097 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:43.097 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:43.097 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:43.127 +02:00 [INF] Received HTTP response headers after 28.952ms - 404 +2024-05-17 22:26:43.127 +02:00 [INF] End processing HTTP request after 29.5921ms - 404 +2024-05-17 22:26:43.127 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:43.127 +02:00 [ERR] There was an error when processing a message with id: '72eeac4a1e9541868249b390cdb0be4e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:43.127 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:43.128 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '72eeac4a1e9541868249b390cdb0be4e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 22:26:45.129 +02:00 [INF] Handling a message: friend_request_created with ID: 72eeac4a1e9541868249b390cdb0be4e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 22:26:45.157 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.157 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:45.157 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.157 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.185 +02:00 [INF] Received HTTP response headers after 27.904ms - 404 +2024-05-17 22:26:45.185 +02:00 [INF] End processing HTTP request after 28.4774ms - 404 +2024-05-17 22:26:45.186 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:45.186 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:45.186 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.186 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.215 +02:00 [INF] Received HTTP response headers after 28.4404ms - 404 +2024-05-17 22:26:45.215 +02:00 [INF] End processing HTTP request after 28.8305ms - 404 +2024-05-17 22:26:45.215 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:45.215 +02:00 [ERR] There was an error when processing a message with id: '72eeac4a1e9541868249b390cdb0be4e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:45.216 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:45.216 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '72eeac4a1e9541868249b390cdb0be4e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 22:26:45.216 +02:00 [ERR] Handling a message: friend_request_created with ID: 72eeac4a1e9541868249b390cdb0be4e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 22:26:45.217 +02:00 [INF] Received a message with ID: '4e10d7dda377472ba301f7815eff2d6a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:45.218 +02:00 [INF] Handling a message: friend_request_created with ID: 4e10d7dda377472ba301f7815eff2d6a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:26:45.243 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.244 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:45.244 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.244 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.271 +02:00 [INF] Received HTTP response headers after 27.1976ms - 404 +2024-05-17 22:26:45.272 +02:00 [INF] End processing HTTP request after 27.6043ms - 404 +2024-05-17 22:26:45.272 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:45.272 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:45.272 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.272 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:45.299 +02:00 [INF] Received HTTP response headers after 27.3386ms - 404 +2024-05-17 22:26:45.300 +02:00 [INF] End processing HTTP request after 27.921ms - 404 +2024-05-17 22:26:45.300 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:45.300 +02:00 [ERR] There was an error when processing a message with id: '4e10d7dda377472ba301f7815eff2d6a'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:45.301 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:45.301 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '4e10d7dda377472ba301f7815eff2d6a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 22:26:47.300 +02:00 [INF] Handling a message: friend_request_created with ID: 4e10d7dda377472ba301f7815eff2d6a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 22:26:47.328 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:47.329 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:47.329 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:47.330 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:47.361 +02:00 [INF] Received HTTP response headers after 30.7573ms - 404 +2024-05-17 22:26:47.361 +02:00 [INF] End processing HTTP request after 31.9698ms - 404 +2024-05-17 22:26:47.361 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:47.362 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:47.362 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:47.362 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:47.391 +02:00 [INF] Received HTTP response headers after 29.4171ms - 404 +2024-05-17 22:26:47.392 +02:00 [INF] End processing HTTP request after 29.9115ms - 404 +2024-05-17 22:26:47.392 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:47.392 +02:00 [ERR] There was an error when processing a message with id: '4e10d7dda377472ba301f7815eff2d6a'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:47.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:47.393 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '4e10d7dda377472ba301f7815eff2d6a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 22:26:49.393 +02:00 [INF] Handling a message: friend_request_created with ID: 4e10d7dda377472ba301f7815eff2d6a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 22:26:49.427 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:49.428 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:49.428 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:49.429 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:49.460 +02:00 [INF] Received HTTP response headers after 31.1958ms - 404 +2024-05-17 22:26:49.461 +02:00 [INF] End processing HTTP request after 32.3954ms - 404 +2024-05-17 22:26:49.461 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:49.461 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:49.462 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:49.462 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:49.495 +02:00 [INF] Received HTTP response headers after 32.7126ms - 404 +2024-05-17 22:26:49.495 +02:00 [INF] End processing HTTP request after 33.4918ms - 404 +2024-05-17 22:26:49.496 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:49.497 +02:00 [ERR] There was an error when processing a message with id: '4e10d7dda377472ba301f7815eff2d6a'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:49.499 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:49.500 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '4e10d7dda377472ba301f7815eff2d6a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 22:26:51.500 +02:00 [INF] Handling a message: friend_request_created with ID: 4e10d7dda377472ba301f7815eff2d6a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 22:26:51.528 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.529 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:51.529 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.529 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.560 +02:00 [INF] Received HTTP response headers after 30.4585ms - 404 +2024-05-17 22:26:51.561 +02:00 [INF] End processing HTTP request after 32.4475ms - 404 +2024-05-17 22:26:51.562 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:51.562 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:51.563 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.563 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.595 +02:00 [INF] Received HTTP response headers after 31.3969ms - 404 +2024-05-17 22:26:51.595 +02:00 [INF] End processing HTTP request after 32.4058ms - 404 +2024-05-17 22:26:51.595 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:51.596 +02:00 [ERR] There was an error when processing a message with id: '4e10d7dda377472ba301f7815eff2d6a'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:51.598 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:51.601 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '4e10d7dda377472ba301f7815eff2d6a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 22:26:51.601 +02:00 [ERR] Handling a message: friend_request_created with ID: 4e10d7dda377472ba301f7815eff2d6a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 22:26:51.603 +02:00 [INF] Received a message with ID: '406919de906547f597ab326a5990f65e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:51.604 +02:00 [INF] Handling a message: friend_request_created with ID: 406919de906547f597ab326a5990f65e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:26:51.632 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.633 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:51.633 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.633 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.662 +02:00 [INF] Received HTTP response headers after 28.8174ms - 404 +2024-05-17 22:26:51.662 +02:00 [INF] End processing HTTP request after 29.1663ms - 404 +2024-05-17 22:26:51.662 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:51.662 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:51.662 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.662 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:51.705 +02:00 [INF] Received HTTP response headers after 42.5038ms - 404 +2024-05-17 22:26:51.706 +02:00 [INF] End processing HTTP request after 43.8164ms - 404 +2024-05-17 22:26:51.706 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:51.707 +02:00 [ERR] There was an error when processing a message with id: '406919de906547f597ab326a5990f65e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:51.709 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:51.710 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '406919de906547f597ab326a5990f65e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 22:26:53.712 +02:00 [INF] Handling a message: friend_request_created with ID: 406919de906547f597ab326a5990f65e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 22:26:53.741 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:53.741 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:53.742 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:53.742 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:53.776 +02:00 [INF] Received HTTP response headers after 33.4721ms - 404 +2024-05-17 22:26:53.777 +02:00 [INF] End processing HTTP request after 35.166ms - 404 +2024-05-17 22:26:53.777 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:53.778 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:53.778 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:53.778 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:53.810 +02:00 [INF] Received HTTP response headers after 31.8421ms - 404 +2024-05-17 22:26:53.811 +02:00 [INF] End processing HTTP request after 33.0125ms - 404 +2024-05-17 22:26:53.811 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:53.812 +02:00 [ERR] There was an error when processing a message with id: '406919de906547f597ab326a5990f65e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:53.814 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:53.815 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '406919de906547f597ab326a5990f65e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 22:26:55.816 +02:00 [INF] Handling a message: friend_request_created with ID: 406919de906547f597ab326a5990f65e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 22:26:55.857 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:55.857 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:55.858 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:55.858 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:55.898 +02:00 [INF] Received HTTP response headers after 40.3223ms - 404 +2024-05-17 22:26:55.898 +02:00 [INF] End processing HTTP request after 40.5838ms - 404 +2024-05-17 22:26:55.898 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:55.898 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:55.898 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:55.898 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:55.961 +02:00 [INF] Received HTTP response headers after 62.7258ms - 404 +2024-05-17 22:26:55.961 +02:00 [INF] End processing HTTP request after 63.0289ms - 404 +2024-05-17 22:26:55.962 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:55.962 +02:00 [ERR] There was an error when processing a message with id: '406919de906547f597ab326a5990f65e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:55.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:55.963 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '406919de906547f597ab326a5990f65e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 22:26:57.964 +02:00 [INF] Handling a message: friend_request_created with ID: 406919de906547f597ab326a5990f65e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 22:26:57.992 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:57.993 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:57.993 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:57.993 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.025 +02:00 [INF] Received HTTP response headers after 31.7689ms - 404 +2024-05-17 22:26:58.026 +02:00 [INF] End processing HTTP request after 32.6667ms - 404 +2024-05-17 22:26:58.026 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:58.027 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:58.027 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.027 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.062 +02:00 [INF] Received HTTP response headers after 33.9521ms - 404 +2024-05-17 22:26:58.062 +02:00 [INF] End processing HTTP request after 34.8931ms - 404 +2024-05-17 22:26:58.062 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:58.063 +02:00 [ERR] There was an error when processing a message with id: '406919de906547f597ab326a5990f65e'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:58.065 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:58.066 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '406919de906547f597ab326a5990f65e', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 22:26:58.066 +02:00 [ERR] Handling a message: friend_request_created with ID: 406919de906547f597ab326a5990f65e, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 22:26:58.070 +02:00 [INF] Received a message with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:26:58.071 +02:00 [INF] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:26:58.099 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.100 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:58.100 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.101 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.132 +02:00 [INF] Received HTTP response headers after 31.532ms - 404 +2024-05-17 22:26:58.132 +02:00 [INF] End processing HTTP request after 32.1428ms - 404 +2024-05-17 22:26:58.133 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:58.133 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:26:58.133 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.133 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:26:58.162 +02:00 [INF] Received HTTP response headers after 29.1201ms - 404 +2024-05-17 22:26:58.163 +02:00 [INF] End processing HTTP request after 30.0045ms - 404 +2024-05-17 22:26:58.163 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:26:58.164 +02:00 [ERR] There was an error when processing a message with id: '38af5cfed5ea43fa90630ff2efea4025'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:26:58.165 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:26:58.167 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 1/3... +2024-05-17 22:27:00.169 +02:00 [INF] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 1 +2024-05-17 22:27:00.198 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:27:00.198 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:27:00.198 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:27:00.198 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:27:00.229 +02:00 [INF] Received HTTP response headers after 29.9129ms - 404 +2024-05-17 22:27:00.229 +02:00 [INF] End processing HTTP request after 30.8848ms - 404 +2024-05-17 22:27:00.229 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:27:00.230 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:27:00.230 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:27:00.230 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:27:00.269 +02:00 [INF] Received HTTP response headers after 38.3234ms - 404 +2024-05-17 22:27:00.269 +02:00 [INF] End processing HTTP request after 39.4989ms - 404 +2024-05-17 22:27:00.271 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:27:00.272 +02:00 [ERR] There was an error when processing a message with id: '38af5cfed5ea43fa90630ff2efea4025'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-17 22:27:00.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendRequestCreatedHandler.HandleAsync(FriendRequestCreated friendEvent, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendRequestCreatedHandler.cs:line 39 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:27:00.275 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 2/3... +2024-05-17 22:27:00.516 +02:00 [INF] Deregistering a service [id: notifications-service:d74b40af9f4c4e43a9afea0564059406] from Consul... +2024-05-17 22:27:00.525 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d74b40af9f4c4e43a9afea0564059406" +2024-05-17 22:27:00.525 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d74b40af9f4c4e43a9afea0564059406 +2024-05-17 22:27:00.526 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d74b40af9f4c4e43a9afea0564059406 +2024-05-17 22:27:00.529 +02:00 [INF] Received HTTP response headers after 2.7054ms - 200 +2024-05-17 22:27:00.529 +02:00 [INF] End processing HTTP request after 3.5851ms - 200 +2024-05-17 22:27:00.529 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:27:00.530 +02:00 [INF] Deregistered a service [id: notifications-service:d74b40af9f4c4e43a9afea0564059406] from Consul. +2024-05-17 22:27:02.277 +02:00 [INF] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 2 +2024-05-17 22:27:02.278 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:27:02.281 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 3/3... +2024-05-17 22:27:04.282 +02:00 [INF] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 3 +2024-05-17 22:27:04.283 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:27:04.284 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', retry 4/3... +2024-05-17 22:27:04.284 +02:00 [ERR] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9 failed +2024-05-17 22:29:11.231 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 22:29:11.273 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 22:29:11.352 +02:00 [INF] Registering a service [id: notifications-service:0e1626eb205042aeb8e89e2155a9666f] in Consul... +2024-05-17 22:29:11.368 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 22:29:11.372 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:29:11.372 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 22:29:11.379 +02:00 [INF] Received HTTP response headers after 4.4319ms - 200 +2024-05-17 22:29:11.380 +02:00 [INF] End processing HTTP request after 8.9259ms - 200 +2024-05-17 22:29:11.382 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:29:11.383 +02:00 [INF] Registered a service [id: notifications-service:0e1626eb205042aeb8e89e2155a9666f] in Consul. +2024-05-17 22:29:11.389 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 22:29:11.397 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 22:29:11.400 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 22:29:11.402 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_created' with routing key: 'friend_request_created' for an exchange: 'notifications'. +2024-05-17 22:29:11.406 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 22:29:11.408 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 22:29:11.411 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 22:29:11.412 +02:00 [INF] Received a message with ID: '38af5cfed5ea43fa90630ff2efea4025', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:11.413 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 22:29:11.414 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-17 22:29:11.430 +02:00 [INF] Handling a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:11.540 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.548 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.548 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.549 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.590 +02:00 [INF] Received HTTP response headers after 41.473ms - 404 +2024-05-17 22:29:11.591 +02:00 [INF] End processing HTTP request after 42.1754ms - 404 +2024-05-17 22:29:11.591 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.593 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.593 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.593 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.623 +02:00 [INF] Received HTTP response headers after 29.525ms - 404 +2024-05-17 22:29:11.624 +02:00 [INF] End processing HTTP request after 30.9689ms - 404 +2024-05-17 22:29:11.625 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.626 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.730 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:11.732 +02:00 [INF] Handled a message: friend_request_created with ID: 38af5cfed5ea43fa90630ff2efea4025, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:11.735 +02:00 [INF] Received a message with ID: '86a3a6782d8b480ba287dd9acd1e6f4f', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:11.736 +02:00 [INF] Handling a message: friend_request_created with ID: 86a3a6782d8b480ba287dd9acd1e6f4f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:11.765 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.766 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.766 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.767 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.800 +02:00 [INF] Received HTTP response headers after 31.6033ms - 404 +2024-05-17 22:29:11.801 +02:00 [INF] End processing HTTP request after 35.129ms - 404 +2024-05-17 22:29:11.802 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.803 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.804 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.804 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.835 +02:00 [INF] Received HTTP response headers after 30.0096ms - 404 +2024-05-17 22:29:11.836 +02:00 [INF] End processing HTTP request after 31.7808ms - 404 +2024-05-17 22:29:11.836 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.837 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.881 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:11.882 +02:00 [INF] Handled a message: friend_request_created with ID: 86a3a6782d8b480ba287dd9acd1e6f4f, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:11.883 +02:00 [INF] Received a message with ID: 'bfbb6cd9454747659bee4a81f1504ff7', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964907, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:11.885 +02:00 [INF] Handling a message: friend_request_created with ID: bfbb6cd9454747659bee4a81f1504ff7, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:11.917 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.918 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.918 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.918 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.949 +02:00 [INF] Received HTTP response headers after 29.9355ms - 404 +2024-05-17 22:29:11.949 +02:00 [INF] End processing HTTP request after 30.9996ms - 404 +2024-05-17 22:29:11.949 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.949 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:11.949 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.950 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:11.979 +02:00 [INF] Received HTTP response headers after 29.4826ms - 404 +2024-05-17 22:29:11.980 +02:00 [INF] End processing HTTP request after 30.15ms - 404 +2024-05-17 22:29:11.980 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:11.980 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.009 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.010 +02:00 [INF] Handled a message: friend_request_created with ID: bfbb6cd9454747659bee4a81f1504ff7, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.010 +02:00 [INF] Received a message with ID: '0fef67729369494c92d5d96fa2078745', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964908, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.011 +02:00 [INF] Handling a message: friend_request_created with ID: 0fef67729369494c92d5d96fa2078745, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.042 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.042 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.042 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.042 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.081 +02:00 [INF] Received HTTP response headers after 38.6366ms - 404 +2024-05-17 22:29:12.082 +02:00 [INF] End processing HTTP request after 39.9034ms - 404 +2024-05-17 22:29:12.083 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.083 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.084 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.084 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.114 +02:00 [INF] Received HTTP response headers after 29.2302ms - 404 +2024-05-17 22:29:12.114 +02:00 [INF] End processing HTTP request after 30.4154ms - 404 +2024-05-17 22:29:12.115 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.115 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.147 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.148 +02:00 [INF] Handled a message: friend_request_created with ID: 0fef67729369494c92d5d96fa2078745, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.148 +02:00 [INF] Received a message with ID: '0365085da3a144dd87d5b37ab63fdb5c', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964908, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.149 +02:00 [INF] Handling a message: friend_request_created with ID: 0365085da3a144dd87d5b37ab63fdb5c, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.178 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.179 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.179 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.179 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.207 +02:00 [INF] Received HTTP response headers after 27.9709ms - 404 +2024-05-17 22:29:12.207 +02:00 [INF] End processing HTTP request after 28.4875ms - 404 +2024-05-17 22:29:12.207 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.208 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.208 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.208 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.255 +02:00 [INF] Received HTTP response headers after 46.4414ms - 404 +2024-05-17 22:29:12.255 +02:00 [INF] End processing HTTP request after 47.3458ms - 404 +2024-05-17 22:29:12.256 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.256 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.288 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.289 +02:00 [INF] Handled a message: friend_request_created with ID: 0365085da3a144dd87d5b37ab63fdb5c, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.289 +02:00 [INF] Received a message with ID: 'c25e37a5f8bc424da93ca56003b38914', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964908, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.290 +02:00 [INF] Handling a message: friend_request_created with ID: c25e37a5f8bc424da93ca56003b38914, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.326 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.327 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.327 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.327 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.361 +02:00 [INF] Received HTTP response headers after 33.4945ms - 404 +2024-05-17 22:29:12.361 +02:00 [INF] End processing HTTP request after 34.0839ms - 404 +2024-05-17 22:29:12.361 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.361 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.361 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.362 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.402 +02:00 [INF] Received HTTP response headers after 40.221ms - 404 +2024-05-17 22:29:12.402 +02:00 [INF] End processing HTTP request after 40.8554ms - 404 +2024-05-17 22:29:12.402 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.403 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.435 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.435 +02:00 [INF] Handled a message: friend_request_created with ID: c25e37a5f8bc424da93ca56003b38914, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.436 +02:00 [INF] Received a message with ID: 'aa74a5bec2d045eb90afe368d46bae28', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715964908, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.436 +02:00 [INF] Handling a message: friend_request_created with ID: aa74a5bec2d045eb90afe368d46bae28, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.483 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.483 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.484 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.484 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.517 +02:00 [INF] Received HTTP response headers after 31.778ms - 404 +2024-05-17 22:29:12.517 +02:00 [INF] End processing HTTP request after 33.5394ms - 404 +2024-05-17 22:29:12.518 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.518 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.519 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.519 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.550 +02:00 [INF] Received HTTP response headers after 31.2671ms - 404 +2024-05-17 22:29:12.551 +02:00 [INF] End processing HTTP request after 32.0724ms - 404 +2024-05-17 22:29:12.551 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.551 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.655 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.655 +02:00 [INF] Handled a message: friend_request_created with ID: aa74a5bec2d045eb90afe368d46bae28, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.656 +02:00 [INF] Received a message with ID: '1a9119e9c25943d2a415ba131d9d26d1', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.657 +02:00 [INF] Handling a message: friend_request_created with ID: 1a9119e9c25943d2a415ba131d9d26d1, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.697 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.697 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.697 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.698 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.743 +02:00 [INF] Received HTTP response headers after 45.2669ms - 404 +2024-05-17 22:29:12.743 +02:00 [INF] End processing HTTP request after 45.9211ms - 404 +2024-05-17 22:29:12.744 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.744 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.744 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.744 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.787 +02:00 [INF] Received HTTP response headers after 42.6151ms - 404 +2024-05-17 22:29:12.787 +02:00 [INF] End processing HTTP request after 43.4116ms - 404 +2024-05-17 22:29:12.788 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.788 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.843 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:12.843 +02:00 [INF] Handled a message: friend_request_created with ID: 1a9119e9c25943d2a415ba131d9d26d1, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.846 +02:00 [INF] Received a message with ID: '8f92e1e1e5694572b7bd58914be115ba', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:12.847 +02:00 [INF] Handling a message: friend_request_created with ID: 8f92e1e1e5694572b7bd58914be115ba, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:12.883 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.884 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.884 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.885 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.924 +02:00 [INF] Received HTTP response headers after 39.2959ms - 404 +2024-05-17 22:29:12.925 +02:00 [INF] End processing HTTP request after 40.2207ms - 404 +2024-05-17 22:29:12.925 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.925 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:12.926 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.926 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:12.962 +02:00 [INF] Received HTTP response headers after 35.6229ms - 404 +2024-05-17 22:29:12.962 +02:00 [INF] End processing HTTP request after 36.5184ms - 404 +2024-05-17 22:29:12.962 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:12.963 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.004 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.004 +02:00 [INF] Handled a message: friend_request_created with ID: 8f92e1e1e5694572b7bd58914be115ba, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.005 +02:00 [INF] Received a message with ID: 'aa7c316583a749278fcb03f02a493288', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.005 +02:00 [INF] Handling a message: friend_request_created with ID: aa7c316583a749278fcb03f02a493288, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.032 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.033 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.033 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.033 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.061 +02:00 [INF] Received HTTP response headers after 27.7664ms - 404 +2024-05-17 22:29:13.061 +02:00 [INF] End processing HTTP request after 28.3654ms - 404 +2024-05-17 22:29:13.061 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.061 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.062 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.062 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.092 +02:00 [INF] Received HTTP response headers after 30.431ms - 404 +2024-05-17 22:29:13.093 +02:00 [INF] End processing HTTP request after 30.9886ms - 404 +2024-05-17 22:29:13.093 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.093 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.123 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.124 +02:00 [INF] Handled a message: friend_request_created with ID: aa7c316583a749278fcb03f02a493288, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.124 +02:00 [INF] Received a message with ID: 'c1b108d51a72448d93d8f73b3f44506a', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.124 +02:00 [INF] Handling a message: friend_request_created with ID: c1b108d51a72448d93d8f73b3f44506a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.152 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.153 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.153 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.153 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.185 +02:00 [INF] Received HTTP response headers after 31.6934ms - 404 +2024-05-17 22:29:13.186 +02:00 [INF] End processing HTTP request after 33.1794ms - 404 +2024-05-17 22:29:13.187 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.188 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.188 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.189 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.221 +02:00 [INF] Received HTTP response headers after 32.0454ms - 404 +2024-05-17 22:29:13.223 +02:00 [INF] End processing HTTP request after 34.5178ms - 404 +2024-05-17 22:29:13.223 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.223 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.257 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.257 +02:00 [INF] Handled a message: friend_request_created with ID: c1b108d51a72448d93d8f73b3f44506a, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.259 +02:00 [INF] Received a message with ID: 'cc2c1d4ff6f34883a0acea1d88b033ee', Correlation ID: '8b9ffd31cfc44d2fa2d2488d73c695b9', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.260 +02:00 [INF] Handling a message: friend_request_created with ID: cc2c1d4ff6f34883a0acea1d88b033ee, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.298 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.299 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.299 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.299 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.334 +02:00 [INF] Received HTTP response headers after 34.2104ms - 404 +2024-05-17 22:29:13.335 +02:00 [INF] End processing HTTP request after 34.9875ms - 404 +2024-05-17 22:29:13.335 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.335 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.335 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.335 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.374 +02:00 [INF] Received HTTP response headers after 38.993ms - 404 +2024-05-17 22:29:13.375 +02:00 [INF] End processing HTTP request after 39.8144ms - 404 +2024-05-17 22:29:13.375 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.376 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.422 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.422 +02:00 [INF] Handled a message: friend_request_created with ID: cc2c1d4ff6f34883a0acea1d88b033ee, Correlation ID: 8b9ffd31cfc44d2fa2d2488d73c695b9, retry: 0 +2024-05-17 22:29:13.424 +02:00 [INF] Received a message with ID: '1b69e3657a5a426f88331b463e91ed70', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.425 +02:00 [INF] Handling a message: friend_request_created with ID: 1b69e3657a5a426f88331b463e91ed70, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 22:29:13.461 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.462 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.462 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.462 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.502 +02:00 [INF] Received HTTP response headers after 39.6945ms - 404 +2024-05-17 22:29:13.503 +02:00 [INF] End processing HTTP request after 41.074ms - 404 +2024-05-17 22:29:13.504 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.504 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.505 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.506 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.536 +02:00 [INF] Received HTTP response headers after 29.3378ms - 404 +2024-05-17 22:29:13.537 +02:00 [INF] End processing HTTP request after 32.5027ms - 404 +2024-05-17 22:29:13.538 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.538 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.574 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.575 +02:00 [INF] Handled a message: friend_request_created with ID: 1b69e3657a5a426f88331b463e91ed70, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 22:29:13.583 +02:00 [INF] Received a message with ID: '6bbb8547483e40cd85f0e6e98318bd93', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715965475, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.584 +02:00 [INF] Handling a message: friend_request_created with ID: 6bbb8547483e40cd85f0e6e98318bd93, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 22:29:13.613 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.613 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.614 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.614 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.646 +02:00 [INF] Received HTTP response headers after 32.1777ms - 404 +2024-05-17 22:29:13.647 +02:00 [INF] End processing HTTP request after 33.4288ms - 404 +2024-05-17 22:29:13.648 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.648 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.649 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.649 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.684 +02:00 [INF] Received HTTP response headers after 34.3515ms - 404 +2024-05-17 22:29:13.685 +02:00 [INF] End processing HTTP request after 36.1072ms - 404 +2024-05-17 22:29:13.685 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.686 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.720 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.720 +02:00 [INF] Handled a message: friend_request_created with ID: 6bbb8547483e40cd85f0e6e98318bd93, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 22:29:13.721 +02:00 [INF] Received a message with ID: '55c5283cdb4440e68e89f028030af43c', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', timestamp: 1715965543, queue: notifications-service/notifications.friend_request_created, routing key: friend_request_created, exchange: notifications, payload: +2024-05-17 22:29:13.721 +02:00 [INF] Handling a message: friend_request_created with ID: 55c5283cdb4440e68e89f028030af43c, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 0 +2024-05-17 22:29:13.756 +02:00 [INF] Received FriendRequestCreated event: RequesterId=00000000-0000-0000-0000-000000000000, FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.757 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.757 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.758 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.805 +02:00 [INF] Deregistering a service [id: notifications-service:0e1626eb205042aeb8e89e2155a9666f] from Consul... +2024-05-17 22:29:13.807 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0e1626eb205042aeb8e89e2155a9666f" +2024-05-17 22:29:13.807 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0e1626eb205042aeb8e89e2155a9666f +2024-05-17 22:29:13.807 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0e1626eb205042aeb8e89e2155a9666f +2024-05-17 22:29:13.809 +02:00 [INF] Received HTTP response headers after 1.5593ms - 200 +2024-05-17 22:29:13.809 +02:00 [INF] End processing HTTP request after 2.2046ms - 200 +2024-05-17 22:29:13.810 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 22:29:13.810 +02:00 [INF] Deregistered a service [id: notifications-service:0e1626eb205042aeb8e89e2155a9666f] from Consul. +2024-05-17 22:29:13.838 +02:00 [INF] Received HTTP response headers after 79.7301ms - 404 +2024-05-17 22:29:13.838 +02:00 [INF] End processing HTTP request after 81.2824ms - 404 +2024-05-17 22:29:13.838 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.839 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/00000000-0000-0000-0000-000000000000" +2024-05-17 22:29:13.839 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.839 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.870 +02:00 [INF] Received HTTP response headers after 30.868ms - 404 +2024-05-17 22:29:13.870 +02:00 [INF] End processing HTTP request after 31.5873ms - 404 +2024-05-17 22:29:13.871 +02:00 [INF] End processing HTTP request - "NotFound" +2024-05-17 22:29:13.871 +02:00 [ERR] Failed to fetch student data for RequesterId=00000000-0000-0000-0000-000000000000 or FriendId=00000000-0000-0000-0000-000000000000 +2024-05-17 22:29:13.923 +02:00 [INF] Processed creation of friend request from 00000000-0000-0000-0000-000000000000 to 00000000-0000-0000-0000-000000000000. +2024-05-17 22:29:13.924 +02:00 [ERR] Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'RabbitMQ.Client.Impl.AutorecoveringModel'. + at RabbitMQ.Client.Impl.AutorecoveringModel.BasicAck(UInt64 deliveryTag, Boolean multiple) + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:29:13.934 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '55c5283cdb4440e68e89f028030af43c', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 1/3... +2024-05-17 22:29:15.936 +02:00 [INF] Handling a message: friend_request_created with ID: 55c5283cdb4440e68e89f028030af43c, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 1 +2024-05-17 22:29:15.938 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:29:15.940 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '55c5283cdb4440e68e89f028030af43c', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 2/3... +2024-05-17 22:29:17.940 +02:00 [INF] Handling a message: friend_request_created with ID: 55c5283cdb4440e68e89f028030af43c, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 2 +2024-05-17 22:29:17.942 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:29:17.943 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '55c5283cdb4440e68e89f028030af43c', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 3/3... +2024-05-17 22:29:19.944 +02:00 [INF] Handling a message: friend_request_created with ID: 55c5283cdb4440e68e89f028030af43c, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365, retry: 3 +2024-05-17 22:29:19.945 +02:00 [ERR] Cannot access a disposed object. +Object name: 'IServiceProvider'. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'IServiceProvider'. + at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(IServiceProvider provider) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-17 22:29:19.945 +02:00 [ERR] Unable to handle a message: 'friend_request_created' with ID: '55c5283cdb4440e68e89f028030af43c', Correlation ID: 'debbc5dbe9a14dbfb2aea39565b3a365', retry 4/3... +2024-05-17 22:29:19.945 +02:00 [ERR] Handling a message: friend_request_created with ID: 55c5283cdb4440e68e89f028030af43c, Correlation ID: debbc5dbe9a14dbfb2aea39565b3a365 failed +2024-05-17 23:34:44.529 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-17 23:34:44.568 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-17 23:34:44.659 +02:00 [INF] Registering a service [id: notifications-service:4d208cc8ce184df184aeee83830dc7cf] in Consul... +2024-05-17 23:34:44.675 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-17 23:34:44.678 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 23:34:44.678 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-17 23:34:44.685 +02:00 [INF] Received HTTP response headers after 4.0271ms - 200 +2024-05-17 23:34:44.686 +02:00 [INF] End processing HTTP request after 8.5021ms - 200 +2024-05-17 23:34:44.688 +02:00 [INF] End processing HTTP request - "OK" +2024-05-17 23:34:44.689 +02:00 [INF] Registered a service [id: notifications-service:4d208cc8ce184df184aeee83830dc7cf] in Consul. +2024-05-17 23:34:44.694 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-17 23:34:44.703 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-17 23:34:44.705 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-17 23:34:44.707 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-17 23:34:44.709 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-17 23:34:44.712 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-17 23:34:44.714 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-17 23:34:44.716 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240518.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240518.txt new file mode 100644 index 000000000..0a69fc4ca --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240518.txt @@ -0,0 +1,15158 @@ +2024-05-18 00:39:38.625 +02:00 [INF] Deregistering a service [id: notifications-service:4d208cc8ce184df184aeee83830dc7cf] from Consul... +2024-05-18 00:39:38.634 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4d208cc8ce184df184aeee83830dc7cf" +2024-05-18 00:39:38.635 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4d208cc8ce184df184aeee83830dc7cf +2024-05-18 00:39:38.635 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4d208cc8ce184df184aeee83830dc7cf +2024-05-18 00:39:38.640 +02:00 [INF] Received HTTP response headers after 4.4429ms - 200 +2024-05-18 00:39:38.640 +02:00 [INF] End processing HTTP request after 5.5843ms - 200 +2024-05-18 00:39:38.640 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 00:39:38.641 +02:00 [INF] Deregistered a service [id: notifications-service:4d208cc8ce184df184aeee83830dc7cf] from Consul. +2024-05-18 00:49:12.491 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-18 00:49:12.532 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-18 00:49:12.594 +02:00 [INF] Registering a service [id: notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8] in Consul... +2024-05-18 00:49:12.620 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-18 00:49:12.626 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 00:49:12.627 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 00:49:12.634 +02:00 [INF] Received HTTP response headers after 4.7651ms - 200 +2024-05-18 00:49:12.635 +02:00 [INF] End processing HTTP request after 9.8321ms - 200 +2024-05-18 00:49:12.638 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 00:49:12.638 +02:00 [INF] Registered a service [id: notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8] in Consul. +2024-05-18 00:49:12.647 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-18 00:49:12.657 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-18 00:49:12.659 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-18 00:49:12.661 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-18 00:49:12.664 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-18 00:49:12.666 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-18 00:49:12.669 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-18 00:49:12.671 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-18 00:51:18.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - application/json 165 +2024-05-18 00:51:18.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 00:51:19.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 00:51:19.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 141.2199ms +2024-05-18 01:21:47.320 +02:00 [INF] Deregistering a service [id: notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8] from Consul... +2024-05-18 01:21:47.321 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8" +2024-05-18 01:21:47.322 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8 +2024-05-18 01:21:47.322 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8 +2024-05-18 01:21:47.327 +02:00 [INF] Received HTTP response headers after 5.024ms - 200 +2024-05-18 01:21:47.328 +02:00 [INF] End processing HTTP request after 5.942ms - 200 +2024-05-18 01:21:47.328 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:21:47.328 +02:00 [INF] Deregistered a service [id: notifications-service:62c4e1bde4fa46f2a966055e2c55e2f8] from Consul. +2024-05-18 01:21:56.358 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-18 01:21:56.394 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-18 01:21:56.434 +02:00 [INF] Registering a service [id: notifications-service:96eb404493bc4c77b5fb397b88e91564] in Consul... +2024-05-18 01:21:56.450 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-18 01:21:56.453 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 01:21:56.453 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 01:21:56.461 +02:00 [INF] Received HTTP response headers after 4.7064ms - 200 +2024-05-18 01:21:56.462 +02:00 [INF] End processing HTTP request after 10.307ms - 200 +2024-05-18 01:21:56.466 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:21:56.467 +02:00 [INF] Registered a service [id: notifications-service:96eb404493bc4c77b5fb397b88e91564] in Consul. +2024-05-18 01:21:56.475 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-18 01:21:56.488 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-18 01:21:56.491 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-18 01:21:56.494 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-18 01:21:56.497 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-18 01:21:56.501 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-18 01:21:56.503 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-18 01:21:56.507 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-18 01:26:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/user-id - null null +2024-05-18 01:26:51.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:26:51.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:26:51.324 +02:00 [ERR] The JSON value could not be converted to MiniSpace.Services.Notifications.Application.Queries.GetNotificationsByUser. Path: $.userId | LineNumber: 0 | BytePositionInLine: 19. +System.Text.Json.JsonException: The JSON value could not be converted to MiniSpace.Services.Notifications.Application.Queries.GetNotificationsByUser. Path: $.userId | LineNumber: 0 | BytePositionInLine: 19. + ---> System.FormatException: The JSON value is not in a supported Guid format. + at System.Text.Json.ThrowHelper.ThrowFormatException(DataType dataType) + at System.Text.Json.Utf8JsonReader.GetGuid() + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + at System.Text.Json.Serialization.Converters.SmallObjectWithParameterizedConstructorConverter`5.TryRead[TArg](ReadStack& state, Utf8JsonReader& reader, JsonParameterInfo jsonParameterInfo, TArg& arg) + at System.Text.Json.Serialization.Converters.SmallObjectWithParameterizedConstructorConverter`5.ReadAndCacheConstructorArgument(ReadStack& state, Utf8JsonReader& reader, JsonParameterInfo jsonParameterInfo) + at System.Text.Json.Serialization.Converters.ObjectWithParameterizedConstructorConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value) + at System.Text.Json.Serialization.JsonConverter`1.TryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value, Boolean& isPopulatedValue) + 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, Utf8JsonReader& reader, Exception ex) + at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) + at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 utf8Json, JsonTypeInfo`1 jsonTypeInfo, Nullable`1 actualByteCount) + at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 json, JsonTypeInfo`1 jsonTypeInfo) + at Open.Serialization.Json.System.JsonSerializerInternal.Deserialize[T](String value) + at Convey.WebApi.Extensions.ReadQuery[T](HttpContext context) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:26:51.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/user-id - 400 null application/json 77.5426ms +2024-05-18 01:33:30.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:33:30.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:33:30.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:33:30.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 200 null application/json 84.3857ms +2024-05-18 01:33:52.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:33:52.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:33:52.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:33:52.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 200 null application/json 36.0858ms +2024-05-18 01:39:31.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:39:31.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:39:31.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:39:31.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 200 null application/json 33.972ms +2024-05-18 01:39:59.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:39:59.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:39:59.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:39:59.897 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:39:59.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.7232ms +2024-05-18 01:48:10.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:10.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:10.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:10.628 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:10.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 39.7974ms +2024-05-18 01:48:11.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:11.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:11.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:11.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:11.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.3441ms +2024-05-18 01:48:25.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:25.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:25.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:25.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:25.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 40.4982ms +2024-05-18 01:48:40.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:40.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:40.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:40.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:40.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:40.673 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:40.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.2001ms +2024-05-18 01:48:40.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:40.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:40.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:40.712 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:40.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.5397ms +2024-05-18 01:48:41.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:41.211 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:41.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 557.9416ms +2024-05-18 01:48:55.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:55.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:55.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:55.678 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:55.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.6406ms +2024-05-18 01:48:55.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:48:55.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:55.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:48:55.716 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:48:55.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7394ms +2024-05-18 01:49:10.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:10.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:10.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:10.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:10.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:10.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:10.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 41.5794ms +2024-05-18 01:49:10.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:10.719 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:10.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 39.2146ms +2024-05-18 01:49:25.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:25.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:25.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:25.679 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:25.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.5259ms +2024-05-18 01:49:25.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:25.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:25.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:25.717 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:25.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3538ms +2024-05-18 01:49:40.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:40.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:40.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:40.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:40.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.9107ms +2024-05-18 01:49:40.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:40.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:40.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:40.708 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:40.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4352ms +2024-05-18 01:49:55.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:55.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:55.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:55.678 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:55.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0451ms +2024-05-18 01:49:55.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:49:55.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:55.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:49:55.711 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:49:55.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.0951ms +2024-05-18 01:50:10.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:10.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:10.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:10.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:10.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.2491ms +2024-05-18 01:50:10.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:10.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:10.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:10.749 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:10.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5799ms +2024-05-18 01:50:25.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:25.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:25.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:25.679 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:25.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 38.9502ms +2024-05-18 01:50:25.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:25.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:25.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:25.720 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:25.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.9137ms +2024-05-18 01:50:40.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:40.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:40.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:40.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:40.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0332ms +2024-05-18 01:50:40.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:50:40.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:40.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:50:40.718 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:50:40.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.1548ms +2024-05-18 01:51:07.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 01:51:07.756 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:07.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:07.784 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:07.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 31.6073ms +2024-05-18 01:51:07.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 01:51:07.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:07.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:07.818 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:07.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 28.675ms +2024-05-18 01:51:22.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 01:51:22.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:22.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:22.816 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:22.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 29.8696ms +2024-05-18 01:51:27.251 +02:00 [INF] Received a message with ID: '5b68848a775d4bc78c8d552e10819ad1', Correlation ID: 'b301f11912f0403e8ff9dcca36e86a2f', timestamp: 1715989887, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-18 01:51:27.251 +02:00 [INF] Received a message with ID: 'e2c291e804634828a3d21dd0181868b0', Correlation ID: 'd27fa27223fc4eaa8c1bc8a26b75082f', timestamp: 1715989887, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-18 01:51:27.265 +02:00 [INF] Handling a message: friend_request_sent with ID: e2c291e804634828a3d21dd0181868b0, Correlation ID: d27fa27223fc4eaa8c1bc8a26b75082f, retry: 0 +2024-05-18 01:51:27.265 +02:00 [INF] Handling a message: friend_invited with ID: 5b68848a775d4bc78c8d552e10819ad1, Correlation ID: b301f11912f0403e8ff9dcca36e86a2f, retry: 0 +2024-05-18 01:51:27.309 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/b202a5fe-afbd-4894-95e3-41aff99f430c" +2024-05-18 01:51:27.310 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/b202a5fe-afbd-4894-95e3-41aff99f430c +2024-05-18 01:51:27.310 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/b202a5fe-afbd-4894-95e3-41aff99f430c +2024-05-18 01:51:27.480 +02:00 [INF] Processed friend request sent from b202a5fe-afbd-4894-95e3-41aff99f430c to f971c185-4c39-4b2a-8368-3eb2f8145cc7. +2024-05-18 01:51:27.482 +02:00 [INF] Handled a message: friend_request_sent with ID: e2c291e804634828a3d21dd0181868b0, Correlation ID: d27fa27223fc4eaa8c1bc8a26b75082f, retry: 0 +2024-05-18 01:51:27.715 +02:00 [INF] Received HTTP response headers after 404.6618ms - 200 +2024-05-18 01:51:27.715 +02:00 [INF] End processing HTTP request after 405.0888ms - 200 +2024-05-18 01:51:27.715 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:51:27.890 +02:00 [INF] Handled invitation sent by b202a5fe-afbd-4894-95e3-41aff99f430c to f971c185-4c39-4b2a-8368-3eb2f8145cc7. +2024-05-18 01:51:27.890 +02:00 [INF] Handled a message: friend_invited with ID: 5b68848a775d4bc78c8d552e10819ad1, Correlation ID: b301f11912f0403e8ff9dcca36e86a2f, retry: 0 +2024-05-18 01:51:43.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:51:43.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:43.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:43.696 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:43.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2371ms +2024-05-18 01:51:43.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:51:43.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:43.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:43.738 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:43.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8967ms +2024-05-18 01:51:46.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:51:46.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:46.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:51:46.068 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:51:46.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.5436ms +2024-05-18 01:52:05.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:05.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:05.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:05.632 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:05.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.6222ms +2024-05-18 01:52:05.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:05.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:05.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:05.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:05.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.8989ms +2024-05-18 01:52:09.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:09.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:09.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:09.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:09.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8656ms +2024-05-18 01:52:09.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:09.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:09.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:09.602 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:09.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7942ms +2024-05-18 01:52:20.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:20.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:20.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:20.674 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:20.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.5456ms +2024-05-18 01:52:24.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:24.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:24.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:24.605 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:24.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.8473ms +2024-05-18 01:52:35.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:35.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:35.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:35.671 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:35.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.8513ms +2024-05-18 01:52:39.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:52:39.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:39.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:39.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:39.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.9963ms +2024-05-18 01:52:54.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - null null +2024-05-18 01:52:54.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:54.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:54.791 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:54.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - 400 null application/json 29.2315ms +2024-05-18 01:52:54.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - null null +2024-05-18 01:52:54.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:54.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:52:54.824 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:52:54.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - 400 null application/json 29.1507ms +2024-05-18 01:53:09.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - null null +2024-05-18 01:53:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:09.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:09.829 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:53:09.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - 400 null application/json 33.4135ms +2024-05-18 01:53:12.748 +02:00 [INF] Received a message with ID: 'ac366d097c0c44b2a0f1a83d3cbe4395', Correlation ID: '1fa7d39b585340188d80cdae75bde66a', timestamp: 1715989992, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-18 01:53:12.749 +02:00 [INF] Handling a message: friend_invited with ID: ac366d097c0c44b2a0f1a83d3cbe4395, Correlation ID: 1fa7d39b585340188d80cdae75bde66a, retry: 0 +2024-05-18 01:53:12.751 +02:00 [INF] Received a message with ID: '44d874833356429b9872417ba0990fdf', Correlation ID: '1616c22deaa6476f9f90d69bea17025b', timestamp: 1715989992, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-18 01:53:12.752 +02:00 [INF] Handling a message: friend_request_sent with ID: 44d874833356429b9872417ba0990fdf, Correlation ID: 1616c22deaa6476f9f90d69bea17025b, retry: 0 +2024-05-18 01:53:12.869 +02:00 [INF] Processed friend request sent from fd0176f4-736c-49cd-b57a-523d544ae3d3 to f971c185-4c39-4b2a-8368-3eb2f8145cc7. +2024-05-18 01:53:12.869 +02:00 [INF] Handled a message: friend_request_sent with ID: 44d874833356429b9872417ba0990fdf, Correlation ID: 1616c22deaa6476f9f90d69bea17025b, retry: 0 +2024-05-18 01:53:12.974 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/fd0176f4-736c-49cd-b57a-523d544ae3d3" +2024-05-18 01:53:12.975 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/fd0176f4-736c-49cd-b57a-523d544ae3d3 +2024-05-18 01:53:12.975 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/fd0176f4-736c-49cd-b57a-523d544ae3d3 +2024-05-18 01:53:13.004 +02:00 [INF] Received HTTP response headers after 29.1112ms - 200 +2024-05-18 01:53:13.004 +02:00 [INF] End processing HTTP request after 29.8415ms - 200 +2024-05-18 01:53:13.005 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:53:13.150 +02:00 [INF] Handled invitation sent by fd0176f4-736c-49cd-b57a-523d544ae3d3 to f971c185-4c39-4b2a-8368-3eb2f8145cc7. +2024-05-18 01:53:13.151 +02:00 [INF] Handled a message: friend_invited with ID: ac366d097c0c44b2a0f1a83d3cbe4395, Correlation ID: 1fa7d39b585340188d80cdae75bde66a, retry: 0 +2024-05-18 01:53:24.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - null null +2024-05-18 01:53:24.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:24.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:24.828 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:53:24.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/fd0176f4-736c-49cd-b57a-523d544ae3d3 - 400 null application/json 27.8245ms +2024-05-18 01:53:38.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:53:38.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:38.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:38.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:53:38.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.9754ms +2024-05-18 01:53:38.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:53:38.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:38.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:38.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:53:38.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8677ms +2024-05-18 01:53:40.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:53:40.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:40.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:53:40.820 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:53:40.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.4215ms +2024-05-18 01:54:26.255 +02:00 [INF] Deregistering a service [id: notifications-service:96eb404493bc4c77b5fb397b88e91564] from Consul... +2024-05-18 01:54:26.256 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:96eb404493bc4c77b5fb397b88e91564" +2024-05-18 01:54:26.256 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:96eb404493bc4c77b5fb397b88e91564 +2024-05-18 01:54:26.256 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:96eb404493bc4c77b5fb397b88e91564 +2024-05-18 01:54:26.258 +02:00 [INF] Received HTTP response headers after 1.6195ms - 200 +2024-05-18 01:54:26.258 +02:00 [INF] End processing HTTP request after 2.3781ms - 200 +2024-05-18 01:54:26.258 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:54:26.259 +02:00 [INF] Deregistered a service [id: notifications-service:96eb404493bc4c77b5fb397b88e91564] from Consul. +2024-05-18 01:54:32.572 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-18 01:54:32.614 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-18 01:54:32.670 +02:00 [INF] Registering a service [id: notifications-service:a212aabf6a224be58a63cc7ac7437e92] in Consul... +2024-05-18 01:54:32.690 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-18 01:54:32.694 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 01:54:32.695 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 01:54:32.703 +02:00 [INF] Received HTTP response headers after 4.6824ms - 200 +2024-05-18 01:54:32.704 +02:00 [INF] End processing HTTP request after 10.0933ms - 200 +2024-05-18 01:54:32.707 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:54:32.708 +02:00 [INF] Registered a service [id: notifications-service:a212aabf6a224be58a63cc7ac7437e92] in Consul. +2024-05-18 01:54:32.716 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-18 01:54:32.729 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-18 01:54:32.732 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-18 01:54:32.734 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-18 01:54:32.737 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-18 01:54:32.740 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-18 01:54:32.742 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-18 01:54:32.744 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-18 01:55:39.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:55:39.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:39.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:39.776 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:55:39.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 148.7844ms +2024-05-18 01:55:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:55:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:39.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:39.831 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:55:39.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.6069ms +2024-05-18 01:55:45.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:55:45.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:45.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:55:45.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:55:45.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.1581ms +2024-05-18 01:56:09.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:09.152 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:09.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:09.189 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:09.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 40.2103ms +2024-05-18 01:56:09.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:09.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:09.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:09.620 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:09.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.6052ms +2024-05-18 01:56:11.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:11.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:11.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:11.205 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:11.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.0167ms +2024-05-18 01:56:11.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:11.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:11.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:11.243 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:11.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.1306ms +2024-05-18 01:56:24.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:24.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:24.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:24.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:24.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5822ms +2024-05-18 01:56:26.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:26.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:26.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:26.247 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:26.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.783ms +2024-05-18 01:56:39.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:39.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:39.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:39.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:39.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.668ms +2024-05-18 01:56:41.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:41.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:41.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:41.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:41.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0374ms +2024-05-18 01:56:54.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:54.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:54.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:54.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:54.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.207ms +2024-05-18 01:56:56.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:56:56.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:56.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:56:56.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:56:56.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.9298ms +2024-05-18 01:57:09.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:09.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:09.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:09.232 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:09.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.8983ms +2024-05-18 01:57:11.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:11.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:11.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:11.243 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:11.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7339ms +2024-05-18 01:57:24.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:24.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:24.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:24.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:24.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5741ms +2024-05-18 01:57:26.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:26.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:26.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:26.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:26.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.5689ms +2024-05-18 01:57:39.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:39.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:39.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:39.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:39.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8911ms +2024-05-18 01:57:41.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:41.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:41.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:41.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:41.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9422ms +2024-05-18 01:57:54.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:54.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:54.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:54.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:54.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8654ms +2024-05-18 01:57:56.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:57:56.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:56.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:57:56.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:57:56.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.031ms +2024-05-18 01:58:09.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:09.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:09.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:09.233 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:09.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.6531ms +2024-05-18 01:58:11.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:11.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:11.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:11.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:11.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.6627ms +2024-05-18 01:58:24.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:24.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:24.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:24.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:24.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2597ms +2024-05-18 01:58:26.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:26.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:26.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:26.239 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:26.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0695ms +2024-05-18 01:58:39.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:39.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:39.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:39.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:39.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5549ms +2024-05-18 01:58:41.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:41.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:41.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:41.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:41.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.227ms +2024-05-18 01:58:54.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:54.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:54.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:54.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:54.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.6547ms +2024-05-18 01:58:56.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:58:56.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:56.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:56.239 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:58:56.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.1298ms +2024-05-18 01:58:57.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - application/json 165 +2024-05-18 01:58:57.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:57.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:58:57.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 49.8929ms +2024-05-18 01:59:09.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:09.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:09.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:09.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:09.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2441ms +2024-05-18 01:59:11.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:11.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:11.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:11.250 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:11.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 41.1357ms +2024-05-18 01:59:24.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:24.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:24.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:24.231 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:24.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.6631ms +2024-05-18 01:59:26.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:26.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:26.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:26.247 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:26.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 39.6658ms +2024-05-18 01:59:39.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:39.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:39.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:39.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:39.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5188ms +2024-05-18 01:59:41.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 01:59:41.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:41.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 01:59:41.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 01:59:41.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0119ms +2024-05-18 01:59:45.446 +02:00 [INF] Deregistering a service [id: notifications-service:a212aabf6a224be58a63cc7ac7437e92] from Consul... +2024-05-18 01:59:45.448 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a212aabf6a224be58a63cc7ac7437e92" +2024-05-18 01:59:45.448 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a212aabf6a224be58a63cc7ac7437e92 +2024-05-18 01:59:45.449 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a212aabf6a224be58a63cc7ac7437e92 +2024-05-18 01:59:45.453 +02:00 [INF] Received HTTP response headers after 4.0594ms - 200 +2024-05-18 01:59:45.453 +02:00 [INF] End processing HTTP request after 5.0692ms - 200 +2024-05-18 01:59:45.454 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 01:59:45.455 +02:00 [INF] Deregistered a service [id: notifications-service:a212aabf6a224be58a63cc7ac7437e92] from Consul. +2024-05-18 02:00:03.312 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-18 02:00:03.356 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-18 02:00:03.415 +02:00 [INF] Registering a service [id: notifications-service:910905e853674eeb86e61c6d25ac70e5] in Consul... +2024-05-18 02:00:03.433 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-18 02:00:03.436 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 02:00:03.437 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 02:00:03.444 +02:00 [INF] Received HTTP response headers after 4.6266ms - 200 +2024-05-18 02:00:03.445 +02:00 [INF] End processing HTTP request after 9.2767ms - 200 +2024-05-18 02:00:03.447 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 02:00:03.448 +02:00 [INF] Registered a service [id: notifications-service:910905e853674eeb86e61c6d25ac70e5] in Consul. +2024-05-18 02:00:03.454 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-18 02:00:03.464 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-18 02:00:03.466 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-18 02:00:03.468 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-18 02:00:03.470 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-18 02:00:03.472 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-18 02:00:03.475 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-18 02:00:03.479 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-18 02:00:04.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - application/json 165 +2024-05-18 02:00:04.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:04.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:04.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:04.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 208.617ms +2024-05-18 02:00:09.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:09.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:09.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:09.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:09.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.4153ms +2024-05-18 02:00:11.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:11.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:11.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:11.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:11.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 39.2674ms +2024-05-18 02:00:13.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - application/json 165 +2024-05-18 02:00:13.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:13.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:13.639 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:13.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.3ms +2024-05-18 02:00:23.146 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - application/json 165 +2024-05-18 02:00:23.146 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:23.176 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:23.176 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:23.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.2853ms +2024-05-18 02:00:24.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:24.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:24.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:24.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:24.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.2144ms +2024-05-18 02:00:26.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:26.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:26.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:26.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:26.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8354ms +2024-05-18 02:00:39.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:39.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:39.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:39.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:39.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9348ms +2024-05-18 02:00:41.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:41.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:41.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:41.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:41.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.0699ms +2024-05-18 02:00:43.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bfd279dc-6a89-43c0-ae0b-a75ad272563a - application/json 165 +2024-05-18 02:00:43.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:43.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:43.109 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:43.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bfd279dc-6a89-43c0-ae0b-a75ad272563a - 400 null application/json 33.1789ms +2024-05-18 02:00:54.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:54.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:54.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:54.231 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:54.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.4858ms +2024-05-18 02:00:56.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:00:56.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:56.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:56.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:00:56.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.857ms +2024-05-18 02:00:58.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/f971c185-4c39-4b2a-8368-3eb2f8145cc7 - application/json 165 +2024-05-18 02:00:58.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:58.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:00:58.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/f971c185-4c39-4b2a-8368-3eb2f8145cc7 - 200 null application/json 51.8858ms +2024-05-18 02:01:09.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:09.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:09.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:09.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:09.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.336ms +2024-05-18 02:01:11.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:11.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:11.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:11.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:11.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1055ms +2024-05-18 02:01:24.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:24.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:24.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:24.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:24.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.772ms +2024-05-18 02:01:26.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:26.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:26.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:26.240 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:26.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.4707ms +2024-05-18 02:01:39.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:39.201 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:39.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:39.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:39.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.1549ms +2024-05-18 02:01:41.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:41.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:41.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:41.260 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:41.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 52.5125ms +2024-05-18 02:01:54.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:54.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:54.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:54.227 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:54.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0527ms +2024-05-18 02:01:56.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:01:56.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:56.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:01:56.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:01:56.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3275ms +2024-05-18 02:02:09.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:09.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:09.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:09.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:09.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.2574ms +2024-05-18 02:02:11.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:11.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:11.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:11.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:11.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8918ms +2024-05-18 02:02:24.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:24.201 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:24.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:24.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:24.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.49ms +2024-05-18 02:02:26.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:26.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:26.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:26.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:26.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.3343ms +2024-05-18 02:02:39.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:39.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:39.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:39.222 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:39.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.4396ms +2024-05-18 02:02:41.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:41.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:41.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:41.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:41.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.6941ms +2024-05-18 02:02:54.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:54.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:54.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:54.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:54.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.6795ms +2024-05-18 02:02:56.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:02:56.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:56.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:02:56.243 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:02:56.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9696ms +2024-05-18 02:03:09.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:09.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:09.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:09.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:09.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9091ms +2024-05-18 02:03:11.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:11.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:11.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:11.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:11.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4127ms +2024-05-18 02:03:24.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:24.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:24.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:24.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:24.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1298ms +2024-05-18 02:03:26.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:26.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:26.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:26.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:26.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.8648ms +2024-05-18 02:03:39.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:39.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:39.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:39.224 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:39.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8144ms +2024-05-18 02:03:41.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:41.232 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:41.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:41.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:41.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.4376ms +2024-05-18 02:03:54.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:54.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:54.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:54.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:54.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.6754ms +2024-05-18 02:03:56.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:03:56.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:56.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:03:56.235 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:03:56.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9769ms +2024-05-18 02:04:09.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:09.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:09.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:09.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:09.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.8148ms +2024-05-18 02:04:11.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:11.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:11.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:11.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:11.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.9116ms +2024-05-18 02:04:24.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:24.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:24.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:24.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:24.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7609ms +2024-05-18 02:04:26.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:26.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:26.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:26.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:26.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.7212ms +2024-05-18 02:04:39.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:39.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:39.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:39.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:39.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 38.0208ms +2024-05-18 02:04:41.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:41.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:41.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:41.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:41.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.3025ms +2024-05-18 02:04:54.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:54.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:54.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:54.222 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:54.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5927ms +2024-05-18 02:04:56.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:04:56.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:56.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:04:56.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:04:56.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.9829ms +2024-05-18 02:05:09.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:09.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:09.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:09.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:09.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.278ms +2024-05-18 02:05:11.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:11.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:11.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:11.243 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:11.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.032ms +2024-05-18 02:05:24.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:24.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:24.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:24.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:24.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.0103ms +2024-05-18 02:05:26.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:26.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:26.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:26.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:26.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9738ms +2024-05-18 02:05:39.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:39.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:39.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:39.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:39.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 43.9355ms +2024-05-18 02:05:41.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:41.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:41.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:41.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:41.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.7119ms +2024-05-18 02:05:54.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:54.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:54.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:54.231 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:54.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.7348ms +2024-05-18 02:05:56.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:05:56.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:56.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:05:56.244 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:05:56.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.3468ms +2024-05-18 02:06:09.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:09.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:09.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:09.231 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:09.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.6005ms +2024-05-18 02:06:11.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:11.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:11.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:11.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:11.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1368ms +2024-05-18 02:06:24.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:24.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:24.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:24.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:24.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0728ms +2024-05-18 02:06:26.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:26.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:26.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:26.252 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:26.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 43.6422ms +2024-05-18 02:06:39.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:39.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:39.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:39.227 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:39.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.9513ms +2024-05-18 02:06:41.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:41.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:41.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:41.240 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:41.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9216ms +2024-05-18 02:06:54.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:54.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:54.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:54.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:54.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2296ms +2024-05-18 02:06:56.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:06:56.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:56.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:06:56.250 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:06:56.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 40.166ms +2024-05-18 02:07:09.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:09.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:09.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:09.227 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:09.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.6772ms +2024-05-18 02:07:11.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:11.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:11.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:11.245 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:11.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.2347ms +2024-05-18 02:07:24.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:24.204 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:24.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:24.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:24.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.4916ms +2024-05-18 02:07:26.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:26.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:26.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:26.238 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:26.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2149ms +2024-05-18 02:07:39.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:39.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:39.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:39.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:39.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0634ms +2024-05-18 02:07:41.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:41.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:41.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:41.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:41.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.6226ms +2024-05-18 02:07:54.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:54.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:54.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:54.232 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:54.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.6703ms +2024-05-18 02:07:56.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:07:56.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:56.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:07:56.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:07:56.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.075ms +2024-05-18 02:08:06.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:06.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:06.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:06.915 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:06.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.8923ms +2024-05-18 02:08:06.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:06.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:06.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:06.954 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:06.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.6526ms +2024-05-18 02:08:09.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:09.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:09.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:09.232 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:09.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.6103ms +2024-05-18 02:08:11.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:11.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:11.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:11.247 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:11.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.1203ms +2024-05-18 02:08:24.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:24.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:24.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:24.233 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:24.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.9277ms +2024-05-18 02:08:26.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:26.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:26.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:26.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:26.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.447ms +2024-05-18 02:08:31.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:08:31.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:31.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:31.247 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:31.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 31.4006ms +2024-05-18 02:08:31.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:08:31.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:31.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:31.280 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:31.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 30.1401ms +2024-05-18 02:08:34.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:08:34.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:34.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:34.223 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:34.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 28.2954ms +2024-05-18 02:08:39.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:39.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:39.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:39.235 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:39.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.5335ms +2024-05-18 02:08:41.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:41.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:41.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:41.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:41.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3809ms +2024-05-18 02:08:54.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:54.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:54.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:54.232 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:54.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.4121ms +2024-05-18 02:08:55.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:08:55.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:55.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:55.679 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:55.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 33.071ms +2024-05-18 02:08:56.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:08:56.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:56.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:56.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:56.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.5938ms +2024-05-18 02:08:56.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:08:56.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:56.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:08:56.275 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:08:56.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 28.0664ms +2024-05-18 02:09:09.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:09.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:09.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:09.236 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:09.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.4994ms +2024-05-18 02:09:10.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:09:10.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:10.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:10.715 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:10.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 28.8345ms +2024-05-18 02:09:11.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:11.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:11.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:11.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:11.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9434ms +2024-05-18 02:09:24.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:24.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:24.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:24.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:24.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1865ms +2024-05-18 02:09:25.688 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:09:25.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:25.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:25.717 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:25.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 29.8483ms +2024-05-18 02:09:26.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:26.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:26.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:26.245 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:26.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.4703ms +2024-05-18 02:09:39.203 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:39.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:39.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:39.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:39.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2245ms +2024-05-18 02:09:40.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:09:40.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:40.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:40.715 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:40.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 30.4061ms +2024-05-18 02:09:41.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:09:41.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:41.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:41.239 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:09:41.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.693ms +2024-05-18 02:09:41.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/f971c185-4c39-4b2a-8368-3eb2f8145cc7 - application/json 165 +2024-05-18 02:09:41.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:41.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:09:41.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/f971c185-4c39-4b2a-8368-3eb2f8145cc7 - 200 null application/json 29.3592ms +2024-05-18 02:10:00.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:10:00.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:00.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:00.870 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:00.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2086ms +2024-05-18 02:10:00.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:10:00.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:00.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:00.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:00.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8937ms +2024-05-18 02:10:10.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:10:10.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:10.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:10.715 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:10.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 29.6237ms +2024-05-18 02:10:15.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:10:15.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:15.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:15.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:15.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.9535ms +2024-05-18 02:10:25.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:10:25.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:25.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:25.721 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:25.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 34.4704ms +2024-05-18 02:10:30.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:10:30.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:30.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:30.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:30.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4904ms +2024-05-18 02:10:40.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:10:40.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:40.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:40.724 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:40.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 36.3167ms +2024-05-18 02:10:45.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:10:45.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:45.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:45.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:45.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.3012ms +2024-05-18 02:10:55.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:10:55.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:55.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:10:55.721 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:10:55.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 30.9165ms +2024-05-18 02:11:00.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:11:00.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:00.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:00.910 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:11:00.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.9521ms +2024-05-18 02:11:10.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:11:10.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:10.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:10.722 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:11:10.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 37.1566ms +2024-05-18 02:11:15.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:11:15.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:15.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:15.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:11:15.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.4179ms +2024-05-18 02:11:25.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - null null +2024-05-18 02:11:25.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:25.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:11:25.722 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:11:25.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/b202a5fe-afbd-4894-95e3-41aff99f430c - 400 null application/json 33.5754ms +2024-05-18 02:12:27.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:12:27.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:12:27.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:12:27.391 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:12:27.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8756ms +2024-05-18 02:12:31.879 +02:00 [INF] Deregistering a service [id: notifications-service:910905e853674eeb86e61c6d25ac70e5] from Consul... +2024-05-18 02:12:31.882 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:910905e853674eeb86e61c6d25ac70e5" +2024-05-18 02:12:31.883 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:910905e853674eeb86e61c6d25ac70e5 +2024-05-18 02:12:31.883 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:910905e853674eeb86e61c6d25ac70e5 +2024-05-18 02:12:31.888 +02:00 [INF] Received HTTP response headers after 4.7717ms - 200 +2024-05-18 02:12:31.888 +02:00 [INF] End processing HTTP request after 5.7746ms - 200 +2024-05-18 02:12:31.890 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 02:12:31.891 +02:00 [INF] Deregistered a service [id: notifications-service:910905e853674eeb86e61c6d25ac70e5] from Consul. +2024-05-18 02:12:38.552 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-18 02:12:38.589 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-18 02:12:38.634 +02:00 [INF] Registering a service [id: notifications-service:4fb594e75b1e4b0bb513f0f8bb7983e0] in Consul... +2024-05-18 02:12:38.649 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-18 02:12:38.652 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 02:12:38.653 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-18 02:12:38.660 +02:00 [INF] Received HTTP response headers after 5.3628ms - 200 +2024-05-18 02:12:38.661 +02:00 [INF] End processing HTTP request after 9.387ms - 200 +2024-05-18 02:12:38.664 +02:00 [INF] End processing HTTP request - "OK" +2024-05-18 02:12:38.664 +02:00 [INF] Registered a service [id: notifications-service:4fb594e75b1e4b0bb513f0f8bb7983e0] in Consul. +2024-05-18 02:12:38.670 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-18 02:12:38.679 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-18 02:12:38.681 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-18 02:12:38.683 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-18 02:12:38.685 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-18 02:12:38.687 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-18 02:12:38.690 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-18 02:12:38.692 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-18 02:13:36.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:13:36.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:13:37.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:13:37.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 120.8421ms +2024-05-18 02:14:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - application/json 165 +2024-05-18 02:14:06.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:06.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:06.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7756ms +2024-05-18 02:14:39.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:14:39.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:39.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:39.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2311ms +2024-05-18 02:14:39.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:14:39.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:39.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:39.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8369ms +2024-05-18 02:14:54.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:14:54.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:54.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:14:54.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2427ms +2024-05-18 02:15:09.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:15:09.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:09.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:09.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4461ms +2024-05-18 02:15:24.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:15:24.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:24.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:24.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0324ms +2024-05-18 02:15:39.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:15:39.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:39.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:39.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.4493ms +2024-05-18 02:15:54.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:15:54.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:54.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:15:54.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0361ms +2024-05-18 02:16:09.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:16:09.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:09.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:09.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4856ms +2024-05-18 02:16:24.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:16:24.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:24.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:24.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8225ms +2024-05-18 02:16:39.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:16:39.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:39.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:39.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1629ms +2024-05-18 02:16:54.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:16:54.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:54.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:16:54.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6417ms +2024-05-18 02:17:09.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:17:09.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:09.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:09.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8742ms +2024-05-18 02:17:24.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:17:24.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:24.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:24.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2947ms +2024-05-18 02:17:39.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:17:39.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:39.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:39.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9367ms +2024-05-18 02:17:54.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:17:54.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:54.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:17:54.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.3328ms +2024-05-18 02:18:09.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:09.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:09.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:09.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3595ms +2024-05-18 02:18:11.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:11.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:11.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:11.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8296ms +2024-05-18 02:18:11.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:11.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:11.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:11.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1422ms +2024-05-18 02:18:24.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:24.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:24.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:24.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9247ms +2024-05-18 02:18:26.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:26.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:26.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:26.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.928ms +2024-05-18 02:18:27.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:27.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:27.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:27.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1178ms +2024-05-18 02:18:27.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:27.777 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:27.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:27.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3351ms +2024-05-18 02:18:38.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:38.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:38.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:38.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1152ms +2024-05-18 02:18:38.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:38.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:38.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:38.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0083ms +2024-05-18 02:18:39.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:39.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:39.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:39.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5115ms +2024-05-18 02:18:41.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:41.819 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:41.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:41.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8694ms +2024-05-18 02:18:42.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:42.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:42.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:42.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2781ms +2024-05-18 02:18:44.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:44.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:44.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:44.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4391ms +2024-05-18 02:18:44.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:44.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:44.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:44.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3263ms +2024-05-18 02:18:46.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:46.088 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:46.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:46.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7324ms +2024-05-18 02:18:46.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:46.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:46.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:46.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8361ms +2024-05-18 02:18:47.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:47.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:47.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:47.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4318ms +2024-05-18 02:18:49.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:49.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:49.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:49.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5323ms +2024-05-18 02:18:49.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:49.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:49.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:49.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5542ms +2024-05-18 02:18:53.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:53.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:53.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:53.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9929ms +2024-05-18 02:18:54.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:54.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:54.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:54.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.781ms +2024-05-18 02:18:56.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:56.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:56.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:56.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0866ms +2024-05-18 02:18:57.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:57.773 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:57.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:57.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9005ms +2024-05-18 02:18:59.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:18:59.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:59.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:18:59.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2777ms +2024-05-18 02:19:01.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:01.121 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:01.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:01.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5401ms +2024-05-18 02:19:04.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:04.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:04.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:04.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6397ms +2024-05-18 02:19:08.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:08.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:08.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:08.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.8768ms +2024-05-18 02:19:09.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:09.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:09.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:09.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1453ms +2024-05-18 02:19:11.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:11.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:11.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:11.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.4727ms +2024-05-18 02:19:12.771 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:12.771 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:12.800 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:12.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6237ms +2024-05-18 02:19:14.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:14.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:14.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:14.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8209ms +2024-05-18 02:19:16.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:16.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:16.153 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:16.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0733ms +2024-05-18 02:19:19.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:19.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:19.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:19.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4387ms +2024-05-18 02:19:23.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:23.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:23.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:23.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8591ms +2024-05-18 02:19:24.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:24.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:24.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:24.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7418ms +2024-05-18 02:19:26.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:26.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:26.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:26.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.132ms +2024-05-18 02:19:27.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:27.773 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:27.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:27.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1766ms +2024-05-18 02:19:28.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:28.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:28.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:28.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2451ms +2024-05-18 02:19:28.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:28.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:28.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:28.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9254ms +2024-05-18 02:19:29.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:29.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:29.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:29.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1647ms +2024-05-18 02:19:30.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:30.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:30.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:30.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9372ms +2024-05-18 02:19:30.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:30.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:30.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:30.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1181ms +2024-05-18 02:19:31.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:31.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:31.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:31.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9517ms +2024-05-18 02:19:34.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:34.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:34.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:34.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9075ms +2024-05-18 02:19:35.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:35.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:35.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:35.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4591ms +2024-05-18 02:19:35.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:35.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:35.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:35.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1222ms +2024-05-18 02:19:38.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:38.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:38.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:38.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1933ms +2024-05-18 02:19:39.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:39.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:39.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:39.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3515ms +2024-05-18 02:19:41.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:41.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:41.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:41.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3719ms +2024-05-18 02:19:42.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:42.777 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:42.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:42.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2463ms +2024-05-18 02:19:43.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:43.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8171ms +2024-05-18 02:19:43.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:43.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1386ms +2024-05-18 02:19:43.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:43.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:43.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2984ms +2024-05-18 02:19:44.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:44.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:44.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:44.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.256ms +2024-05-18 02:19:45.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:45.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:45.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:45.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2263ms +2024-05-18 02:19:46.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:46.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:46.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:46.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8433ms +2024-05-18 02:19:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:47.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:47.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5533ms +2024-05-18 02:19:47.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:47.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:47.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:47.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8676ms +2024-05-18 02:19:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:50.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1665ms +2024-05-18 02:19:51.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:51.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2307ms +2024-05-18 02:19:51.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:19:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:19:51.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1016ms +2024-05-18 02:20:02.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:02.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:02.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:02.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2284ms +2024-05-18 02:20:06.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:06.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:06.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:06.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3969ms +2024-05-18 02:20:17.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:17.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:17.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:17.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.246ms +2024-05-18 02:20:21.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:21.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:21.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:21.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9052ms +2024-05-18 02:20:32.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:32.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:32.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6813ms +2024-05-18 02:20:36.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:36.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:36.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:36.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9986ms +2024-05-18 02:20:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:47.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:47.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1854ms +2024-05-18 02:20:51.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:20:51.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:51.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:20:51.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3312ms +2024-05-18 02:21:02.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:02.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:02.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:02.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8859ms +2024-05-18 02:21:06.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:06.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:06.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:06.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2265ms +2024-05-18 02:21:17.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:17.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:17.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:17.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.4848ms +2024-05-18 02:21:21.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:21.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:21.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:21.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8337ms +2024-05-18 02:21:32.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:32.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5845ms +2024-05-18 02:21:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:36.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:36.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0735ms +2024-05-18 02:21:47.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:47.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:47.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:47.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1894ms +2024-05-18 02:21:51.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:21:51.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:51.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:21:51.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.312ms +2024-05-18 02:22:02.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:02.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:02.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:02.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4758ms +2024-05-18 02:22:06.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:06.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:06.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4125ms +2024-05-18 02:22:17.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:17.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:17.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:17.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0633ms +2024-05-18 02:22:21.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:21.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:21.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:21.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0545ms +2024-05-18 02:22:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:32.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:32.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4517ms +2024-05-18 02:22:36.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:36.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:36.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:36.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3017ms +2024-05-18 02:22:47.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:47.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:47.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:47.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1299ms +2024-05-18 02:22:51.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:22:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:51.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:22:51.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.842ms +2024-05-18 02:23:02.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:02.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:02.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:02.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3732ms +2024-05-18 02:23:06.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:06.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:06.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.7279ms +2024-05-18 02:23:17.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:17.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:17.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:17.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2901ms +2024-05-18 02:23:21.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:21.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:21.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:21.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8476ms +2024-05-18 02:23:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:32.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:32.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8474ms +2024-05-18 02:23:36.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:36.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:36.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:36.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7506ms +2024-05-18 02:23:47.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:47.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:47.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:47.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.3727ms +2024-05-18 02:23:51.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:23:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:51.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:23:51.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7547ms +2024-05-18 02:24:02.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:02.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:02.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:02.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9207ms +2024-05-18 02:24:06.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:06.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:06.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6267ms +2024-05-18 02:24:17.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:17.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:17.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:17.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3398ms +2024-05-18 02:24:21.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:21.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:21.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:21.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3489ms +2024-05-18 02:24:32.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:32.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:32.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6986ms +2024-05-18 02:24:36.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:36.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:36.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:36.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0591ms +2024-05-18 02:24:47.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:47.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:47.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:47.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7991ms +2024-05-18 02:24:51.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:24:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:51.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:24:51.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0319ms +2024-05-18 02:25:02.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:02.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:02.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:02.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7345ms +2024-05-18 02:25:06.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:06.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:06.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:06.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6648ms +2024-05-18 02:25:17.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:17.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:17.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:17.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1818ms +2024-05-18 02:25:21.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:21.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:21.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:21.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.43ms +2024-05-18 02:25:32.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:32.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:32.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:32.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7763ms +2024-05-18 02:25:36.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:36.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:36.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:36.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.508ms +2024-05-18 02:25:47.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:47.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:47.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4898ms +2024-05-18 02:25:51.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:51.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:51.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:51.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8583ms +2024-05-18 02:25:54.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:54.152 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:54.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:54.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4012ms +2024-05-18 02:25:54.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:54.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:54.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:54.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3017ms +2024-05-18 02:25:54.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:54.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:55.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:55.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6035ms +2024-05-18 02:25:55.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:55.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:55.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:55.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7688ms +2024-05-18 02:25:59.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:25:59.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:59.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:25:59.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5514ms +2024-05-18 02:26:00.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:00.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:00.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:00.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1335ms +2024-05-18 02:26:00.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:00.113 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:00.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0467ms +2024-05-18 02:26:02.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:02.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:02.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:02.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9082ms +2024-05-18 02:26:06.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:06.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:06.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:06.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2992ms +2024-05-18 02:26:07.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:07.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:07.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:07.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4555ms +2024-05-18 02:26:07.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:07.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:07.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:07.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.149ms +2024-05-18 02:26:08.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:08.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:08.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:08.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5542ms +2024-05-18 02:26:08.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:08.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:08.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:08.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4531ms +2024-05-18 02:26:09.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:09.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5828ms +2024-05-18 02:26:09.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:09.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9404ms +2024-05-18 02:26:09.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:09.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:09.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7737ms +2024-05-18 02:26:10.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:10.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:10.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:10.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1365ms +2024-05-18 02:26:15.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:15.113 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:15.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:15.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3892ms +2024-05-18 02:26:17.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:17.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:17.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:17.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7461ms +2024-05-18 02:26:21.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:21.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:21.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:21.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.727ms +2024-05-18 02:26:22.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:22.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:22.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6815ms +2024-05-18 02:26:23.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:23.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:23.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:23.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.675ms +2024-05-18 02:26:24.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:24.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:24.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.366ms +2024-05-18 02:26:24.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:24.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:24.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:24.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0577ms +2024-05-18 02:26:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:25.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:25.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:25.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.3237ms +2024-05-18 02:26:30.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:30.116 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:30.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:30.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6835ms +2024-05-18 02:26:32.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:32.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:32.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:32.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3173ms +2024-05-18 02:26:36.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:36.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:36.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:36.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1474ms +2024-05-18 02:26:37.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:37.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:37.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:37.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5188ms +2024-05-18 02:26:38.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:38.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:38.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:38.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4035ms +2024-05-18 02:26:39.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:39.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:39.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:39.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1757ms +2024-05-18 02:26:39.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:39.376 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:39.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:39.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1438ms +2024-05-18 02:26:40.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:40.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:40.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:40.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6033ms +2024-05-18 02:26:45.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:45.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:45.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:45.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0407ms +2024-05-18 02:26:47.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:47.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:47.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:47.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.541ms +2024-05-18 02:26:51.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:51.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:51.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:51.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9404ms +2024-05-18 02:26:52.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:52.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:52.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.235ms +2024-05-18 02:26:53.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:53.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:53.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:53.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4448ms +2024-05-18 02:26:54.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:54.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:54.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.7368ms +2024-05-18 02:26:54.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:54.376 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:54.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:54.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4901ms +2024-05-18 02:26:55.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:26:55.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:55.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:26:55.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5956ms +2024-05-18 02:27:00.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:00.116 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:00.143 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:00.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.295ms +2024-05-18 02:27:02.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:02.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:02.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:02.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4061ms +2024-05-18 02:27:06.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:06.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:06.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2834ms +2024-05-18 02:27:07.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:07.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:07.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:07.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4872ms +2024-05-18 02:27:08.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:08.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:08.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:08.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9444ms +2024-05-18 02:27:09.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:09.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:09.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:09.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7124ms +2024-05-18 02:27:09.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:09.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:09.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:09.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1794ms +2024-05-18 02:27:10.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:10.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:10.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:10.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.137ms +2024-05-18 02:27:15.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:15.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:15.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:15.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7753ms +2024-05-18 02:27:17.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:17.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:17.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:17.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 40.9888ms +2024-05-18 02:27:21.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:21.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:21.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:21.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.552ms +2024-05-18 02:27:22.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:22.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:22.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3875ms +2024-05-18 02:27:23.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:23.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:23.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:23.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8911ms +2024-05-18 02:27:24.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:24.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:24.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:24.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5784ms +2024-05-18 02:27:24.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:24.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:24.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:24.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.424ms +2024-05-18 02:27:25.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:25.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:25.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:25.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5338ms +2024-05-18 02:27:30.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:30.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:30.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:30.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9166ms +2024-05-18 02:27:32.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:32.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:32.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:32.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5973ms +2024-05-18 02:27:36.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:36.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:36.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0197ms +2024-05-18 02:27:37.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:37.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:37.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:37.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5144ms +2024-05-18 02:27:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:38.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:38.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:38.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6129ms +2024-05-18 02:27:39.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:39.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:39.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6247ms +2024-05-18 02:27:39.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:39.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:39.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:39.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2157ms +2024-05-18 02:27:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:40.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:40.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:40.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.971ms +2024-05-18 02:27:45.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:45.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:45.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:45.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.067ms +2024-05-18 02:27:47.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:47.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:47.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:47.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1609ms +2024-05-18 02:27:51.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:51.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:51.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9679ms +2024-05-18 02:27:52.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:52.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:52.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1906ms +2024-05-18 02:27:53.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:53.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:53.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:53.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2023ms +2024-05-18 02:27:54.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:54.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:54.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:54.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8314ms +2024-05-18 02:27:54.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:54.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:54.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:54.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0954ms +2024-05-18 02:27:55.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:27:55.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:55.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:27:55.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9027ms +2024-05-18 02:28:00.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:00.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:00.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8859ms +2024-05-18 02:28:02.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:02.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:02.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:02.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2735ms +2024-05-18 02:28:06.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:06.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:06.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:06.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8207ms +2024-05-18 02:28:07.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:07.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:07.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:07.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6431ms +2024-05-18 02:28:08.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:08.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:08.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:08.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1941ms +2024-05-18 02:28:09.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:09.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:09.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:09.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0828ms +2024-05-18 02:28:09.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:09.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:09.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:09.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8852ms +2024-05-18 02:28:10.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:10.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:10.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:10.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1212ms +2024-05-18 02:28:15.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:15.121 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:15.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:15.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0841ms +2024-05-18 02:28:17.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:17.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:17.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:17.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.529ms +2024-05-18 02:28:18.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:18.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:18.177 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:18.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5498ms +2024-05-18 02:28:18.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:18.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:18.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:18.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0518ms +2024-05-18 02:28:21.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:21.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:21.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:21.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6756ms +2024-05-18 02:28:22.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:22.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:22.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:22.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3341ms +2024-05-18 02:28:23.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:23.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:23.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:23.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5369ms +2024-05-18 02:28:24.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:24.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:24.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:24.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9515ms +2024-05-18 02:28:24.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:24.377 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:24.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:24.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3608ms +2024-05-18 02:28:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:25.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:25.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:25.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5752ms +2024-05-18 02:28:30.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:30.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:30.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:30.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9257ms +2024-05-18 02:28:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.202ms +2024-05-18 02:28:33.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:33.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:33.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:33.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9492ms +2024-05-18 02:28:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:36.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:36.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.2284ms +2024-05-18 02:28:37.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:37.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:37.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:37.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3394ms +2024-05-18 02:28:38.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:38.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5246ms +2024-05-18 02:28:38.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:38.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5714ms +2024-05-18 02:28:38.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:38.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:38.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6483ms +2024-05-18 02:28:39.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:39.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:39.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1621ms +2024-05-18 02:28:39.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:39.377 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:39.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:39.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6228ms +2024-05-18 02:28:40.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:40.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:40.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:40.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8311ms +2024-05-18 02:28:45.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:45.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:45.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:45.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1191ms +2024-05-18 02:28:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:47.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:47.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4843ms +2024-05-18 02:28:48.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:48.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:48.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:48.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7355ms +2024-05-18 02:28:51.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:51.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:51.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:51.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2276ms +2024-05-18 02:28:52.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:52.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:52.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.532ms +2024-05-18 02:28:53.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:53.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:53.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:53.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.537ms +2024-05-18 02:28:53.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:53.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:53.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:53.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6862ms +2024-05-18 02:28:54.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:54.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:54.220 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:54.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7345ms +2024-05-18 02:28:54.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:54.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:54.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:54.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4641ms +2024-05-18 02:28:55.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:55.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:55.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:55.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.885ms +2024-05-18 02:28:55.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:55.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:55.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:55.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4275ms +2024-05-18 02:28:56.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:56.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:56.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:56.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1578ms +2024-05-18 02:28:56.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:56.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:56.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:56.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8569ms +2024-05-18 02:28:58.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:58.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:58.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:58.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0776ms +2024-05-18 02:28:58.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:28:58.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:58.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:28:58.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5472ms +2024-05-18 02:29:00.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:00.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:00.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:00.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9674ms +2024-05-18 02:29:02.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:02.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:02.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:02.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.2436ms +2024-05-18 02:29:03.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:03.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:03.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:03.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8969ms +2024-05-18 02:29:06.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:06.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:06.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6729ms +2024-05-18 02:29:07.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:07.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:07.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:07.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7625ms +2024-05-18 02:29:08.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:08.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:08.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:08.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2418ms +2024-05-18 02:29:08.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:08.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:08.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:08.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2973ms +2024-05-18 02:29:09.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:09.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:09.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:09.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4053ms +2024-05-18 02:29:09.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:09.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:09.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:09.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1896ms +2024-05-18 02:29:10.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:10.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:10.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:10.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5865ms +2024-05-18 02:29:11.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:11.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:11.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:11.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1189ms +2024-05-18 02:29:13.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:13.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:13.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:13.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1221ms +2024-05-18 02:29:15.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:15.117 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:15.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:15.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6638ms +2024-05-18 02:29:17.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:17.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:17.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:17.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2494ms +2024-05-18 02:29:18.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:18.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:18.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:18.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9899ms +2024-05-18 02:29:21.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:21.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:21.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4256ms +2024-05-18 02:29:22.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:22.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:22.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.843ms +2024-05-18 02:29:23.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:23.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:23.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:23.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4527ms +2024-05-18 02:29:23.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:23.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:23.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:23.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6556ms +2024-05-18 02:29:24.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:24.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:24.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:24.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.7674ms +2024-05-18 02:29:24.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:24.376 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:24.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:24.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5744ms +2024-05-18 02:29:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:25.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:25.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:25.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8112ms +2024-05-18 02:29:26.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:26.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:26.484 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:26.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.707ms +2024-05-18 02:29:28.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:28.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:28.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:28.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4796ms +2024-05-18 02:29:30.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:30.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:30.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:30.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2958ms +2024-05-18 02:29:32.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:32.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:32.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:32.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2888ms +2024-05-18 02:29:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1221ms +2024-05-18 02:29:33.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:33.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8741ms +2024-05-18 02:29:33.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:33.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7372ms +2024-05-18 02:29:33.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:33.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:33.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9781ms +2024-05-18 02:29:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:36.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2196ms +2024-05-18 02:29:36.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:36.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3131ms +2024-05-18 02:29:36.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:36.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8178ms +2024-05-18 02:29:36.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:36.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:36.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5783ms +2024-05-18 02:29:37.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:37.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:37.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:37.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7109ms +2024-05-18 02:29:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:38.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:38.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:38.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8886ms +2024-05-18 02:29:38.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:38.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:38.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:38.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3787ms +2024-05-18 02:29:39.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:39.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:39.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6171ms +2024-05-18 02:29:39.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:39.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:39.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:39.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6744ms +2024-05-18 02:29:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:40.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:40.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6087ms +2024-05-18 02:29:41.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:41.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:41.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:41.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0069ms +2024-05-18 02:29:43.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:43.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:43.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:43.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.811ms +2024-05-18 02:29:45.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:45.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:45.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:45.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5291ms +2024-05-18 02:29:47.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:47.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:47.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:47.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5128ms +2024-05-18 02:29:48.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:48.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:48.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:48.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4022ms +2024-05-18 02:29:48.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:48.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:48.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:48.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9845ms +2024-05-18 02:29:51.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:51.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:51.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.5191ms +2024-05-18 02:29:51.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:51.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:51.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:51.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1449ms +2024-05-18 02:29:52.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:52.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:52.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6476ms +2024-05-18 02:29:53.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:53.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:53.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:53.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3501ms +2024-05-18 02:29:53.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:53.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:53.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:53.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8226ms +2024-05-18 02:29:54.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:54.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:54.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6149ms +2024-05-18 02:29:54.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:54.377 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:54.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:54.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7977ms +2024-05-18 02:29:55.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:55.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:55.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:55.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4021ms +2024-05-18 02:29:56.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:56.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:56.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:56.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6726ms +2024-05-18 02:29:58.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:29:58.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:58.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:29:58.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.761ms +2024-05-18 02:30:00.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:00.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:00.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:00.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8179ms +2024-05-18 02:30:02.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:02.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:02.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:02.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6955ms +2024-05-18 02:30:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:03.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:03.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:03.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.049ms +2024-05-18 02:30:03.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:03.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:03.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:03.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6025ms +2024-05-18 02:30:06.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:06.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:06.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:06.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1375ms +2024-05-18 02:30:06.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:06.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:06.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:06.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.469ms +2024-05-18 02:30:07.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:07.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:07.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:07.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.5954ms +2024-05-18 02:30:08.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:08.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:08.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:08.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.929ms +2024-05-18 02:30:08.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:08.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:08.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:08.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2096ms +2024-05-18 02:30:09.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:09.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:09.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:09.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7234ms +2024-05-18 02:30:09.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:09.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:09.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:09.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5962ms +2024-05-18 02:30:10.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:10.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:10.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:10.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1911ms +2024-05-18 02:30:11.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:11.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:11.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:11.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6598ms +2024-05-18 02:30:13.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:13.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:13.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:13.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9801ms +2024-05-18 02:30:15.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:15.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:15.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:15.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0152ms +2024-05-18 02:30:17.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:17.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:17.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:17.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2601ms +2024-05-18 02:30:18.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:18.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:18.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:18.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5666ms +2024-05-18 02:30:18.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:18.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:18.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:18.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7238ms +2024-05-18 02:30:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:21.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:21.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0664ms +2024-05-18 02:30:21.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:21.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:21.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:21.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5796ms +2024-05-18 02:30:22.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:22.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:22.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3502ms +2024-05-18 02:30:23.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:23.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:23.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:23.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2958ms +2024-05-18 02:30:23.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:23.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:23.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:23.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6083ms +2024-05-18 02:30:24.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:24.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:24.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:24.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1367ms +2024-05-18 02:30:24.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:24.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:24.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:24.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1503ms +2024-05-18 02:30:25.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:25.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:25.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:25.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.7068ms +2024-05-18 02:30:26.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:26.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:26.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:26.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2586ms +2024-05-18 02:30:28.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:28.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:28.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:28.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6207ms +2024-05-18 02:30:30.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:30.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:30.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:30.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3074ms +2024-05-18 02:30:32.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:32.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:32.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:32.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7879ms +2024-05-18 02:30:33.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:33.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:33.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:33.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3413ms +2024-05-18 02:30:33.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:33.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:33.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:33.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5742ms +2024-05-18 02:30:36.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:36.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:36.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.435ms +2024-05-18 02:30:36.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:36.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:36.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:36.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1632ms +2024-05-18 02:30:37.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:37.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:37.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.619ms +2024-05-18 02:30:38.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:38.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:38.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:38.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3948ms +2024-05-18 02:30:38.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:38.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:38.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:38.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8559ms +2024-05-18 02:30:39.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:39.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:39.220 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:39.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6241ms +2024-05-18 02:30:39.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:39.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:39.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:39.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.6465ms +2024-05-18 02:30:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:40.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:40.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9745ms +2024-05-18 02:30:41.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:41.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:41.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:41.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7205ms +2024-05-18 02:30:43.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:43.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:43.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:43.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2238ms +2024-05-18 02:30:45.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:45.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:45.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:45.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.187ms +2024-05-18 02:30:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:47.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:47.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8386ms +2024-05-18 02:30:48.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:48.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:48.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:48.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9981ms +2024-05-18 02:30:48.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:48.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:48.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:48.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0502ms +2024-05-18 02:30:51.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:51.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:51.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:51.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.952ms +2024-05-18 02:30:51.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:51.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:51.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:51.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5849ms +2024-05-18 02:30:52.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:52.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:52.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1463ms +2024-05-18 02:30:53.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:53.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:53.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:53.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6648ms +2024-05-18 02:30:53.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:53.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:53.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:53.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6928ms +2024-05-18 02:30:54.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:54.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:54.220 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:54.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0793ms +2024-05-18 02:30:54.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:54.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:54.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:54.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2564ms +2024-05-18 02:30:55.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:55.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:55.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:55.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0324ms +2024-05-18 02:30:56.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:56.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:56.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:56.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9308ms +2024-05-18 02:30:58.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:30:58.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:58.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:30:58.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9642ms +2024-05-18 02:31:00.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:00.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:00.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9016ms +2024-05-18 02:31:02.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:02.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:02.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:02.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.21ms +2024-05-18 02:31:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:03.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:03.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:03.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9128ms +2024-05-18 02:31:03.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:03.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:03.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:03.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1891ms +2024-05-18 02:31:06.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:06.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:06.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:06.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1363ms +2024-05-18 02:31:06.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:06.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:06.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:06.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8015ms +2024-05-18 02:31:07.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:07.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:07.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:07.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3154ms +2024-05-18 02:31:08.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:08.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:08.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:08.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.192ms +2024-05-18 02:31:08.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:08.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:08.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:08.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6729ms +2024-05-18 02:31:09.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:09.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:09.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:09.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9835ms +2024-05-18 02:31:09.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:09.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:09.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:09.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8316ms +2024-05-18 02:31:10.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:10.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:10.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:10.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3431ms +2024-05-18 02:31:11.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:11.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:11.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:11.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3797ms +2024-05-18 02:31:13.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:13.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:13.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:13.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6844ms +2024-05-18 02:31:15.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:15.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:15.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:15.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9053ms +2024-05-18 02:31:17.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:17.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:17.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:17.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6915ms +2024-05-18 02:31:18.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:18.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:18.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:18.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1919ms +2024-05-18 02:31:18.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:18.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:18.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:18.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7382ms +2024-05-18 02:31:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:21.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:21.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0689ms +2024-05-18 02:31:21.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:21.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:21.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:21.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.46ms +2024-05-18 02:31:22.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:22.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:22.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7539ms +2024-05-18 02:31:23.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:23.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:23.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:23.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6956ms +2024-05-18 02:31:23.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:23.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:23.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:23.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.132ms +2024-05-18 02:31:24.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:24.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:24.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:24.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4802ms +2024-05-18 02:31:24.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:24.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:24.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:24.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.3561ms +2024-05-18 02:31:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:25.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:25.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:25.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0287ms +2024-05-18 02:31:26.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:26.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:26.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:26.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9761ms +2024-05-18 02:31:28.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:28.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:28.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:28.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4954ms +2024-05-18 02:31:30.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:30.117 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:30.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:30.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1922ms +2024-05-18 02:31:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:32.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9532ms +2024-05-18 02:31:33.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:33.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:33.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:33.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0324ms +2024-05-18 02:31:33.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:33.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:33.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:33.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5159ms +2024-05-18 02:31:36.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:36.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:36.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:36.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2946ms +2024-05-18 02:31:36.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:36.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:36.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:36.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7397ms +2024-05-18 02:31:37.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:37.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:37.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3741ms +2024-05-18 02:31:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:38.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:38.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:38.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4796ms +2024-05-18 02:31:38.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:38.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:38.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:38.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6748ms +2024-05-18 02:31:39.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:39.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:39.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:39.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8761ms +2024-05-18 02:31:39.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:39.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:39.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:39.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0656ms +2024-05-18 02:31:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:40.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:40.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4401ms +2024-05-18 02:31:41.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:41.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:41.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:41.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4635ms +2024-05-18 02:31:43.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:43.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:43.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:43.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7241ms +2024-05-18 02:31:45.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:45.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:45.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:45.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7585ms +2024-05-18 02:31:47.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:47.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:47.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:47.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8337ms +2024-05-18 02:31:48.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:48.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:48.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:48.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4684ms +2024-05-18 02:31:48.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:48.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:48.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:48.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2507ms +2024-05-18 02:31:51.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:51.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:51.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:51.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9962ms +2024-05-18 02:31:51.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:51.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:51.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:51.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9638ms +2024-05-18 02:31:52.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:52.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:52.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:52.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0082ms +2024-05-18 02:31:53.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:53.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:53.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:53.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9389ms +2024-05-18 02:31:53.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:53.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:53.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:53.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8905ms +2024-05-18 02:31:54.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:54.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:54.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:54.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3032ms +2024-05-18 02:31:54.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:54.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:54.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:54.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0892ms +2024-05-18 02:31:55.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:55.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:55.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:55.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8116ms +2024-05-18 02:31:56.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:56.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:56.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:56.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8652ms +2024-05-18 02:31:58.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:31:58.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:58.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:31:58.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2464ms +2024-05-18 02:32:00.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:00.117 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:00.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:00.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0573ms +2024-05-18 02:32:02.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:02.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:02.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:02.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8004ms +2024-05-18 02:32:03.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:03.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:03.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:03.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5283ms +2024-05-18 02:32:03.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:03.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:03.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:03.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5989ms +2024-05-18 02:32:06.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:06.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:06.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:06.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7187ms +2024-05-18 02:32:06.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:06.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:06.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:06.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8402ms +2024-05-18 02:32:07.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:07.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:07.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:07.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5739ms +2024-05-18 02:32:08.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:08.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:08.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:08.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3059ms +2024-05-18 02:32:08.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:08.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:08.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:08.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.1998ms +2024-05-18 02:32:09.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:09.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:09.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:09.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.192ms +2024-05-18 02:32:09.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:09.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:09.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:09.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7496ms +2024-05-18 02:32:10.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:10.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:10.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:10.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6411ms +2024-05-18 02:32:11.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:11.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:11.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:11.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3872ms +2024-05-18 02:32:13.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:13.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:13.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:13.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5667ms +2024-05-18 02:32:15.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:15.117 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:15.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:15.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6682ms +2024-05-18 02:32:17.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:17.719 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:17.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:17.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.5005ms +2024-05-18 02:32:18.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:18.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:18.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:18.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.2388ms +2024-05-18 02:32:18.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:18.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:18.484 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:18.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 47.4942ms +2024-05-18 02:32:21.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:21.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:21.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:21.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9439ms +2024-05-18 02:32:21.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:21.380 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:21.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:21.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9891ms +2024-05-18 02:32:22.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:22.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:22.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2445ms +2024-05-18 02:32:23.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:23.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:23.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:23.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2648ms +2024-05-18 02:32:23.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:23.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:23.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:23.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7223ms +2024-05-18 02:32:24.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:24.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:24.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:24.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0289ms +2024-05-18 02:32:24.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:24.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:24.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:24.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1264ms +2024-05-18 02:32:25.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:25.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:25.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:25.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1364ms +2024-05-18 02:32:26.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:26.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:26.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:26.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6851ms +2024-05-18 02:32:28.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:28.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:28.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:28.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2259ms +2024-05-18 02:32:30.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:30.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:30.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:30.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2931ms +2024-05-18 02:32:32.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:32.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:32.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.452ms +2024-05-18 02:32:33.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:33.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:33.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:33.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4472ms +2024-05-18 02:32:33.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:33.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:33.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:33.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0328ms +2024-05-18 02:32:36.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:36.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:36.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 54.4231ms +2024-05-18 02:32:36.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:36.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:36.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:36.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3339ms +2024-05-18 02:32:37.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:37.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:37.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:37.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8409ms +2024-05-18 02:32:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:38.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:38.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:38.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4611ms +2024-05-18 02:32:38.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:38.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:38.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:38.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8725ms +2024-05-18 02:32:39.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:39.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:39.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:39.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2794ms +2024-05-18 02:32:39.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:39.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:39.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:39.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7974ms +2024-05-18 02:32:40.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:40.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:40.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:40.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5312ms +2024-05-18 02:32:41.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:41.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:41.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:41.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5415ms +2024-05-18 02:32:43.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:43.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:43.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:43.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.095ms +2024-05-18 02:32:45.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:45.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:45.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:45.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4262ms +2024-05-18 02:32:47.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:47.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 51.1124ms +2024-05-18 02:32:48.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:48.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:48.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:48.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.17ms +2024-05-18 02:32:48.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:48.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:48.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:48.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6396ms +2024-05-18 02:32:51.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:51.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:51.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:51.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8819ms +2024-05-18 02:32:51.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:51.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:51.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:51.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8705ms +2024-05-18 02:32:52.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:52.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:52.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:52.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9946ms +2024-05-18 02:32:53.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:53.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:53.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:53.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.159ms +2024-05-18 02:32:53.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:53.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:53.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:53.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7294ms +2024-05-18 02:32:54.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:54.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:54.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:54.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1624ms +2024-05-18 02:32:54.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:54.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:54.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:54.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6634ms +2024-05-18 02:32:55.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:55.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:55.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:55.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9153ms +2024-05-18 02:32:56.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:56.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:56.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:56.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3558ms +2024-05-18 02:32:58.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:32:58.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:58.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:32:58.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.8756ms +2024-05-18 02:33:00.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:00.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:00.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:00.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5327ms +2024-05-18 02:33:02.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:02.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:02.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:02.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0049ms +2024-05-18 02:33:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:03.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:03.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:03.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1802ms +2024-05-18 02:33:03.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:03.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:03.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:03.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6388ms +2024-05-18 02:33:06.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:06.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:06.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:06.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5574ms +2024-05-18 02:33:06.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:06.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:06.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:06.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 40.3328ms +2024-05-18 02:33:07.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:07.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:07.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:07.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8937ms +2024-05-18 02:33:08.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:08.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:08.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:08.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8014ms +2024-05-18 02:33:08.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:08.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:08.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:08.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3227ms +2024-05-18 02:33:09.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:09.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:09.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:09.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6146ms +2024-05-18 02:33:09.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:09.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:09.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:09.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.5117ms +2024-05-18 02:33:10.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:10.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:10.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:10.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6112ms +2024-05-18 02:33:11.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:11.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:11.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:11.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.836ms +2024-05-18 02:33:13.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:13.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:13.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:13.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3031ms +2024-05-18 02:33:15.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:15.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:15.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:15.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3344ms +2024-05-18 02:33:17.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:17.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:17.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:17.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6748ms +2024-05-18 02:33:18.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:18.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:18.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:18.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8655ms +2024-05-18 02:33:18.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:18.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:18.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:18.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8984ms +2024-05-18 02:33:21.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:21.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:21.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0329ms +2024-05-18 02:33:21.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:21.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:21.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:21.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8719ms +2024-05-18 02:33:22.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:22.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:22.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:22.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.8566ms +2024-05-18 02:33:23.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:23.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:23.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:23.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7507ms +2024-05-18 02:33:23.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:23.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:23.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:23.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.318ms +2024-05-18 02:33:24.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:24.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:24.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:24.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1319ms +2024-05-18 02:33:24.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:24.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:24.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:24.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2206ms +2024-05-18 02:33:25.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:25.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:25.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:25.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9726ms +2024-05-18 02:33:26.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:26.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:26.484 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:26.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.557ms +2024-05-18 02:33:28.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:28.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0666ms +2024-05-18 02:33:28.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:28.108 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2042ms +2024-05-18 02:33:28.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:28.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:28.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8824ms +2024-05-18 02:33:29.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:29.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4269ms +2024-05-18 02:33:30.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 39.4543ms +2024-05-18 02:33:30.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:30.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4244ms +2024-05-18 02:33:30.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:30.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:30.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8407ms +2024-05-18 02:33:32.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:32.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6087ms +2024-05-18 02:33:33.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:33.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:33.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:33.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.2788ms +2024-05-18 02:33:33.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:33.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:33.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:33.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5398ms +2024-05-18 02:33:36.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:36.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:36.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:36.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7465ms +2024-05-18 02:33:36.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:36.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:36.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:36.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6521ms +2024-05-18 02:33:37.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:37.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:37.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:37.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7131ms +2024-05-18 02:33:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:38.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:38.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:38.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2302ms +2024-05-18 02:33:38.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:38.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:38.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:38.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.87ms +2024-05-18 02:33:39.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:39.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:39.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5381ms +2024-05-18 02:33:39.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:39.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:39.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:39.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7964ms +2024-05-18 02:33:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:40.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:40.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2334ms +2024-05-18 02:33:41.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:41.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:41.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:41.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3675ms +2024-05-18 02:33:43.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:43.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:43.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:43.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 56.1815ms +2024-05-18 02:33:43.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:43.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:43.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:43.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1777ms +2024-05-18 02:33:45.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:45.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:45.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:45.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4323ms +2024-05-18 02:33:45.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:45.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:45.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:45.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3587ms +2024-05-18 02:33:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:47.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:47.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3779ms +2024-05-18 02:33:48.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:48.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:48.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:48.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7972ms +2024-05-18 02:33:48.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:48.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:48.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:48.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4889ms +2024-05-18 02:33:51.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:51.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:51.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:51.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5483ms +2024-05-18 02:33:51.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:51.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:51.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:51.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7064ms +2024-05-18 02:33:52.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:52.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:52.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:52.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2715ms +2024-05-18 02:33:53.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:53.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:53.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:53.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3012ms +2024-05-18 02:33:53.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:53.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:53.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:53.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6149ms +2024-05-18 02:33:54.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:54.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:54.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:54.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1768ms +2024-05-18 02:33:54.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:54.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:54.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:54.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3735ms +2024-05-18 02:33:55.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:55.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:55.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:55.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5872ms +2024-05-18 02:33:56.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:56.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:56.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:56.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1009ms +2024-05-18 02:33:58.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:58.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:58.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:58.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1526ms +2024-05-18 02:33:58.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:33:58.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:58.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:33:58.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7312ms +2024-05-18 02:34:00.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:00.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:00.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:00.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.7431ms +2024-05-18 02:34:00.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:00.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:00.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 24.3388ms +2024-05-18 02:34:02.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:02.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:02.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:02.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7458ms +2024-05-18 02:34:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:03.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:03.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:03.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6407ms +2024-05-18 02:34:03.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:03.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:03.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:03.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7488ms +2024-05-18 02:34:06.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:06.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:06.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:06.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2772ms +2024-05-18 02:34:06.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:06.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:06.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:06.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1383ms +2024-05-18 02:34:07.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:07.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:07.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:07.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.998ms +2024-05-18 02:34:08.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:08.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:08.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:08.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7525ms +2024-05-18 02:34:08.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:08.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:08.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:08.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6367ms +2024-05-18 02:34:09.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:09.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:09.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:09.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8557ms +2024-05-18 02:34:09.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:09.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:09.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:09.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0226ms +2024-05-18 02:34:10.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:10.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:10.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:10.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8368ms +2024-05-18 02:34:11.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:11.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:11.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:11.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2343ms +2024-05-18 02:34:13.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:13.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:13.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:13.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1378ms +2024-05-18 02:34:13.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:13.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:13.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:13.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4821ms +2024-05-18 02:34:15.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:15.087 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:15.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:15.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4028ms +2024-05-18 02:34:15.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:15.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:15.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:15.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7713ms +2024-05-18 02:34:17.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:17.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:17.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:17.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8195ms +2024-05-18 02:34:18.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:18.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:18.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:18.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1208ms +2024-05-18 02:34:18.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:18.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:18.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:18.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0784ms +2024-05-18 02:34:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:21.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:21.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3485ms +2024-05-18 02:34:21.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:21.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:21.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:21.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7659ms +2024-05-18 02:34:22.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:22.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:22.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:22.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1814ms +2024-05-18 02:34:23.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:23.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:23.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:23.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3336ms +2024-05-18 02:34:23.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:23.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:23.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:23.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.839ms +2024-05-18 02:34:24.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:24.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:24.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:24.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6688ms +2024-05-18 02:34:24.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:24.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:24.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:24.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6341ms +2024-05-18 02:34:25.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:25.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:25.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:25.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9362ms +2024-05-18 02:34:26.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:26.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:26.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:26.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6937ms +2024-05-18 02:34:28.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:28.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:28.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:28.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6771ms +2024-05-18 02:34:28.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:28.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:28.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:28.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3747ms +2024-05-18 02:34:30.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:30.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:30.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:30.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1552ms +2024-05-18 02:34:30.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:30.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:30.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:30.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4148ms +2024-05-18 02:34:32.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:32.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:32.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:32.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8673ms +2024-05-18 02:34:33.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:33.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:33.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:33.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4142ms +2024-05-18 02:34:33.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:33.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:33.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:33.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9946ms +2024-05-18 02:34:36.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:36.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:36.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4056ms +2024-05-18 02:34:36.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:36.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:36.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:36.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1139ms +2024-05-18 02:34:37.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:37.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:37.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:37.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3281ms +2024-05-18 02:34:38.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:38.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:38.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:38.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.632ms +2024-05-18 02:34:38.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:38.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:38.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:38.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2012ms +2024-05-18 02:34:39.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:39.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:39.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:39.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5837ms +2024-05-18 02:34:39.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:39.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:39.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:39.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0496ms +2024-05-18 02:34:40.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:40.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:40.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:40.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8023ms +2024-05-18 02:34:41.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:41.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:41.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:41.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4048ms +2024-05-18 02:34:43.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:43.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:43.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:43.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4481ms +2024-05-18 02:34:43.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:43.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:43.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:43.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7596ms +2024-05-18 02:34:45.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:45.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:45.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:45.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8582ms +2024-05-18 02:34:45.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:45.113 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:45.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:45.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.1905ms +2024-05-18 02:34:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:47.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:47.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:47.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5317ms +2024-05-18 02:34:48.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:48.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:48.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:48.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2172ms +2024-05-18 02:34:48.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:48.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:48.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:48.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8765ms +2024-05-18 02:34:51.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:51.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:51.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:51.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1338ms +2024-05-18 02:34:51.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:51.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:51.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:51.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0395ms +2024-05-18 02:34:52.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:52.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:52.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:52.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.6737ms +2024-05-18 02:34:53.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:53.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:53.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:53.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0003ms +2024-05-18 02:34:53.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:53.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:53.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:53.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2257ms +2024-05-18 02:34:54.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:54.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:54.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9653ms +2024-05-18 02:34:54.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:54.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:54.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:54.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0052ms +2024-05-18 02:34:55.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:55.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:55.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:55.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3267ms +2024-05-18 02:34:56.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:56.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:56.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:56.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2873ms +2024-05-18 02:34:58.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:58.108 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:58.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:58.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8522ms +2024-05-18 02:34:58.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:34:58.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:58.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:34:58.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.415ms +2024-05-18 02:35:00.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:00.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:00.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:00.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1727ms +2024-05-18 02:35:00.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:00.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:00.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9338ms +2024-05-18 02:35:02.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:02.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:02.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:02.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.8871ms +2024-05-18 02:35:03.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:03.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:03.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:03.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.9229ms +2024-05-18 02:35:03.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:03.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:03.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:03.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9742ms +2024-05-18 02:35:06.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:06.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:06.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:06.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6112ms +2024-05-18 02:35:06.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:06.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:06.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:06.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7634ms +2024-05-18 02:35:07.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:07.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:07.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:07.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9242ms +2024-05-18 02:35:08.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:08.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:08.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:08.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 159.0159ms +2024-05-18 02:35:08.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:08.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:08.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:08.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5071ms +2024-05-18 02:35:09.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:09.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:09.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:09.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.934ms +2024-05-18 02:35:09.378 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:09.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:09.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:09.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9254ms +2024-05-18 02:35:10.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:10.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:10.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:10.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.5921ms +2024-05-18 02:35:11.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:11.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:11.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:11.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4506ms +2024-05-18 02:35:13.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:13.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:13.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:13.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9705ms +2024-05-18 02:35:13.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:13.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:13.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:13.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7665ms +2024-05-18 02:35:15.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:15.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:15.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:15.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5553ms +2024-05-18 02:35:15.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:15.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:15.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:15.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1578ms +2024-05-18 02:35:17.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:17.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:17.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:17.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2191ms +2024-05-18 02:35:18.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:18.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:18.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:18.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5145ms +2024-05-18 02:35:18.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:18.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:18.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:18.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5382ms +2024-05-18 02:35:21.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:21.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:21.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:21.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0279ms +2024-05-18 02:35:21.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:21.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:21.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:21.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0709ms +2024-05-18 02:35:22.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:22.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:22.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:22.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0537ms +2024-05-18 02:35:23.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:23.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:23.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:23.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2144ms +2024-05-18 02:35:23.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:23.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:23.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:23.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.54ms +2024-05-18 02:35:24.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:24.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:24.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:24.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3724ms +2024-05-18 02:35:24.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:24.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:24.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:24.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.8712ms +2024-05-18 02:35:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:25.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:25.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:25.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.8113ms +2024-05-18 02:35:26.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:26.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:26.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:26.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4467ms +2024-05-18 02:35:28.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:28.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:28.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:28.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4373ms +2024-05-18 02:35:28.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:28.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:28.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:28.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6941ms +2024-05-18 02:35:30.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:30.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:30.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:30.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5981ms +2024-05-18 02:35:30.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:30.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:30.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:30.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.005ms +2024-05-18 02:35:32.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:32.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:32.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:32.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.0727ms +2024-05-18 02:35:33.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:33.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:33.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:33.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.745ms +2024-05-18 02:35:33.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:33.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:33.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:33.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8618ms +2024-05-18 02:35:36.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:36.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:36.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:36.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7248ms +2024-05-18 02:35:36.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:36.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:36.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:36.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0103ms +2024-05-18 02:35:37.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:37.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:37.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4453ms +2024-05-18 02:35:38.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:38.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:38.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:38.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9214ms +2024-05-18 02:35:38.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:38.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:38.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:38.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7545ms +2024-05-18 02:35:39.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:39.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:39.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2696ms +2024-05-18 02:35:39.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:39.377 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:39.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:39.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6369ms +2024-05-18 02:35:40.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:40.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:40.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:40.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5487ms +2024-05-18 02:35:41.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:41.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:41.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:41.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5212ms +2024-05-18 02:35:43.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:43.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:43.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:43.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0414ms +2024-05-18 02:35:43.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:43.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:43.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:43.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0011ms +2024-05-18 02:35:45.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:45.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:45.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:45.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2703ms +2024-05-18 02:35:45.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:45.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:45.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:45.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7045ms +2024-05-18 02:35:47.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:47.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:47.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:47.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5494ms +2024-05-18 02:35:48.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:48.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:48.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:48.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4231ms +2024-05-18 02:35:48.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:48.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:48.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:48.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4154ms +2024-05-18 02:35:51.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:51.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:51.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:51.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3526ms +2024-05-18 02:35:51.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:51.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:51.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:51.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4833ms +2024-05-18 02:35:52.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:52.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:52.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:52.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0974ms +2024-05-18 02:35:53.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:53.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:53.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:53.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 45.1089ms +2024-05-18 02:35:53.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:53.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:53.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:53.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.328ms +2024-05-18 02:35:54.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:54.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:54.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:54.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4574ms +2024-05-18 02:35:54.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:54.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:54.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:54.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3234ms +2024-05-18 02:35:55.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:55.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:55.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:55.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7494ms +2024-05-18 02:35:56.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:56.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:56.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:56.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2091ms +2024-05-18 02:35:58.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:58.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:58.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:58.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1402ms +2024-05-18 02:35:58.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:35:58.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:58.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:35:58.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1415ms +2024-05-18 02:36:00.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:00.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:00.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:00.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8594ms +2024-05-18 02:36:00.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:00.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:00.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:00.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6516ms +2024-05-18 02:36:02.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:02.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:02.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:02.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4834ms +2024-05-18 02:36:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:03.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:03.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:03.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1026ms +2024-05-18 02:36:03.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:03.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:03.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:03.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0873ms +2024-05-18 02:36:06.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:06.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:06.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:06.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.895ms +2024-05-18 02:36:06.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:06.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:06.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:06.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5948ms +2024-05-18 02:36:07.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:07.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:07.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:07.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4787ms +2024-05-18 02:36:08.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:08.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:08.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:08.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1054ms +2024-05-18 02:36:08.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:08.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:08.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:08.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4844ms +2024-05-18 02:36:09.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:09.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:09.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:09.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.4408ms +2024-05-18 02:36:09.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:09.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:09.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:09.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.157ms +2024-05-18 02:36:10.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:10.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:10.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:10.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7318ms +2024-05-18 02:36:11.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:11.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:11.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:11.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5133ms +2024-05-18 02:36:13.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:13.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:13.151 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:13.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.8344ms +2024-05-18 02:36:13.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:13.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:13.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:13.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.5018ms +2024-05-18 02:36:15.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:15.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:15.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:15.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7558ms +2024-05-18 02:36:15.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:15.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:15.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:15.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2447ms +2024-05-18 02:36:17.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:17.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:17.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:17.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1591ms +2024-05-18 02:36:18.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:18.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:18.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:18.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1941ms +2024-05-18 02:36:18.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:18.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:18.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:18.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4469ms +2024-05-18 02:36:21.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:21.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:21.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:21.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.7812ms +2024-05-18 02:36:21.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:21.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:21.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:21.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3069ms +2024-05-18 02:36:22.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:22.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:22.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.914ms +2024-05-18 02:36:23.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:23.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:23.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:23.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9785ms +2024-05-18 02:36:23.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:23.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:23.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:23.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.38ms +2024-05-18 02:36:24.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:24.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:24.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:24.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7346ms +2024-05-18 02:36:24.377 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:24.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:24.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:24.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.5774ms +2024-05-18 02:36:25.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:25.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:25.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:25.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9642ms +2024-05-18 02:36:26.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:26.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:26.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:26.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5079ms +2024-05-18 02:36:28.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:28.109 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:28.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:28.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4434ms +2024-05-18 02:36:28.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:28.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:28.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:28.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2124ms +2024-05-18 02:36:30.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:30.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:30.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:30.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.8669ms +2024-05-18 02:36:30.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:30.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:30.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:30.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.535ms +2024-05-18 02:36:32.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:32.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:32.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8186ms +2024-05-18 02:36:33.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:33.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:33.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:33.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5594ms +2024-05-18 02:36:33.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:33.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:33.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:33.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3167ms +2024-05-18 02:36:34.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:34.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:34.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:34.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0393ms +2024-05-18 02:36:34.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:34.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:34.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:34.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8115ms +2024-05-18 02:36:35.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:35.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:35.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:35.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9562ms +2024-05-18 02:36:35.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:35.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:35.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:35.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3257ms +2024-05-18 02:36:36.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:36.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:36.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:36.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8373ms +2024-05-18 02:36:36.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:36.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:36.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:36.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0052ms +2024-05-18 02:36:37.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:37.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:37.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:37.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6092ms +2024-05-18 02:36:38.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:38.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:38.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:38.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.454ms +2024-05-18 02:36:38.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:38.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:38.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:38.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7881ms +2024-05-18 02:36:39.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:39.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:39.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:39.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6018ms +2024-05-18 02:36:39.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:39.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:39.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:39.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5816ms +2024-05-18 02:36:40.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:40.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:40.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:40.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1043ms +2024-05-18 02:36:41.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:41.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:41.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:41.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5727ms +2024-05-18 02:36:43.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:43.109 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:43.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:43.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0203ms +2024-05-18 02:36:43.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:43.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:43.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:43.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3793ms +2024-05-18 02:36:45.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:45.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:45.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:45.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7201ms +2024-05-18 02:36:45.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:45.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:45.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:45.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3191ms +2024-05-18 02:36:47.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:47.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:47.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:47.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2113ms +2024-05-18 02:36:48.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:48.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:48.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:48.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0238ms +2024-05-18 02:36:48.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:48.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:49.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:49.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.174ms +2024-05-18 02:36:49.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:36:49.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:49.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:36:49.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7459ms +2024-05-18 02:37:04.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:04.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:04.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:04.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.388ms +2024-05-18 02:37:19.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:19.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:19.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:19.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1933ms +2024-05-18 02:37:33.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:33.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:33.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:33.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4441ms +2024-05-18 02:37:33.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:33.967 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:33.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:33.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4663ms +2024-05-18 02:37:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:39.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:39.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.216ms +2024-05-18 02:37:39.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:39.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:39.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:39.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4471ms +2024-05-18 02:37:40.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:40.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:40.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:40.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1704ms +2024-05-18 02:37:40.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:40.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:40.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:40.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1818ms +2024-05-18 02:37:48.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:48.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:48.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:48.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4113ms +2024-05-18 02:37:54.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:54.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:54.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:54.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6861ms +2024-05-18 02:37:55.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:55.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.718ms +2024-05-18 02:37:55.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:55.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0086ms +2024-05-18 02:37:55.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:37:55.773 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:37:55.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.7521ms +2024-05-18 02:38:00.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:38:00.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:00.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:00.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5286ms +2024-05-18 02:38:00.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:38:00.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:00.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:00.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7193ms +2024-05-18 02:38:15.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:38:15.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:15.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:15.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0496ms +2024-05-18 02:38:30.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:38:30.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:30.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:30.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2117ms +2024-05-18 02:38:45.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:38:45.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:45.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:38:45.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.0184ms +2024-05-18 02:39:00.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:00.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:00.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:00.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2315ms +2024-05-18 02:39:15.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:15.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:15.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:15.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0507ms +2024-05-18 02:39:30.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:30.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:30.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:30.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6105ms +2024-05-18 02:39:45.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:45.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:45.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:45.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.4643ms +2024-05-18 02:39:57.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:57.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:57.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:57.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.9158ms +2024-05-18 02:39:57.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:39:57.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:57.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:39:57.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3665ms +2024-05-18 02:40:12.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:40:12.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:12.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:12.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8782ms +2024-05-18 02:40:19.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:40:19.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:19.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:19.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2463ms +2024-05-18 02:40:19.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:40:19.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:19.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:19.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2085ms +2024-05-18 02:40:34.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:40:34.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:34.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:34.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5708ms +2024-05-18 02:40:49.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:40:49.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:49.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:40:49.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5138ms +2024-05-18 02:41:00.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:00.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:00.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:00.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0971ms +2024-05-18 02:41:00.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:00.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:00.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:00.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.0931ms +2024-05-18 02:41:15.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:15.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:15.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:15.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0117ms +2024-05-18 02:41:26.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:26.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:26.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:26.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1428ms +2024-05-18 02:41:26.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:26.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:26.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:26.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7689ms +2024-05-18 02:41:35.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:35.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:35.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:35.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7588ms +2024-05-18 02:41:35.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 02:41:35.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:35.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:41:35.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7944ms +2024-05-18 02:42:05.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:42:05.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:05.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:05.778 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:42:05.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 57.5197ms +2024-05-18 02:42:05.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:42:05.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:05.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:05.822 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:42:05.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.9007ms +2024-05-18 02:42:20.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:42:20.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:20.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:20.823 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:42:20.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9229ms +2024-05-18 02:42:35.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:42:35.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:35.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:35.833 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:42:35.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 37.0036ms +2024-05-18 02:42:50.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:42:50.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:50.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:42:50.823 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:42:50.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.1859ms +2024-05-18 02:43:05.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:05.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:05.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:05.825 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:05.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.5771ms +2024-05-18 02:43:13.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:13.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:13.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:13.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:13.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4378ms +2024-05-18 02:43:13.359 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:13.360 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:13.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:13.390 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:13.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.0811ms +2024-05-18 02:43:20.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:20.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:20.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:20.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:20.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.4292ms +2024-05-18 02:43:20.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:20.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:20.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:20.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:20.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.8742ms +2024-05-18 02:43:26.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:26.285 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:26.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:26.316 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:26.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.9043ms +2024-05-18 02:43:26.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:26.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:26.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:26.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:26.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1249ms +2024-05-18 02:43:41.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:41.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:41.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:41.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:41.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1476ms +2024-05-18 02:43:56.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:43:56.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:56.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:43:56.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:43:56.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.7998ms +2024-05-18 02:44:11.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:44:11.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:11.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:11.357 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:44:11.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.8738ms +2024-05-18 02:44:26.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:44:26.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:26.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:26.359 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:44:26.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.3906ms +2024-05-18 02:44:41.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:44:41.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:41.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:41.355 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:44:41.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.5738ms +2024-05-18 02:44:56.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:44:56.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:56.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:44:56.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:44:56.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8494ms +2024-05-18 02:45:04.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:04.854 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:04.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:04.884 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:04.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.7629ms +2024-05-18 02:45:04.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:04.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:04.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:04.927 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:04.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.3594ms +2024-05-18 02:45:09.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:09.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:09.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:09.378 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:09.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2194ms +2024-05-18 02:45:09.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:09.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:09.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:09.410 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:09.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.79ms +2024-05-18 02:45:15.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:15.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:15.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:15.821 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:15.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8665ms +2024-05-18 02:45:15.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:15.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:15.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:15.861 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:15.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.554ms +2024-05-18 02:45:24.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:24.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:24.416 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:24.418 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:24.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.0532ms +2024-05-18 02:45:30.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:30.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:30.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:30.856 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:30.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1391ms +2024-05-18 02:45:39.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:39.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:39.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:39.420 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:39.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.2901ms +2024-05-18 02:45:45.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:45.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:45.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:45.855 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:45.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2592ms +2024-05-18 02:45:54.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:45:54.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:54.416 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:45:54.417 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:45:54.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.9395ms +2024-05-18 02:46:00.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:00.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:00.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:00.861 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:00.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7208ms +2024-05-18 02:46:05.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:05.003 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:05.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:05.032 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:05.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.8725ms +2024-05-18 02:46:05.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:05.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:05.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:05.072 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:05.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.4772ms +2024-05-18 02:46:09.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:09.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:09.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:09.418 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:09.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.3406ms +2024-05-18 02:46:13.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:13.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:13.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:13.029 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:13.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4345ms +2024-05-18 02:46:13.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:13.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:13.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:13.095 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:13.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8334ms +2024-05-18 02:46:15.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:15.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:15.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:15.864 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:15.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.8094ms +2024-05-18 02:46:20.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:20.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:20.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:20.065 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:20.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.3378ms +2024-05-18 02:46:24.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:24.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:24.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:24.412 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:24.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.0133ms +2024-05-18 02:46:28.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:28.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:28.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:28.091 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:28.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.7866ms +2024-05-18 02:46:30.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:30.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:30.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:30.859 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:30.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.46ms +2024-05-18 02:46:35.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:35.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:35.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:35.073 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:35.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.3891ms +2024-05-18 02:46:39.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:39.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:39.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:39.416 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:39.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.8698ms +2024-05-18 02:46:43.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:43.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:43.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:43.095 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:43.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.3891ms +2024-05-18 02:46:45.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:45.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:45.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:45.860 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:45.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9387ms +2024-05-18 02:46:50.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:50.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:50.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:50.073 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:50.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9219ms +2024-05-18 02:46:54.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:54.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:54.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:54.414 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:54.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.6867ms +2024-05-18 02:46:58.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:46:58.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:58.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:46:58.093 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:46:58.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7932ms +2024-05-18 02:47:00.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:00.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:00.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:00.861 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:00.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.6789ms +2024-05-18 02:47:05.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:05.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:05.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:05.072 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:05.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.5117ms +2024-05-18 02:47:09.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:09.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:09.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:09.409 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:09.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2754ms +2024-05-18 02:47:13.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:13.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:13.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:13.093 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:13.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.2397ms +2024-05-18 02:47:15.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:15.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:15.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:15.857 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:15.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.0207ms +2024-05-18 02:47:20.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:20.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:20.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:20.072 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:20.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.0133ms +2024-05-18 02:47:24.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:24.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:24.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:24.409 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:24.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.1986ms +2024-05-18 02:47:28.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:28.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:28.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:28.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:28.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.0801ms +2024-05-18 02:47:30.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:30.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:30.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:30.860 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:30.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.0236ms +2024-05-18 02:47:35.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:35.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:35.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:35.070 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:35.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.9171ms +2024-05-18 02:47:36.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:36.860 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:36.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:36.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:36.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 53.9482ms +2024-05-18 02:47:37.375 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:37.376 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:37.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:37.408 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:37.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.2427ms +2024-05-18 02:47:51.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:47:51.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:51.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:47:51.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:47:51.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.6117ms +2024-05-18 02:48:06.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:06.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:06.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:06.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:06.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.0546ms +2024-05-18 02:48:07.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:07.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:07.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:07.259 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:07.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.7869ms +2024-05-18 02:48:07.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:07.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:07.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:07.301 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:07.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.0672ms +2024-05-18 02:48:18.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:18.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:18.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:18.452 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:18.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.1312ms +2024-05-18 02:48:18.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:18.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:18.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:18.501 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:18.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.4539ms +2024-05-18 02:48:21.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:21.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:21.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:21.985 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:21.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.1493ms +2024-05-18 02:48:22.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:22.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:22.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:22.463 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:22.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 61.3823ms +2024-05-18 02:48:22.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:22.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:22.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:22.496 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:22.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.5725ms +2024-05-18 02:48:23.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:23.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:23.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:23.929 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:23.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.4503ms +2024-05-18 02:48:23.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:23.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:23.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:23.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:23.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.2876ms +2024-05-18 02:48:30.192 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:30.193 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:30.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:30.222 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:30.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0246ms +2024-05-18 02:48:30.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:30.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:30.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:30.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:30.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.463ms +2024-05-18 02:48:35.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:35.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:35.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:35.073 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:35.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.9782ms +2024-05-18 02:48:35.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:35.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:35.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:35.103 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:35.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.8669ms +2024-05-18 02:48:36.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:36.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:36.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:36.359 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:36.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.1435ms +2024-05-18 02:48:36.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:36.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:37.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:37.138 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:37.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 435.9198ms +2024-05-18 02:48:39.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:39.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:39.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:39.901 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:39.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.0623ms +2024-05-18 02:48:39.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:39.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:39.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:39.940 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:39.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.6981ms +2024-05-18 02:48:50.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:50.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:50.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:50.103 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:50.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.5741ms +2024-05-18 02:48:51.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:51.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:51.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:51.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:51.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.058ms +2024-05-18 02:48:54.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:48:54.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:54.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:48:54.939 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:48:54.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.4527ms +2024-05-18 02:49:05.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:05.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:05.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:05.108 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:05.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1723ms +2024-05-18 02:49:06.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:06.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:06.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:06.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:06.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8927ms +2024-05-18 02:49:09.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:09.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:09.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:09.942 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:09.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.007ms +2024-05-18 02:49:20.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:20.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:20.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:20.111 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:20.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.928ms +2024-05-18 02:49:21.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:21.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:21.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:21.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:21.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0208ms +2024-05-18 02:49:24.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:24.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:24.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:24.940 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:24.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.2372ms +2024-05-18 02:49:35.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:35.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:35.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:35.104 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:35.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.4465ms +2024-05-18 02:49:36.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:36.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:36.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:36.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:36.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1648ms +2024-05-18 02:49:39.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:39.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:39.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:39.936 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:39.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.3367ms +2024-05-18 02:49:50.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:50.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:50.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:50.111 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:50.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.1243ms +2024-05-18 02:49:51.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:51.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:51.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:51.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:51.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.4352ms +2024-05-18 02:49:54.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:49:54.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:54.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:49:54.942 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:49:54.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.5078ms +2024-05-18 02:50:05.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:05.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:05.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:05.104 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:05.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1689ms +2024-05-18 02:50:06.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:06.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:06.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:06.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:06.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.1987ms +2024-05-18 02:50:09.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:09.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:09.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:09.939 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:09.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.5352ms +2024-05-18 02:50:20.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:20.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:20.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:20.103 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:20.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.6034ms +2024-05-18 02:50:21.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:21.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:21.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:21.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:21.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1009ms +2024-05-18 02:50:23.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:23.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:23.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:23.487 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:23.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.596ms +2024-05-18 02:50:23.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:23.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:23.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:23.521 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:23.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.9774ms +2024-05-18 02:50:24.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:24.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:24.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:24.934 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:24.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.9449ms +2024-05-18 02:50:35.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:35.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:35.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:35.112 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:35.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.5997ms +2024-05-18 02:50:36.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:36.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:36.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:36.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:36.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.9137ms +2024-05-18 02:50:38.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:38.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:38.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:38.522 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:38.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.8035ms +2024-05-18 02:50:39.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:39.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:39.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:39.934 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:39.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.1048ms +2024-05-18 02:50:50.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:50.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:50.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:50.109 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:50.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7882ms +2024-05-18 02:50:51.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:51.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:51.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:51.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:51.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.6371ms +2024-05-18 02:50:53.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:53.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:53.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:53.528 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:53.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 37.6809ms +2024-05-18 02:50:54.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:50:54.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:54.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:50:54.941 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:50:54.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.4779ms +2024-05-18 02:51:01.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:01.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:01.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:01.319 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:01.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1264ms +2024-05-18 02:51:01.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:01.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:01.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:01.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:01.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.133ms +2024-05-18 02:51:05.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:05.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:05.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:05.111 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:05.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.2394ms +2024-05-18 02:51:06.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:06.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:06.390 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:06.390 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:06.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.176ms +2024-05-18 02:51:08.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:08.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:08.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:08.534 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:08.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 38.2856ms +2024-05-18 02:51:09.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:09.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:09.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:09.940 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:09.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3588ms +2024-05-18 02:51:16.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:16.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:16.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:16.357 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:16.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.2105ms +2024-05-18 02:51:20.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:20.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:20.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:20.108 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:20.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2794ms +2024-05-18 02:51:21.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:21.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:21.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:21.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:21.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.3952ms +2024-05-18 02:51:23.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:23.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:23.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:23.523 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:23.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.0464ms +2024-05-18 02:51:24.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:24.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:24.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:24.933 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:24.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.9866ms +2024-05-18 02:51:31.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:31.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:31.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:31.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:31.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.1812ms +2024-05-18 02:51:35.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:35.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:35.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:35.101 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:35.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.1235ms +2024-05-18 02:51:36.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:36.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:36.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:36.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:36.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.8845ms +2024-05-18 02:51:38.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:38.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:38.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:38.522 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:38.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.7125ms +2024-05-18 02:51:39.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:39.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:39.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:39.941 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:39.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0073ms +2024-05-18 02:51:46.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:46.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:46.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:46.360 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:46.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.4975ms +2024-05-18 02:51:50.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:50.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:50.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:50.105 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:50.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.3148ms +2024-05-18 02:51:51.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:51.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:51.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:51.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:51.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.0943ms +2024-05-18 02:51:53.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:53.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:53.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:53.526 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:53.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0044ms +2024-05-18 02:51:55.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:55.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:55.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:55.210 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:55.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8792ms +2024-05-18 02:51:55.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:51:55.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:55.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:51:55.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:51:55.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2593ms +2024-05-18 02:52:10.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:52:10.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:10.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:10.252 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:52:10.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.8419ms +2024-05-18 02:52:25.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:52:25.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:25.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:25.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:52:25.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 26.6289ms +2024-05-18 02:52:40.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:52:40.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:40.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:40.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:52:40.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.5777ms +2024-05-18 02:52:55.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:52:55.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:55.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:52:55.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:52:55.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.0183ms +2024-05-18 02:53:10.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:53:10.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:10.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:10.242 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:53:10.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.6767ms +2024-05-18 02:53:25.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:53:25.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:25.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:25.254 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:53:25.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 39.7776ms +2024-05-18 02:53:40.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:53:40.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:40.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:40.258 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:53:40.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.8667ms +2024-05-18 02:53:54.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:53:54.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:54.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:54.863 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:53:54.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.2611ms +2024-05-18 02:53:55.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:53:55.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:55.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:53:55.215 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:53:55.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3664ms +2024-05-18 02:54:04.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:04.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:04.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:04.557 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:04.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.0646ms +2024-05-18 02:54:05.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:05.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:05.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:05.076 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:05.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 36.738ms +2024-05-18 02:54:19.562 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:19.562 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:19.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:19.592 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:19.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.5365ms +2024-05-18 02:54:34.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:34.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:34.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:34.595 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:34.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.4394ms +2024-05-18 02:54:47.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:47.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:47.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:47.099 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:47.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 33.5944ms +2024-05-18 02:54:47.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:47.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:47.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:47.137 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:47.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.7276ms +2024-05-18 02:54:48.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:48.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:48.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:48.757 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:48.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.1115ms +2024-05-18 02:54:49.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:54:49.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:49.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:54:49.157 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:54:49.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.3571ms +2024-05-18 02:55:03.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:03.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:03.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:03.788 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:03.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.1303ms +2024-05-18 02:55:18.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:18.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:18.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:18.791 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:18.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1397ms +2024-05-18 02:55:27.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:27.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:27.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:27.989 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:27.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.1489ms +2024-05-18 02:55:28.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:28.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:28.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:28.336 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:28.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.6792ms +2024-05-18 02:55:42.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:42.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:43.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:43.025 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:43.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.3536ms +2024-05-18 02:55:57.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:55:57.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:58.024 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:55:58.025 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:55:58.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8017ms +2024-05-18 02:56:04.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:04.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:04.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:04.129 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:04.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0498ms +2024-05-18 02:56:04.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:04.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:04.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:04.518 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:04.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.7943ms +2024-05-18 02:56:19.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:19.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:19.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:19.166 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:19.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.8216ms +2024-05-18 02:56:34.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:34.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:34.158 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:34.159 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:34.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1404ms +2024-05-18 02:56:49.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:49.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:49.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:49.169 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:49.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 32.9858ms +2024-05-18 02:56:50.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:50.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:50.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:50.235 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:50.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.2453ms +2024-05-18 02:56:50.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:56:50.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:50.420 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:56:50.421 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:56:50.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0469ms +2024-05-18 02:57:05.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:57:05.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:57:05.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:57:05.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:57:05.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.2946ms +2024-05-18 02:57:05.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 02:57:05.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:57:05.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 02:57:05.515 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 02:57:05.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.4735ms +2024-05-18 03:19:50.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:50.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:50.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:50.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0642ms +2024-05-18 03:19:50.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:50.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:50.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:50.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.0715ms +2024-05-18 03:19:53.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:53.756 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:53.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:53.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2722ms +2024-05-18 03:19:53.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:53.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:53.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:53.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2872ms +2024-05-18 03:19:55.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:55.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:55.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:55.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4177ms +2024-05-18 03:19:55.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:19:55.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:55.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:19:55.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.1951ms +2024-05-18 03:20:05.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:05.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:05.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:05.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5645ms +2024-05-18 03:20:08.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:08.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:08.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:08.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.7652ms +2024-05-18 03:20:10.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:10.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:10.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:10.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2756ms +2024-05-18 03:20:20.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:20.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:20.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:20.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.8535ms +2024-05-18 03:20:23.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:23.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:23.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:23.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3996ms +2024-05-18 03:20:25.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:25.618 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:25.646 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:25.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7259ms +2024-05-18 03:20:35.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:35.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:35.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:35.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6359ms +2024-05-18 03:20:38.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:38.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:38.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:38.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4623ms +2024-05-18 03:20:40.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:40.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:40.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:40.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6943ms +2024-05-18 03:20:50.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:50.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:50.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:50.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8056ms +2024-05-18 03:20:53.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:53.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:53.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:53.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2728ms +2024-05-18 03:20:55.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:20:55.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:55.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:20:55.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.3577ms +2024-05-18 03:21:05.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:05.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:05.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:05.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0591ms +2024-05-18 03:21:08.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:08.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:08.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:08.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5718ms +2024-05-18 03:21:10.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:10.615 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:10.645 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:10.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0036ms +2024-05-18 03:21:20.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:20.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:20.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:20.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2875ms +2024-05-18 03:21:23.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:23.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:23.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:23.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7203ms +2024-05-18 03:21:25.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:25.617 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:25.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:25.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.8644ms +2024-05-18 03:21:35.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:35.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:35.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:35.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.8718ms +2024-05-18 03:21:38.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:38.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:38.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:38.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5937ms +2024-05-18 03:21:40.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:40.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:40.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:40.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2946ms +2024-05-18 03:21:54.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:54.158 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:54.186 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:54.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5581ms +2024-05-18 03:21:54.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:21:54.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:54.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:21:54.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5139ms +2024-05-18 03:22:09.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:22:09.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:09.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:09.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5661ms +2024-05-18 03:22:24.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:22:24.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:24.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:24.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.074ms +2024-05-18 03:22:39.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:22:39.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:39.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:39.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5639ms +2024-05-18 03:22:54.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:22:54.193 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:54.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:22:54.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3633ms +2024-05-18 03:23:06.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:06.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:06.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:06.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4249ms +2024-05-18 03:23:06.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:06.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:06.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:06.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4725ms +2024-05-18 03:23:08.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:08.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:08.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:08.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0106ms +2024-05-18 03:23:08.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:08.860 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:08.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:08.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.1981ms +2024-05-18 03:23:09.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:09.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1085ms +2024-05-18 03:23:09.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:09.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4708ms +2024-05-18 03:23:09.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:09.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:09.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9016ms +2024-05-18 03:23:21.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:21.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:21.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:21.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6718ms +2024-05-18 03:23:23.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:23.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:23.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:23.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6222ms +2024-05-18 03:23:24.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:24.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:24.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5618ms +2024-05-18 03:23:24.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:24.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:24.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:24.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5799ms +2024-05-18 03:23:25.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:25.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:25.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:25.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 67.8016ms +2024-05-18 03:23:26.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:26.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:26.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:26.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8325ms +2024-05-18 03:23:36.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:36.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:36.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:36.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.926ms +2024-05-18 03:23:38.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:38.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:38.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:38.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7372ms +2024-05-18 03:23:38.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:38.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:38.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:38.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7918ms +2024-05-18 03:23:39.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:39.192 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:39.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:39.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2869ms +2024-05-18 03:23:39.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:39.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:39.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:39.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2941ms +2024-05-18 03:23:40.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:40.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:40.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:40.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7174ms +2024-05-18 03:23:51.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:51.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:51.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:51.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8149ms +2024-05-18 03:23:53.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:53.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:53.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:53.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.7905ms +2024-05-18 03:23:54.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:54.192 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:54.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:54.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8623ms +2024-05-18 03:23:54.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:54.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:54.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:54.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3687ms +2024-05-18 03:23:55.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:23:55.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:55.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:23:55.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8335ms +2024-05-18 03:24:06.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:06.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:06.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:06.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5084ms +2024-05-18 03:24:08.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:08.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:08.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:08.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0952ms +2024-05-18 03:24:09.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:09.192 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:09.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:09.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7861ms +2024-05-18 03:24:09.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:09.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:09.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:09.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9051ms +2024-05-18 03:24:10.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:10.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:10.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:10.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6503ms +2024-05-18 03:24:21.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:21.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:21.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:21.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0464ms +2024-05-18 03:24:23.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:23.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:23.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:23.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4768ms +2024-05-18 03:24:24.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:24.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:24.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:24.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6624ms +2024-05-18 03:24:24.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:24.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:24.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:24.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8549ms +2024-05-18 03:24:25.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:25.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:25.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:25.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8821ms +2024-05-18 03:24:36.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:36.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:36.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:36.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3105ms +2024-05-18 03:24:38.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:38.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:38.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:38.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1492ms +2024-05-18 03:24:39.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:39.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:39.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:39.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2605ms +2024-05-18 03:24:39.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:39.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:39.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:39.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4861ms +2024-05-18 03:24:40.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:40.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:40.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:40.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8111ms +2024-05-18 03:24:51.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:51.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:51.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:51.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4766ms +2024-05-18 03:24:53.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:53.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:53.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:53.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7187ms +2024-05-18 03:24:54.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:54.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:54.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3592ms +2024-05-18 03:24:54.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:54.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:54.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:54.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7247ms +2024-05-18 03:24:55.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:24:55.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:55.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:24:55.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.971ms +2024-05-18 03:25:06.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:06.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:06.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:06.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0766ms +2024-05-18 03:25:08.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:08.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:08.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:08.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9201ms +2024-05-18 03:25:09.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:09.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:09.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:09.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6701ms +2024-05-18 03:25:09.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:09.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:09.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:09.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.819ms +2024-05-18 03:25:10.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:10.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:10.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:10.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2937ms +2024-05-18 03:25:21.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:21.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:21.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:21.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.4272ms +2024-05-18 03:25:23.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:23.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:23.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:23.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6579ms +2024-05-18 03:25:24.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:24.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:24.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:24.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4876ms +2024-05-18 03:25:24.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:24.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:24.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:24.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0068ms +2024-05-18 03:25:25.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:25.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:25.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:25.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1554ms +2024-05-18 03:25:36.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:36.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:36.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:36.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8573ms +2024-05-18 03:25:37.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:37.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:37.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:37.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.1473ms +2024-05-18 03:25:38.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:38.859 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:38.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:38.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2918ms +2024-05-18 03:25:39.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:39.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:39.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:39.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2392ms +2024-05-18 03:25:39.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:39.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:39.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:39.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0826ms +2024-05-18 03:25:40.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:40.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:40.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:40.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9535ms +2024-05-18 03:25:51.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:51.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:51.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:51.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3547ms +2024-05-18 03:25:53.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:53.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:53.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:53.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4697ms +2024-05-18 03:25:53.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:25:53.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:53.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:25:53.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1189ms +2024-05-18 03:26:08.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:26:08.717 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:09.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:09.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 421.4921ms +2024-05-18 03:26:18.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:26:18.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:18.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:18.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9853ms +2024-05-18 03:26:19.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:26:19.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:19.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:19.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6638ms +2024-05-18 03:26:33.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:26:33.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:33.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:33.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5004ms +2024-05-18 03:26:48.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:26:48.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:48.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:26:48.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9666ms +2024-05-18 03:27:03.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:03.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:03.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:03.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2365ms +2024-05-18 03:27:18.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:18.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:18.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:18.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7302ms +2024-05-18 03:27:33.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:33.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:33.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:33.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3251ms +2024-05-18 03:27:42.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:42.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:42.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:42.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7177ms +2024-05-18 03:27:42.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:42.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:42.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:42.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2166ms +2024-05-18 03:27:48.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:48.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:48.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:48.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5997ms +2024-05-18 03:27:52.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:52.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:52.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:52.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1255ms +2024-05-18 03:27:52.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:52.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:52.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:52.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5426ms +2024-05-18 03:27:55.718 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:55.719 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:55.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:55.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9157ms +2024-05-18 03:27:55.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:55.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:55.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:55.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6522ms +2024-05-18 03:27:57.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:57.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:57.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:57.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1391ms +2024-05-18 03:27:59.774 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:59.775 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:59.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:59.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0587ms +2024-05-18 03:27:59.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:27:59.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:59.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:27:59.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7781ms +2024-05-18 03:28:03.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:03.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:03.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:03.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5575ms +2024-05-18 03:28:05.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:05.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:05.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:05.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6617ms +2024-05-18 03:28:05.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:05.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:05.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:05.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0782ms +2024-05-18 03:28:07.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:07.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:07.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:07.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1253ms +2024-05-18 03:28:10.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:10.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:10.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:10.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2894ms +2024-05-18 03:28:12.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:12.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:12.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:12.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7072ms +2024-05-18 03:28:14.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:14.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:14.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:14.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4244ms +2024-05-18 03:28:18.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:18.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:18.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:18.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6554ms +2024-05-18 03:28:20.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:20.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:20.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:20.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5217ms +2024-05-18 03:28:22.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:22.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:22.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:22.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2037ms +2024-05-18 03:28:25.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:25.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:25.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:25.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.286ms +2024-05-18 03:28:25.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:25.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:25.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:25.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8283ms +2024-05-18 03:28:40.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:40.087 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:40.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:40.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2115ms +2024-05-18 03:28:55.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:28:55.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:55.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:28:55.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3168ms +2024-05-18 03:29:10.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:29:10.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:10.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:10.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9559ms +2024-05-18 03:29:25.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:29:25.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:25.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:25.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5656ms +2024-05-18 03:29:40.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:29:40.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:40.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:40.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8287ms +2024-05-18 03:29:55.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:29:55.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:55.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:29:55.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2266ms +2024-05-18 03:30:10.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:30:10.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:10.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:10.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2867ms +2024-05-18 03:30:18.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:30:18.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:18.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:18.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2703ms +2024-05-18 03:30:18.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:30:18.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:18.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:18.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1183ms +2024-05-18 03:30:33.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:30:33.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:33.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:33.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0573ms +2024-05-18 03:30:48.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:30:48.103 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:48.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:30:48.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3313ms +2024-05-18 03:31:03.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:31:03.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:03.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:03.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0793ms +2024-05-18 03:31:18.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:31:18.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:18.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:18.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9038ms +2024-05-18 03:31:21.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:31:21.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:21.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:21.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.3143ms +2024-05-18 03:31:22.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:31:22.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:22.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:22.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6123ms +2024-05-18 03:31:54.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:31:54.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:54.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:54.865 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:31:54.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.9148ms +2024-05-18 03:31:54.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:31:54.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:54.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:31:54.895 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:31:54.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.4289ms +2024-05-18 03:32:09.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:32:09.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:09.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:09.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:32:09.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.0594ms +2024-05-18 03:32:24.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:32:24.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:24.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:24.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:32:24.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.0287ms +2024-05-18 03:32:39.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:32:39.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:39.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:39.904 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:32:39.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.9422ms +2024-05-18 03:32:54.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:32:54.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:54.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:32:54.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:32:54.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.8152ms +2024-05-18 03:33:09.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:33:09.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:09.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:09.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:33:09.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.9025ms +2024-05-18 03:33:20.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:33:20.759 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:20.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:20.788 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:33:20.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.3781ms +2024-05-18 03:33:21.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:33:21.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:21.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:21.333 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:33:21.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 42.4138ms +2024-05-18 03:33:35.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:33:35.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:35.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:35.826 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:33:35.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.3678ms +2024-05-18 03:33:50.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:33:50.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:50.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:33:50.834 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:33:50.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.4448ms +2024-05-18 03:34:03.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:03.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:03.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:03.737 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:03.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.3612ms +2024-05-18 03:34:03.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:03.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:03.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:03.769 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:03.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.4408ms +2024-05-18 03:34:05.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:05.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:05.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:05.830 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:05.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.0359ms +2024-05-18 03:34:06.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:06.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:07.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:07.025 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:07.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.1598ms +2024-05-18 03:34:07.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:07.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:07.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:07.058 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:07.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.4411ms +2024-05-18 03:34:18.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:18.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:18.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:18.766 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:18.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.195ms +2024-05-18 03:34:20.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:20.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:20.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:20.825 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:20.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.4984ms +2024-05-18 03:34:22.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:22.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:22.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:22.063 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:22.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.8985ms +2024-05-18 03:34:45.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:45.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:45.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:45.795 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:45.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.451ms +2024-05-18 03:34:45.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:34:45.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:45.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:34:45.829 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:34:45.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.8332ms +2024-05-18 03:35:00.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:35:00.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:00.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:00.831 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:35:00.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.4409ms +2024-05-18 03:35:15.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:35:15.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:15.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:15.829 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:35:15.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.7275ms +2024-05-18 03:35:30.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:35:30.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:30.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:30.833 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:35:30.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.7387ms +2024-05-18 03:35:45.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:35:45.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:45.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:35:45.836 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:35:45.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 30.2599ms +2024-05-18 03:36:00.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:36:00.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:00.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:00.827 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:36:00.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.7071ms +2024-05-18 03:36:15.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:36:15.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:15.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:15.829 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:36:15.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.2598ms +2024-05-18 03:36:30.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:36:30.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:30.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:30.828 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:36:30.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 27.8992ms +2024-05-18 03:36:45.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:36:45.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:45.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:36:45.836 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:36:45.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 35.0573ms +2024-05-18 03:37:00.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:00.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:00.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:00.831 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:00.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 29.2008ms +2024-05-18 03:37:08.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:08.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:08.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:08.756 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:08.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 37.1988ms +2024-05-18 03:37:09.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:09.124 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:09.153 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:09.154 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:09.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.0272ms +2024-05-18 03:37:13.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:13.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:13.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:13.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:13.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 34.6507ms +2024-05-18 03:37:31.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:31.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:31.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:31.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:31.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 28.577ms +2024-05-18 03:37:31.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - null null +2024-05-18 03:37:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:37:31.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-18 03:37:31.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af9ca0fc-b35b-4566-84e5-83dd08f20c3e - 400 null application/json 31.2389ms +2024-05-18 03:38:28.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:38:28.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:28.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:28.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.136ms +2024-05-18 03:38:28.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:38:28.504 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:28.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:28.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9513ms +2024-05-18 03:38:43.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:38:43.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:43.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:43.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9574ms +2024-05-18 03:38:58.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:38:58.511 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:58.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:38:58.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8945ms +2024-05-18 03:39:13.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:39:13.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:13.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:13.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9218ms +2024-05-18 03:39:28.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:39:28.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:28.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:28.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.9163ms +2024-05-18 03:39:43.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:39:43.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:43.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:43.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9085ms +2024-05-18 03:39:58.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:39:58.504 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:58.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:39:58.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3933ms +2024-05-18 03:40:13.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:40:13.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:13.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:13.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7758ms +2024-05-18 03:40:28.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:40:28.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:28.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:28.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1818ms +2024-05-18 03:40:43.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:40:43.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:43.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:43.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.148ms +2024-05-18 03:40:58.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:40:58.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:58.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:40:58.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9143ms +2024-05-18 03:41:13.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:41:13.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:13.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:13.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2468ms +2024-05-18 03:41:28.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:41:28.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:28.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:28.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4953ms +2024-05-18 03:41:43.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:41:43.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:43.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:43.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4641ms +2024-05-18 03:41:58.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:41:58.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:58.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:41:58.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0022ms +2024-05-18 03:42:13.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:42:13.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:13.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:13.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7801ms +2024-05-18 03:42:28.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:42:28.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:28.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:28.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7534ms +2024-05-18 03:42:43.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:42:43.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:43.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:43.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.196ms +2024-05-18 03:42:58.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:42:58.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:58.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:42:58.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2481ms +2024-05-18 03:43:13.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:43:13.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:13.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:13.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4251ms +2024-05-18 03:43:31.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:43:31.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:31.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:31.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2666ms +2024-05-18 03:43:31.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:43:31.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:31.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:31.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2795ms +2024-05-18 03:43:46.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:43:46.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:46.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:43:46.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4026ms +2024-05-18 03:44:01.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:44:01.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:01.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:01.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9625ms +2024-05-18 03:44:16.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:44:16.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:16.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:16.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.646ms +2024-05-18 03:44:31.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:44:31.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:31.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:31.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7445ms +2024-05-18 03:44:46.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:44:46.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:46.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:44:46.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8382ms +2024-05-18 03:45:01.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:45:01.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:01.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:01.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2988ms +2024-05-18 03:45:16.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:45:16.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:16.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:16.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2002ms +2024-05-18 03:45:31.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:45:31.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:31.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:31.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3687ms +2024-05-18 03:45:46.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:45:46.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:46.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:45:46.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6714ms +2024-05-18 03:46:01.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:46:01.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:01.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:01.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2146ms +2024-05-18 03:46:16.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:46:16.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:16.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:16.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5397ms +2024-05-18 03:46:31.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:46:31.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:31.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:31.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4792ms +2024-05-18 03:46:46.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:46:46.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:46.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:46:46.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1181ms +2024-05-18 03:47:01.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:47:01.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:01.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:01.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0225ms +2024-05-18 03:47:15.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:47:15.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:15.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:15.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4604ms +2024-05-18 03:47:16.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:47:16.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:16.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:16.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 151.2144ms +2024-05-18 03:47:31.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:47:31.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:31.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:31.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0158ms +2024-05-18 03:47:46.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:47:46.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:46.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:47:46.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4046ms +2024-05-18 03:48:01.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:48:01.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:01.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:01.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4318ms +2024-05-18 03:48:16.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:48:16.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:16.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:16.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9873ms +2024-05-18 03:48:31.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:48:31.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:31.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:31.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0488ms +2024-05-18 03:48:46.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:48:46.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:46.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:48:46.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6698ms +2024-05-18 03:49:01.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:49:01.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:01.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:01.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7294ms +2024-05-18 03:49:16.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:49:16.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:16.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:16.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9925ms +2024-05-18 03:49:31.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:49:31.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:31.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:31.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7081ms +2024-05-18 03:49:46.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:49:46.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:46.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:49:46.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.245ms +2024-05-18 03:50:01.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:50:01.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:01.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:01.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9431ms +2024-05-18 03:50:16.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:50:16.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:16.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:16.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1257ms +2024-05-18 03:50:31.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:50:31.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:31.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:31.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8311ms +2024-05-18 03:50:46.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:50:46.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:46.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:50:46.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6449ms +2024-05-18 03:51:01.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:51:01.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:01.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:01.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9967ms +2024-05-18 03:51:16.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:51:16.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:16.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:16.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9478ms +2024-05-18 03:51:31.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:51:31.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:31.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:31.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3861ms +2024-05-18 03:51:46.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:51:46.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:46.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:51:46.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4803ms +2024-05-18 03:52:01.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:52:01.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:01.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:01.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1236ms +2024-05-18 03:52:16.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:52:16.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:16.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:16.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8625ms +2024-05-18 03:52:33.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:52:33.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:33.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:33.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8809ms +2024-05-18 03:52:33.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:52:33.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:33.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:33.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2368ms +2024-05-18 03:52:48.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:52:48.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:48.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:52:48.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7921ms +2024-05-18 03:53:03.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:53:03.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:03.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:03.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.3617ms +2024-05-18 03:53:18.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:53:18.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:18.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:18.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6844ms +2024-05-18 03:53:33.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:53:33.087 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:33.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:33.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1357ms +2024-05-18 03:53:48.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:53:48.089 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:48.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:53:48.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5291ms +2024-05-18 03:54:03.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:54:03.093 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:03.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:03.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.8797ms +2024-05-18 03:54:18.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:54:18.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:18.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:18.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6763ms +2024-05-18 03:54:33.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:54:33.089 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:33.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:33.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.6528ms +2024-05-18 03:54:48.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:54:48.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:48.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:54:48.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5255ms +2024-05-18 03:55:03.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:55:03.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:03.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:03.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.1597ms +2024-05-18 03:55:18.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:55:18.088 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:18.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:18.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.885ms +2024-05-18 03:55:35.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:55:35.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:35.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:35.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8918ms +2024-05-18 03:55:35.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:55:35.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:35.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:35.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9074ms +2024-05-18 03:55:50.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:55:50.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:50.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:55:50.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2507ms +2024-05-18 03:56:05.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:56:05.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:05.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:05.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3327ms +2024-05-18 03:56:20.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:56:20.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:20.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:20.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.5814ms +2024-05-18 03:56:35.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:56:35.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:35.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:35.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5664ms +2024-05-18 03:56:50.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:56:50.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:50.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:56:50.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.148ms +2024-05-18 03:57:05.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:57:05.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:05.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:05.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1133ms +2024-05-18 03:57:20.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:57:20.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:20.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:20.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9213ms +2024-05-18 03:57:35.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:57:35.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:35.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:35.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9901ms +2024-05-18 03:57:50.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:57:50.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:50.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:57:50.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8566ms +2024-05-18 03:58:05.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:58:05.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:05.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:05.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9468ms +2024-05-18 03:58:20.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:58:20.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:20.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:20.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6234ms +2024-05-18 03:58:35.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:58:35.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:35.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:35.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7217ms +2024-05-18 03:58:50.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:58:50.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:50.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:58:50.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2249ms +2024-05-18 03:59:05.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:59:05.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:05.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:05.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4784ms +2024-05-18 03:59:20.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:59:20.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:20.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:20.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0735ms +2024-05-18 03:59:35.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:59:35.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:35.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:35.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.0117ms +2024-05-18 03:59:50.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 03:59:50.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:50.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 03:59:50.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.7198ms +2024-05-18 04:00:05.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:05.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:05.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:05.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9357ms +2024-05-18 04:00:20.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:20.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:20.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:20.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2471ms +2024-05-18 04:00:35.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:35.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:35.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:35.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.1465ms +2024-05-18 04:00:37.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:37.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.3353ms +2024-05-18 04:00:37.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:37.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5276ms +2024-05-18 04:00:37.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:37.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:37.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5096ms +2024-05-18 04:00:39.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:39.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:39.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:39.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4225ms +2024-05-18 04:00:39.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:39.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:39.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:39.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6562ms +2024-05-18 04:00:50.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:50.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:50.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:50.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5577ms +2024-05-18 04:00:52.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:52.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:52.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:52.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0585ms +2024-05-18 04:00:54.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:00:54.096 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:54.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:00:54.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.274ms +2024-05-18 04:01:05.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:05.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:05.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:05.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5622ms +2024-05-18 04:01:07.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:07.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:07.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:07.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2884ms +2024-05-18 04:01:09.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:09.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:09.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:09.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6391ms +2024-05-18 04:01:20.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:20.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:20.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:20.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4605ms +2024-05-18 04:01:22.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:22.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:22.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:22.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6243ms +2024-05-18 04:01:24.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:24.097 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:24.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:24.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1704ms +2024-05-18 04:01:35.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:35.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:35.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:35.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5875ms +2024-05-18 04:01:37.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:37.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:37.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:37.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6895ms +2024-05-18 04:01:39.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:39.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:39.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:39.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.968ms +2024-05-18 04:01:50.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:50.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:50.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:50.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7028ms +2024-05-18 04:01:52.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:52.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:52.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:52.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7443ms +2024-05-18 04:01:54.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:01:54.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:54.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:01:54.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1096ms +2024-05-18 04:02:05.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:05.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:05.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:05.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2881ms +2024-05-18 04:02:07.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:07.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:07.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:07.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2873ms +2024-05-18 04:02:09.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:09.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:09.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:09.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7716ms +2024-05-18 04:02:20.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:20.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:20.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:20.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5583ms +2024-05-18 04:02:22.561 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:22.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:22.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:22.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7025ms +2024-05-18 04:02:24.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:24.097 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:24.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:24.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2944ms +2024-05-18 04:02:35.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:35.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:35.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:35.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3263ms +2024-05-18 04:02:37.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:37.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:37.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:37.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3969ms +2024-05-18 04:02:39.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:39.091 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:39.120 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:39.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0343ms +2024-05-18 04:02:50.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:50.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:50.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:50.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.419ms +2024-05-18 04:02:52.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:52.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:52.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:52.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3481ms +2024-05-18 04:02:54.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:02:54.097 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:54.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:02:54.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.955ms +2024-05-18 04:03:05.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:05.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:05.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:05.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3097ms +2024-05-18 04:03:07.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:07.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:07.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:07.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6233ms +2024-05-18 04:03:09.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:09.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:09.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:09.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5082ms +2024-05-18 04:03:20.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:20.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:20.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:20.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.5209ms +2024-05-18 04:03:22.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:22.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:22.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:22.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3376ms +2024-05-18 04:03:24.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:24.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:24.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:24.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.9235ms +2024-05-18 04:03:35.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:35.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:35.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:35.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9048ms +2024-05-18 04:03:37.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:37.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:37.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:37.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9018ms +2024-05-18 04:03:39.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:39.091 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:39.120 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:39.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0058ms +2024-05-18 04:03:50.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:50.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:50.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:50.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.4969ms +2024-05-18 04:03:52.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:52.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:52.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:52.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9735ms +2024-05-18 04:03:54.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:03:54.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:54.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:03:54.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.082ms +2024-05-18 04:04:05.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:05.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:05.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:05.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9437ms +2024-05-18 04:04:07.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:07.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:07.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:07.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7201ms +2024-05-18 04:04:09.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:09.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:09.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:09.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6745ms +2024-05-18 04:04:20.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:20.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:20.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:20.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5664ms +2024-05-18 04:04:22.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:22.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:22.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:22.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.535ms +2024-05-18 04:04:24.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:24.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:24.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:24.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9205ms +2024-05-18 04:04:35.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:35.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:35.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:35.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4747ms +2024-05-18 04:04:37.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:37.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:37.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:37.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1058ms +2024-05-18 04:04:39.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:39.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:39.122 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:39.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.496ms +2024-05-18 04:04:50.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:50.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:50.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:50.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8077ms +2024-05-18 04:04:52.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:52.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:52.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:52.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8251ms +2024-05-18 04:04:54.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:04:54.091 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:54.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:04:54.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2477ms +2024-05-18 04:05:05.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:05.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:05.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:05.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.6311ms +2024-05-18 04:05:07.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:07.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:07.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:07.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9633ms +2024-05-18 04:05:09.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:09.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:09.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:09.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1532ms +2024-05-18 04:05:20.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:20.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:20.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:20.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8574ms +2024-05-18 04:05:22.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:22.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:22.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:22.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8812ms +2024-05-18 04:05:24.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:24.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:24.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:24.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8119ms +2024-05-18 04:05:35.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:35.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:35.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:35.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8979ms +2024-05-18 04:05:37.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:37.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:37.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:37.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3165ms +2024-05-18 04:05:39.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:39.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:39.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:39.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.71ms +2024-05-18 04:05:50.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:50.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:50.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:50.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5223ms +2024-05-18 04:05:52.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:52.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:52.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:52.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1495ms +2024-05-18 04:05:54.089 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:05:54.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:54.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:05:54.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4939ms +2024-05-18 04:06:05.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:05.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:05.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:05.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3694ms +2024-05-18 04:06:07.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:07.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:07.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:07.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6232ms +2024-05-18 04:06:09.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:09.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:09.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:09.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2088ms +2024-05-18 04:06:20.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:20.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:20.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:20.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9168ms +2024-05-18 04:06:22.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:22.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:22.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:22.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6939ms +2024-05-18 04:06:24.097 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:24.097 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:24.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:24.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9142ms +2024-05-18 04:06:35.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:35.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:35.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:35.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8894ms +2024-05-18 04:06:37.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:37.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:37.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:37.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5353ms +2024-05-18 04:06:39.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:39.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:39.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:39.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1279ms +2024-05-18 04:06:50.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:50.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:50.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:50.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.8813ms +2024-05-18 04:06:51.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:51.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:51.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:51.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6412ms +2024-05-18 04:06:51.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:06:51.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:51.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:06:51.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5529ms +2024-05-18 04:07:06.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:07:06.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:06.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:06.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7446ms +2024-05-18 04:07:21.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:07:21.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:21.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:21.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8855ms +2024-05-18 04:07:36.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:07:36.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:36.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7067ms +2024-05-18 04:07:51.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:07:51.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:51.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:07:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7221ms +2024-05-18 04:08:06.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:08:06.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:06.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:06.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0457ms +2024-05-18 04:08:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:08:21.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:21.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:21.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8891ms +2024-05-18 04:08:36.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:08:36.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:36.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:36.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1988ms +2024-05-18 04:08:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:08:51.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:51.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:08:51.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5595ms +2024-05-18 04:09:06.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:09:06.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:06.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:06.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.0894ms +2024-05-18 04:09:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:09:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:21.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.942ms +2024-05-18 04:09:36.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:09:36.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:36.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:36.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9884ms +2024-05-18 04:09:51.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:09:51.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:51.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:09:51.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0931ms +2024-05-18 04:10:06.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:10:06.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:06.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:06.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0152ms +2024-05-18 04:10:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:10:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:21.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:21.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.508ms +2024-05-18 04:10:36.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:10:36.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:36.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:36.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9143ms +2024-05-18 04:10:51.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:10:51.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:51.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:10:51.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6069ms +2024-05-18 04:11:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:06.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:06.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:06.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6586ms +2024-05-18 04:11:11.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:11.775 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:11.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:11.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1246ms +2024-05-18 04:11:13.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:13.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:13.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:13.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9477ms +2024-05-18 04:11:13.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:13.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:13.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:13.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6564ms +2024-05-18 04:11:14.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:14.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:14.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:14.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7163ms +2024-05-18 04:11:15.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:15.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:15.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:15.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0536ms +2024-05-18 04:11:15.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:15.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:15.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:15.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0128ms +2024-05-18 04:11:17.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:17.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:17.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:17.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3289ms +2024-05-18 04:11:17.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:17.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:17.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:17.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9286ms +2024-05-18 04:11:18.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:18.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:18.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:18.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:18.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:18.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3011ms +2024-05-18 04:11:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:18.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:18.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:18.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4506ms +2024-05-18 04:11:19.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:19.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 471.0848ms +2024-05-18 04:11:21.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:21.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:21.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:21.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9031ms +2024-05-18 04:11:28.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:28.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:28.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5239ms +2024-05-18 04:11:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:30.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:30.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7102ms +2024-05-18 04:11:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:32.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:32.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3584ms +2024-05-18 04:11:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:33.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:33.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0551ms +2024-05-18 04:11:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:36.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:36.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:36.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6815ms +2024-05-18 04:11:43.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:43.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:43.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5479ms +2024-05-18 04:11:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:45.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:45.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.625ms +2024-05-18 04:11:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:47.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2507ms +2024-05-18 04:11:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:48.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2282ms +2024-05-18 04:11:51.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:51.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:51.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:51.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6219ms +2024-05-18 04:11:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:11:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:11:58.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0396ms +2024-05-18 04:12:00.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:00.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:00.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:00.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0067ms +2024-05-18 04:12:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:02.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:02.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:02.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0366ms +2024-05-18 04:12:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:03.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:03.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:03.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4564ms +2024-05-18 04:12:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:06.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:06.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7489ms +2024-05-18 04:12:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:13.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:13.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9767ms +2024-05-18 04:12:15.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:15.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:15.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9652ms +2024-05-18 04:12:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:17.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:17.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:17.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.231ms +2024-05-18 04:12:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:18.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:18.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7557ms +2024-05-18 04:12:21.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:21.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:21.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:21.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2719ms +2024-05-18 04:12:28.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:28.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:28.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:28.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2318ms +2024-05-18 04:12:30.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:30.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7669ms +2024-05-18 04:12:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:32.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:32.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5614ms +2024-05-18 04:12:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:33.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:33.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7254ms +2024-05-18 04:12:36.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:36.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:36.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:36.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6234ms +2024-05-18 04:12:43.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:43.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7445ms +2024-05-18 04:12:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:45.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:45.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2409ms +2024-05-18 04:12:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:47.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5823ms +2024-05-18 04:12:48.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:48.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:48.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:48.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0354ms +2024-05-18 04:12:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:51.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:51.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:51.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5143ms +2024-05-18 04:12:58.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:12:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:12:58.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5726ms +2024-05-18 04:13:00.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:00.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:00.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:00.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7123ms +2024-05-18 04:13:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:02.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:02.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:02.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.045ms +2024-05-18 04:13:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:03.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:03.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:03.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9804ms +2024-05-18 04:13:06.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:06.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:06.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:06.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0238ms +2024-05-18 04:13:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:13.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:13.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9923ms +2024-05-18 04:13:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:15.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:15.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8551ms +2024-05-18 04:13:17.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:17.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:17.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:17.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8413ms +2024-05-18 04:13:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:18.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:18.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.774ms +2024-05-18 04:13:21.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:21.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:21.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:21.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2118ms +2024-05-18 04:13:28.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:28.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:28.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.044ms +2024-05-18 04:13:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:30.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.797ms +2024-05-18 04:13:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:32.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:32.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.311ms +2024-05-18 04:13:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:33.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:33.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7611ms +2024-05-18 04:13:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:36.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:36.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:36.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1702ms +2024-05-18 04:13:43.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:43.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:43.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:43.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3386ms +2024-05-18 04:13:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:45.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5588ms +2024-05-18 04:13:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:47.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:47.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:47.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4566ms +2024-05-18 04:13:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:48.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:48.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3757ms +2024-05-18 04:13:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:51.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:51.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:51.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0378ms +2024-05-18 04:13:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:13:58.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:13:58.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.219ms +2024-05-18 04:14:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:00.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:00.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1354ms +2024-05-18 04:14:02.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:02.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:02.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:02.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3371ms +2024-05-18 04:14:03.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:03.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:03.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:03.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.452ms +2024-05-18 04:14:06.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:06.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:06.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:06.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7832ms +2024-05-18 04:14:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:13.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3641ms +2024-05-18 04:14:15.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:15.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:15.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:15.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4651ms +2024-05-18 04:14:17.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:17.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:17.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:17.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9829ms +2024-05-18 04:14:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:18.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:18.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1935ms +2024-05-18 04:14:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:21.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:21.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:21.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8929ms +2024-05-18 04:14:28.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:28.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:28.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:28.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2133ms +2024-05-18 04:14:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:30.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:30.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:30.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2201ms +2024-05-18 04:14:32.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:32.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:32.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:32.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2275ms +2024-05-18 04:14:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:33.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:33.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:33.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0671ms +2024-05-18 04:14:36.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:36.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:36.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:36.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.338ms +2024-05-18 04:14:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8053ms +2024-05-18 04:14:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:45.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:45.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4373ms +2024-05-18 04:14:47.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:47.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:47.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:47.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1353ms +2024-05-18 04:14:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:48.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8911ms +2024-05-18 04:14:51.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:51.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:51.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:51.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3549ms +2024-05-18 04:14:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:14:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:14:58.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7633ms +2024-05-18 04:15:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:00.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:00.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:00.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1811ms +2024-05-18 04:15:02.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:02.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:02.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:02.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4171ms +2024-05-18 04:15:03.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:03.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:03.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:03.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0639ms +2024-05-18 04:15:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:06.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:06.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1238ms +2024-05-18 04:15:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:13.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:13.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0143ms +2024-05-18 04:15:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:15.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:15.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4068ms +2024-05-18 04:15:17.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:17.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:17.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:17.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6725ms +2024-05-18 04:15:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:18.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:18.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.5569ms +2024-05-18 04:15:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:21.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:21.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1281ms +2024-05-18 04:15:28.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:28.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:28.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:28.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4864ms +2024-05-18 04:15:30.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:30.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:30.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0487ms +2024-05-18 04:15:32.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:32.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:32.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0188ms +2024-05-18 04:15:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:33.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:33.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:33.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9393ms +2024-05-18 04:15:36.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:36.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:36.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:36.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.6823ms +2024-05-18 04:15:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:43.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:43.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.772ms +2024-05-18 04:15:45.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:45.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:45.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6156ms +2024-05-18 04:15:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:47.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2735ms +2024-05-18 04:15:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:48.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2262ms +2024-05-18 04:15:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:51.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:51.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:51.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6436ms +2024-05-18 04:15:58.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:15:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:58.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:15:58.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4581ms +2024-05-18 04:16:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:00.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:00.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:00.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.145ms +2024-05-18 04:16:02.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:02.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:02.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:02.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3099ms +2024-05-18 04:16:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:03.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:03.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:03.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.3362ms +2024-05-18 04:16:06.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:06.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:06.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:06.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8633ms +2024-05-18 04:16:13.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:13.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:13.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:13.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9115ms +2024-05-18 04:16:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:15.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:15.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4342ms +2024-05-18 04:16:17.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:17.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:17.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:17.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9691ms +2024-05-18 04:16:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:18.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:18.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:18.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.024ms +2024-05-18 04:16:21.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:21.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:21.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:21.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.255ms +2024-05-18 04:16:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:28.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.394ms +2024-05-18 04:16:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:30.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6532ms +2024-05-18 04:16:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:32.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:32.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:32.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8343ms +2024-05-18 04:16:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:33.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:33.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2182ms +2024-05-18 04:16:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:36.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:36.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:36.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1873ms +2024-05-18 04:16:43.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:43.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:43.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:43.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5441ms +2024-05-18 04:16:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:45.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2729ms +2024-05-18 04:16:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:47.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0926ms +2024-05-18 04:16:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:48.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0237ms +2024-05-18 04:16:51.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:51.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:51.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:51.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0869ms +2024-05-18 04:16:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:16:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:16:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0827ms +2024-05-18 04:17:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:00.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:00.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.622ms +2024-05-18 04:17:02.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:02.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:02.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:02.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3575ms +2024-05-18 04:17:03.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:03.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:03.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:03.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8632ms +2024-05-18 04:17:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:06.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:06.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4503ms +2024-05-18 04:17:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:13.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.916ms +2024-05-18 04:17:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:15.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:15.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0895ms +2024-05-18 04:17:17.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:17.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:17.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:17.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2958ms +2024-05-18 04:17:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:18.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:18.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:18.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3172ms +2024-05-18 04:17:21.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:21.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6354ms +2024-05-18 04:17:23.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:23.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:23.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:23.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6677ms +2024-05-18 04:17:24.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:24.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:24.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:24.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1727ms +2024-05-18 04:17:24.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:24.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:24.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8134ms +2024-05-18 04:17:28.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:28.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:28.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:28.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8659ms +2024-05-18 04:17:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:30.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:30.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3769ms +2024-05-18 04:17:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:32.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:32.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:32.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2814ms +2024-05-18 04:17:33.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:33.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:33.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:33.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7601ms +2024-05-18 04:17:36.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:36.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:36.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2172ms +2024-05-18 04:17:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:39.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:39.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7339ms +2024-05-18 04:17:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:43.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:43.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:43.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9378ms +2024-05-18 04:17:45.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:45.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:45.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2124ms +2024-05-18 04:17:47.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:47.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:47.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:47.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5446ms +2024-05-18 04:17:48.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:48.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:48.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:48.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3778ms +2024-05-18 04:17:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:51.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:51.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:51.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4287ms +2024-05-18 04:17:54.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:54.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:54.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2096ms +2024-05-18 04:17:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:17:58.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:58.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:17:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5094ms +2024-05-18 04:18:00.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:00.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:00.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:00.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1542ms +2024-05-18 04:18:02.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:02.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:02.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:02.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6844ms +2024-05-18 04:18:03.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:03.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:03.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:03.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1362ms +2024-05-18 04:18:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:06.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:06.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7964ms +2024-05-18 04:18:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:09.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:09.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5499ms +2024-05-18 04:18:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:13.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:13.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9118ms +2024-05-18 04:18:15.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:15.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:15.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:15.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9933ms +2024-05-18 04:18:17.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:17.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:17.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:17.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6305ms +2024-05-18 04:18:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:18.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:18.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:18.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4635ms +2024-05-18 04:18:21.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:21.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:21.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:21.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0492ms +2024-05-18 04:18:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:24.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:24.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8881ms +2024-05-18 04:18:28.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:28.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:28.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:28.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.3222ms +2024-05-18 04:18:30.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:30.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:30.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9336ms +2024-05-18 04:18:32.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:32.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:32.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:32.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5968ms +2024-05-18 04:18:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:33.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:33.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3004ms +2024-05-18 04:18:36.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:36.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:36.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6963ms +2024-05-18 04:18:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:39.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:39.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1962ms +2024-05-18 04:18:43.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1237ms +2024-05-18 04:18:45.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:45.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:45.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:45.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2476ms +2024-05-18 04:18:47.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:47.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:47.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:47.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3914ms +2024-05-18 04:18:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:48.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:48.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.0039ms +2024-05-18 04:18:51.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:51.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:51.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:51.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.5028ms +2024-05-18 04:18:54.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:54.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:54.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:54.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4922ms +2024-05-18 04:18:58.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:18:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:58.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:18:58.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8475ms +2024-05-18 04:19:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:00.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:00.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:00.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0464ms +2024-05-18 04:19:02.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:02.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:02.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:02.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.4469ms +2024-05-18 04:19:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:03.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:03.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:03.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6803ms +2024-05-18 04:19:06.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:06.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:06.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:06.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4171ms +2024-05-18 04:19:09.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:09.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:09.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:09.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 35.1563ms +2024-05-18 04:19:13.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:13.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9449ms +2024-05-18 04:19:15.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:15.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:15.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:15.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6311ms +2024-05-18 04:19:17.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:17.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:17.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:17.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5939ms +2024-05-18 04:19:18.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:18.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:18.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:18.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.9174ms +2024-05-18 04:19:21.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:21.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5669ms +2024-05-18 04:19:24.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:24.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:24.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:24.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.657ms +2024-05-18 04:19:28.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:28.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:28.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:28.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.2627ms +2024-05-18 04:19:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:30.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:30.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.4436ms +2024-05-18 04:19:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:32.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:32.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1494ms +2024-05-18 04:19:33.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:33.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:33.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5234ms +2024-05-18 04:19:36.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:36.755 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:36.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:36.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 40.4678ms +2024-05-18 04:19:39.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:39.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:39.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:39.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.0551ms +2024-05-18 04:19:43.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:43.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3292ms +2024-05-18 04:19:45.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:45.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:45.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:45.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.7724ms +2024-05-18 04:19:47.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:47.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:47.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:47.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1624ms +2024-05-18 04:19:48.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:48.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:48.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:48.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.2504ms +2024-05-18 04:19:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:51.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:51.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8839ms +2024-05-18 04:19:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:54.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:54.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1444ms +2024-05-18 04:19:58.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:19:58.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:58.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:19:58.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3079ms +2024-05-18 04:20:00.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:00.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:00.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:00.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.656ms +2024-05-18 04:20:02.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:02.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:02.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:02.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0212ms +2024-05-18 04:20:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:03.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:03.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:03.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1739ms +2024-05-18 04:20:06.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:06.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:06.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:06.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.169ms +2024-05-18 04:20:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:09.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:09.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7305ms +2024-05-18 04:20:13.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:13.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:13.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:13.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0449ms +2024-05-18 04:20:15.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:15.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:15.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:15.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2146ms +2024-05-18 04:20:17.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:17.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:17.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:17.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4668ms +2024-05-18 04:20:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:18.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:18.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:18.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1498ms +2024-05-18 04:20:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:21.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:21.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7574ms +2024-05-18 04:20:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:24.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:24.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.775ms +2024-05-18 04:20:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:28.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0945ms +2024-05-18 04:20:30.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:30.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:30.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:30.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 47.3849ms +2024-05-18 04:20:32.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:32.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:32.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:32.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.325ms +2024-05-18 04:20:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:33.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:33.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:33.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0443ms +2024-05-18 04:20:36.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:36.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:36.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:36.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0109ms +2024-05-18 04:20:39.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:39.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:39.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3885ms +2024-05-18 04:20:43.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:43.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:43.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2635ms +2024-05-18 04:20:45.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:45.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:45.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:45.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2133ms +2024-05-18 04:20:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:47.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:47.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:47.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.7415ms +2024-05-18 04:20:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:48.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:48.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:48.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9968ms +2024-05-18 04:20:51.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:51.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:51.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:51.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0706ms +2024-05-18 04:20:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:54.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:54.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:54.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.3251ms +2024-05-18 04:20:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:20:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:58.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:20:58.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.9255ms +2024-05-18 04:21:00.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:00.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:00.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7436ms +2024-05-18 04:21:02.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:02.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:02.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8853ms +2024-05-18 04:21:03.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:03.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:03.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:03.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4656ms +2024-05-18 04:21:06.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:06.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:06.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:06.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2437ms +2024-05-18 04:21:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:09.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:09.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:09.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8848ms +2024-05-18 04:21:13.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:13.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:13.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3273ms +2024-05-18 04:21:15.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:15.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:15.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:15.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3506ms +2024-05-18 04:21:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:17.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:17.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:17.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8432ms +2024-05-18 04:21:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:18.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:18.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5747ms +2024-05-18 04:21:21.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:21.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:21.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8269ms +2024-05-18 04:21:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:24.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:24.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:24.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1682ms +2024-05-18 04:21:28.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:28.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:28.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:28.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5782ms +2024-05-18 04:21:30.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:30.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:30.120 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:30.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 45.7731ms +2024-05-18 04:21:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:32.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:32.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3627ms +2024-05-18 04:21:33.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:33.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.392ms +2024-05-18 04:21:36.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:36.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:36.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:36.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8577ms +2024-05-18 04:21:39.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:39.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:39.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:39.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.1993ms +2024-05-18 04:21:43.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:43.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0523ms +2024-05-18 04:21:45.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:45.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:45.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:45.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.3403ms +2024-05-18 04:21:47.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:47.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:47.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:47.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2776ms +2024-05-18 04:21:48.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:48.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:48.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:48.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5677ms +2024-05-18 04:21:51.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:51.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:51.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:51.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.166ms +2024-05-18 04:21:54.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:54.860 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:54.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:54.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.2956ms +2024-05-18 04:21:58.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:21:58.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:58.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:21:58.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2256ms +2024-05-18 04:22:00.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:00.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:00.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:00.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.123ms +2024-05-18 04:22:02.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:02.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:02.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:02.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6505ms +2024-05-18 04:22:03.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:03.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:03.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:03.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8667ms +2024-05-18 04:22:06.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:06.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:06.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:06.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 37.6715ms +2024-05-18 04:22:09.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:09.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:09.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:09.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.935ms +2024-05-18 04:22:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3268ms +2024-05-18 04:22:15.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:15.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:15.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:15.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9581ms +2024-05-18 04:22:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:17.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:17.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:17.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.387ms +2024-05-18 04:22:18.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:18.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:18.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:18.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0237ms +2024-05-18 04:22:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:21.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:21.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0672ms +2024-05-18 04:22:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:24.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:24.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7893ms +2024-05-18 04:22:28.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:28.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3521ms +2024-05-18 04:22:30.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:30.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:30.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:30.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9779ms +2024-05-18 04:22:32.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:32.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:32.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:32.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.658ms +2024-05-18 04:22:33.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:33.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:33.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3036ms +2024-05-18 04:22:36.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:36.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:36.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5826ms +2024-05-18 04:22:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:39.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:39.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6397ms +2024-05-18 04:22:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:43.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4785ms +2024-05-18 04:22:45.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:45.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:45.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:45.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1266ms +2024-05-18 04:22:47.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:47.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:47.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:47.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.5499ms +2024-05-18 04:22:48.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:48.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:48.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:48.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0457ms +2024-05-18 04:22:51.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:51.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:51.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:51.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7054ms +2024-05-18 04:22:54.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:54.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:54.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:54.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8894ms +2024-05-18 04:22:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:22:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:58.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:22:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7627ms +2024-05-18 04:23:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:00.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:00.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:00.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5472ms +2024-05-18 04:23:02.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:02.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:02.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:02.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3741ms +2024-05-18 04:23:03.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:03.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:03.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:03.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3553ms +2024-05-18 04:23:06.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:06.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:06.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:06.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.5946ms +2024-05-18 04:23:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:09.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:09.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5876ms +2024-05-18 04:23:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3633ms +2024-05-18 04:23:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:15.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:15.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:15.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8921ms +2024-05-18 04:23:17.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:17.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:17.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:17.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9474ms +2024-05-18 04:23:18.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:18.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:18.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9245ms +2024-05-18 04:23:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:21.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8896ms +2024-05-18 04:23:24.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:24.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:24.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1335ms +2024-05-18 04:23:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:28.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:28.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9743ms +2024-05-18 04:23:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:30.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:30.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8711ms +2024-05-18 04:23:32.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:32.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:32.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:32.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2012ms +2024-05-18 04:23:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:33.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:33.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2082ms +2024-05-18 04:23:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:36.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:36.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:36.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2561ms +2024-05-18 04:23:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:39.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:39.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:39.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.655ms +2024-05-18 04:23:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:43.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9223ms +2024-05-18 04:23:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:45.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:45.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:45.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 40.6376ms +2024-05-18 04:23:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:47.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4248ms +2024-05-18 04:23:48.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:48.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:48.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:48.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.8909ms +2024-05-18 04:23:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:51.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:51.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:51.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8614ms +2024-05-18 04:23:54.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:54.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:54.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:54.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9313ms +2024-05-18 04:23:58.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:23:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:23:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7789ms +2024-05-18 04:24:00.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:00.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:00.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:00.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.815ms +2024-05-18 04:24:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:02.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:02.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:02.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2472ms +2024-05-18 04:24:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:03.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:03.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:03.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4831ms +2024-05-18 04:24:06.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:06.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:06.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:06.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4268ms +2024-05-18 04:24:09.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:09.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:09.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:09.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7775ms +2024-05-18 04:24:13.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:13.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:13.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:13.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6554ms +2024-05-18 04:24:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:15.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:15.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9188ms +2024-05-18 04:24:17.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:17.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:17.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:17.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4604ms +2024-05-18 04:24:18.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:18.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:18.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:18.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9059ms +2024-05-18 04:24:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:21.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:21.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2443ms +2024-05-18 04:24:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:24.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:24.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2633ms +2024-05-18 04:24:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2712ms +2024-05-18 04:24:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:30.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:30.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.609ms +2024-05-18 04:24:32.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:32.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:32.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:32.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2685ms +2024-05-18 04:24:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:33.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:33.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.202ms +2024-05-18 04:24:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:36.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:36.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:36.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6468ms +2024-05-18 04:24:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:39.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:39.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2327ms +2024-05-18 04:24:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:43.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:43.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:43.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9225ms +2024-05-18 04:24:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:45.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:45.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:45.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8201ms +2024-05-18 04:24:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:47.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:47.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1379ms +2024-05-18 04:24:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:48.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:48.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3637ms +2024-05-18 04:24:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:51.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:51.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:51.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5837ms +2024-05-18 04:24:54.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:54.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:54.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:54.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8649ms +2024-05-18 04:24:58.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:24:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:58.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:24:58.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.3082ms +2024-05-18 04:25:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:00.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:00.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:00.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6054ms +2024-05-18 04:25:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:02.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:02.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0971ms +2024-05-18 04:25:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:03.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:03.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:03.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6803ms +2024-05-18 04:25:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:06.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:06.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.031ms +2024-05-18 04:25:09.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:09.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:09.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.569ms +2024-05-18 04:25:13.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:13.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:13.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:13.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1791ms +2024-05-18 04:25:15.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:15.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:15.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:15.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.9865ms +2024-05-18 04:25:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:17.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:17.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:17.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.805ms +2024-05-18 04:25:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:18.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:18.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:18.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5214ms +2024-05-18 04:25:21.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:21.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:21.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.6533ms +2024-05-18 04:25:24.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:24.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:24.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4734ms +2024-05-18 04:25:28.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:28.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:28.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1607ms +2024-05-18 04:25:30.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:30.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:30.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:30.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2168ms +2024-05-18 04:25:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:32.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:32.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.324ms +2024-05-18 04:25:33.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:33.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:33.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.7677ms +2024-05-18 04:25:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:36.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:36.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:36.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.0276ms +2024-05-18 04:25:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:39.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:39.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:39.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 39.0208ms +2024-05-18 04:25:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:43.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0506ms +2024-05-18 04:25:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:45.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:45.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9683ms +2024-05-18 04:25:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:47.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7315ms +2024-05-18 04:25:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:48.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:48.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.5375ms +2024-05-18 04:25:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:51.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:51.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:51.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8745ms +2024-05-18 04:25:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:54.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:54.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6818ms +2024-05-18 04:25:58.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:25:58.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:58.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:25:58.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.8602ms +2024-05-18 04:26:00.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:00.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:00.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:00.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3825ms +2024-05-18 04:26:02.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:02.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:02.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:02.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2855ms +2024-05-18 04:26:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:03.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:03.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:03.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.114ms +2024-05-18 04:26:06.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:06.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:06.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:06.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0956ms +2024-05-18 04:26:09.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:09.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:09.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:09.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.4228ms +2024-05-18 04:26:13.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:13.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:13.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:13.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5364ms +2024-05-18 04:26:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:15.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:15.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8911ms +2024-05-18 04:26:17.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:17.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:17.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:17.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.954ms +2024-05-18 04:26:18.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:18.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:18.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5405ms +2024-05-18 04:26:21.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:21.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:21.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:21.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.265ms +2024-05-18 04:26:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:24.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:24.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0662ms +2024-05-18 04:26:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:28.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9403ms +2024-05-18 04:26:30.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:30.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:30.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.799ms +2024-05-18 04:26:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:32.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:32.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3712ms +2024-05-18 04:26:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:33.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.992ms +2024-05-18 04:26:36.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:36.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:36.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2737ms +2024-05-18 04:26:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:39.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:39.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7705ms +2024-05-18 04:26:43.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:43.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:43.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9426ms +2024-05-18 04:26:45.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:45.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:45.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:45.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5321ms +2024-05-18 04:26:47.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:47.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:47.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:47.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4358ms +2024-05-18 04:26:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:48.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:48.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.4896ms +2024-05-18 04:26:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:51.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:51.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4309ms +2024-05-18 04:26:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:54.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:54.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8243ms +2024-05-18 04:26:58.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:26:58.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:58.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:26:58.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2031ms +2024-05-18 04:27:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:00.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:00.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9477ms +2024-05-18 04:27:02.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:02.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:02.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:02.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4244ms +2024-05-18 04:27:03.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:03.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:03.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:03.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1872ms +2024-05-18 04:27:06.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:06.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:06.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:06.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8792ms +2024-05-18 04:27:09.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:09.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:09.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:09.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.622ms +2024-05-18 04:27:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5732ms +2024-05-18 04:27:15.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:15.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:15.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:15.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7885ms +2024-05-18 04:27:17.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:17.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:17.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:17.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.4203ms +2024-05-18 04:27:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:18.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:18.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:18.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5682ms +2024-05-18 04:27:21.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:21.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:21.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3308ms +2024-05-18 04:27:24.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:24.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:24.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:24.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4549ms +2024-05-18 04:27:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:28.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:28.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4949ms +2024-05-18 04:27:30.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:30.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:30.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5348ms +2024-05-18 04:27:32.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:32.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:32.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:32.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.368ms +2024-05-18 04:27:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:33.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:33.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0303ms +2024-05-18 04:27:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:36.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:36.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:36.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0674ms +2024-05-18 04:27:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:39.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:39.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:39.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8604ms +2024-05-18 04:27:43.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:43.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:43.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5062ms +2024-05-18 04:27:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:45.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:45.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2115ms +2024-05-18 04:27:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:47.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:47.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2319ms +2024-05-18 04:27:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:48.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2526ms +2024-05-18 04:27:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:51.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:51.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9559ms +2024-05-18 04:27:54.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:54.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:54.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9715ms +2024-05-18 04:27:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:27:58.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:58.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:27:58.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3019ms +2024-05-18 04:28:00.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:00.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:00.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:00.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3346ms +2024-05-18 04:28:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:02.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:02.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:02.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8712ms +2024-05-18 04:28:03.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:03.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:03.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:03.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.3255ms +2024-05-18 04:28:06.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:06.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:06.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:06.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1097ms +2024-05-18 04:28:09.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:09.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:09.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9756ms +2024-05-18 04:28:13.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:13.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:13.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:13.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4599ms +2024-05-18 04:28:15.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:15.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:15.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:15.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4111ms +2024-05-18 04:28:17.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:17.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:17.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:17.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.3989ms +2024-05-18 04:28:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:18.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:18.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7549ms +2024-05-18 04:28:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:21.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:21.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8127ms +2024-05-18 04:28:24.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:24.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:24.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:24.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3792ms +2024-05-18 04:28:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2607ms +2024-05-18 04:28:30.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:30.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:30.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:30.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3998ms +2024-05-18 04:28:32.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:32.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:32.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:32.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2924ms +2024-05-18 04:28:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:33.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2969ms +2024-05-18 04:28:36.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:36.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:36.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:36.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.884ms +2024-05-18 04:28:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:39.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:39.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2498ms +2024-05-18 04:28:43.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:43.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:43.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8494ms +2024-05-18 04:28:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:45.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:45.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6323ms +2024-05-18 04:28:47.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:47.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:47.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.913ms +2024-05-18 04:28:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:48.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:48.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9516ms +2024-05-18 04:28:51.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:51.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:51.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:51.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 38.4641ms +2024-05-18 04:28:54.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:54.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:54.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:54.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.441ms +2024-05-18 04:28:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:28:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:58.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:28:58.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.4032ms +2024-05-18 04:29:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:00.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:00.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7321ms +2024-05-18 04:29:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:02.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:02.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:02.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.6142ms +2024-05-18 04:29:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:03.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:03.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:03.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8705ms +2024-05-18 04:29:06.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:06.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:06.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:06.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8569ms +2024-05-18 04:29:09.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:09.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:09.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:09.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.0939ms +2024-05-18 04:29:13.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:13.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:13.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3455ms +2024-05-18 04:29:15.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:15.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:15.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:15.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3533ms +2024-05-18 04:29:17.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:17.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:17.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:17.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2182ms +2024-05-18 04:29:18.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:18.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:18.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4879ms +2024-05-18 04:29:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:21.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:21.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6169ms +2024-05-18 04:29:24.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:24.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:24.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:24.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3507ms +2024-05-18 04:29:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:28.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:28.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.1907ms +2024-05-18 04:29:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:30.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:30.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:30.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9443ms +2024-05-18 04:29:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:32.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:32.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:32.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.298ms +2024-05-18 04:29:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:33.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6024ms +2024-05-18 04:29:36.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:36.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:36.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:36.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9146ms +2024-05-18 04:29:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:39.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:39.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:39.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4787ms +2024-05-18 04:29:43.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.2182ms +2024-05-18 04:29:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:45.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:45.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:45.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3364ms +2024-05-18 04:29:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:47.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:47.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.305ms +2024-05-18 04:29:48.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:48.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:48.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:48.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1171ms +2024-05-18 04:29:51.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:51.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:51.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5252ms +2024-05-18 04:29:54.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:54.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:54.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2841ms +2024-05-18 04:29:58.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:29:58.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:58.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:29:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0356ms +2024-05-18 04:30:00.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:00.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:00.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:00.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8146ms +2024-05-18 04:30:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:02.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:02.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:02.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9464ms +2024-05-18 04:30:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:03.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:03.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:03.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9793ms +2024-05-18 04:30:06.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:06.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:06.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:06.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9649ms +2024-05-18 04:30:09.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:09.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:09.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:09.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.719ms +2024-05-18 04:30:13.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:13.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:13.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:13.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.5972ms +2024-05-18 04:30:15.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:15.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:15.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:15.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4078ms +2024-05-18 04:30:17.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:17.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:17.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:17.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0427ms +2024-05-18 04:30:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:18.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:18.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:18.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3633ms +2024-05-18 04:30:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:21.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:21.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8003ms +2024-05-18 04:30:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:24.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:24.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4456ms +2024-05-18 04:30:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:28.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:28.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9974ms +2024-05-18 04:30:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:30.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:30.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:30.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2665ms +2024-05-18 04:30:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:32.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:32.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.9332ms +2024-05-18 04:30:33.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:33.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:33.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:33.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9315ms +2024-05-18 04:30:36.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:36.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:36.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:36.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5425ms +2024-05-18 04:30:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:39.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:39.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3935ms +2024-05-18 04:30:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:43.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1744ms +2024-05-18 04:30:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:45.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:45.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:45.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4756ms +2024-05-18 04:30:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:47.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:47.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:47.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7648ms +2024-05-18 04:30:48.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:48.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:48.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:48.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.0991ms +2024-05-18 04:30:51.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:51.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:51.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:51.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8953ms +2024-05-18 04:30:54.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:54.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:54.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4363ms +2024-05-18 04:30:58.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:30:58.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:58.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:30:58.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0939ms +2024-05-18 04:31:00.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:00.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:00.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:00.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0865ms +2024-05-18 04:31:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:02.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:02.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9032ms +2024-05-18 04:31:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:03.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:03.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:03.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.482ms +2024-05-18 04:31:06.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:06.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:06.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:06.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5998ms +2024-05-18 04:31:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:09.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:09.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6493ms +2024-05-18 04:31:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:13.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:13.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:13.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.0638ms +2024-05-18 04:31:15.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:15.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:15.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:15.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.7941ms +2024-05-18 04:31:17.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:17.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:17.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:17.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.3722ms +2024-05-18 04:31:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:18.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:18.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.051ms +2024-05-18 04:31:21.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:21.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:21.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:21.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5632ms +2024-05-18 04:31:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:24.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:24.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:24.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9516ms +2024-05-18 04:31:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:28.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:28.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.1544ms +2024-05-18 04:31:30.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:30.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:30.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7418ms +2024-05-18 04:31:32.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:32.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:32.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:32.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.228ms +2024-05-18 04:31:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:33.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:33.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:33.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7794ms +2024-05-18 04:31:36.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:36.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:36.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:36.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9067ms +2024-05-18 04:31:39.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:39.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:39.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:39.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.952ms +2024-05-18 04:31:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:43.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:43.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8161ms +2024-05-18 04:31:45.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:45.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:45.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:45.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.6198ms +2024-05-18 04:31:47.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:47.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:47.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:47.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.8189ms +2024-05-18 04:31:48.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:48.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:48.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:48.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7356ms +2024-05-18 04:31:51.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:51.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:51.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:51.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7838ms +2024-05-18 04:31:54.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:54.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:54.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6992ms +2024-05-18 04:31:58.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:31:58.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:31:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.2423ms +2024-05-18 04:32:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:00.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:00.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1374ms +2024-05-18 04:32:02.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:02.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:02.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:02.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3039ms +2024-05-18 04:32:03.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:03.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:03.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:03.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3598ms +2024-05-18 04:32:06.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:06.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:06.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:06.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3099ms +2024-05-18 04:32:09.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:09.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:09.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:09.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9573ms +2024-05-18 04:32:13.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:13.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:13.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:13.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3165ms +2024-05-18 04:32:15.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:15.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:15.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:15.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7216ms +2024-05-18 04:32:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:17.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:17.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:17.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9461ms +2024-05-18 04:32:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:18.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:18.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3289ms +2024-05-18 04:32:21.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:21.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:21.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:21.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1372ms +2024-05-18 04:32:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:24.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:24.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.6272ms +2024-05-18 04:32:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:28.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:28.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1831ms +2024-05-18 04:32:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:30.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:30.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:30.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5017ms +2024-05-18 04:32:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:32.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:32.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.5988ms +2024-05-18 04:32:33.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:33.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:33.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:33.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2361ms +2024-05-18 04:32:36.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:36.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:36.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:36.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3981ms +2024-05-18 04:32:39.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:39.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:39.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.8752ms +2024-05-18 04:32:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.8988ms +2024-05-18 04:32:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:45.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:45.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1939ms +2024-05-18 04:32:47.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:47.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:47.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:47.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2223ms +2024-05-18 04:32:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:48.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:48.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0676ms +2024-05-18 04:32:51.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:51.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:51.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:51.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9282ms +2024-05-18 04:32:54.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:54.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:54.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0834ms +2024-05-18 04:32:58.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:32:58.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:58.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:32:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2674ms +2024-05-18 04:33:00.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:00.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:00.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:00.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8842ms +2024-05-18 04:33:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:02.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:02.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:02.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5823ms +2024-05-18 04:33:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:03.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:03.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:03.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4494ms +2024-05-18 04:33:06.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:06.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:06.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:06.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7457ms +2024-05-18 04:33:09.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:09.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:09.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.2934ms +2024-05-18 04:33:13.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:13.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:13.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:13.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7409ms +2024-05-18 04:33:15.035 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:15.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:15.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:15.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.9108ms +2024-05-18 04:33:17.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:17.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:17.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:17.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.554ms +2024-05-18 04:33:18.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:18.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:18.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:18.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.625ms +2024-05-18 04:33:21.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:21.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:21.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:21.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3996ms +2024-05-18 04:33:24.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:24.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:24.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.4649ms +2024-05-18 04:33:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:28.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:28.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.1328ms +2024-05-18 04:33:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:30.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:30.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:30.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.786ms +2024-05-18 04:33:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:32.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:32.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7899ms +2024-05-18 04:33:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:33.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:33.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4937ms +2024-05-18 04:33:36.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:36.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:36.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:36.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0743ms +2024-05-18 04:33:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:39.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:39.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:39.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7161ms +2024-05-18 04:33:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1847ms +2024-05-18 04:33:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:45.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:45.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3747ms +2024-05-18 04:33:47.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:47.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:47.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:47.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.403ms +2024-05-18 04:33:48.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:48.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:48.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:48.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7365ms +2024-05-18 04:33:51.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:51.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:51.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:51.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1707ms +2024-05-18 04:33:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:54.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:54.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9412ms +2024-05-18 04:33:58.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:33:58.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:58.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:33:58.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.9015ms +2024-05-18 04:34:00.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:00.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:00.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:00.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5148ms +2024-05-18 04:34:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:02.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:02.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:02.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.3922ms +2024-05-18 04:34:03.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:03.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:03.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:03.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4682ms +2024-05-18 04:34:06.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:06.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:06.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:06.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5495ms +2024-05-18 04:34:09.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:09.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:09.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:09.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.5356ms +2024-05-18 04:34:13.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:13.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:13.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:13.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 25.4021ms +2024-05-18 04:34:15.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:15.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:15.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:15.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.8525ms +2024-05-18 04:34:17.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:17.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:17.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:17.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.936ms +2024-05-18 04:34:18.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:18.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:18.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:18.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4833ms +2024-05-18 04:34:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:21.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:21.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:21.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.0966ms +2024-05-18 04:34:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:24.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:24.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6899ms +2024-05-18 04:34:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:28.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:28.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.3914ms +2024-05-18 04:34:30.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:30.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:30.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:30.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5237ms +2024-05-18 04:34:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:32.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:32.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:32.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.7849ms +2024-05-18 04:34:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:33.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:33.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:33.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4911ms +2024-05-18 04:34:36.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:36.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:36.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:36.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9671ms +2024-05-18 04:34:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:39.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:39.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.1161ms +2024-05-18 04:34:43.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:43.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:43.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:43.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4899ms +2024-05-18 04:34:45.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:45.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:45.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:45.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.624ms +2024-05-18 04:34:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:47.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:47.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:47.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4828ms +2024-05-18 04:34:48.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:48.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:48.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:48.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.16ms +2024-05-18 04:34:51.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:51.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:51.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:51.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3278ms +2024-05-18 04:34:54.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:54.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:54.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:54.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.6081ms +2024-05-18 04:34:58.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:34:58.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:58.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:34:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.2007ms +2024-05-18 04:35:00.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:00.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:00.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:00.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.1966ms +2024-05-18 04:35:02.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:02.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:02.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:02.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8623ms +2024-05-18 04:35:03.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:03.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:03.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:03.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7805ms +2024-05-18 04:35:06.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:06.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:06.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:06.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8425ms +2024-05-18 04:35:09.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:09.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:09.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:09.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.628ms +2024-05-18 04:35:13.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:13.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:13.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:13.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2213ms +2024-05-18 04:35:15.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:15.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:15.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:15.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8648ms +2024-05-18 04:35:17.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:17.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:17.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:17.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3144ms +2024-05-18 04:35:18.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:18.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:18.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:18.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.6736ms +2024-05-18 04:35:21.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:21.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:21.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:21.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.2821ms +2024-05-18 04:35:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:24.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:24.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.266ms +2024-05-18 04:35:28.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:28.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:28.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2386ms +2024-05-18 04:35:30.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:30.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:30.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:30.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.3957ms +2024-05-18 04:35:32.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:32.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:32.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:32.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 42.4129ms +2024-05-18 04:35:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:33.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:33.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:33.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9792ms +2024-05-18 04:35:36.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:36.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:36.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:36.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.5475ms +2024-05-18 04:35:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:39.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:39.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:39.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6584ms +2024-05-18 04:35:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:43.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.8584ms +2024-05-18 04:35:45.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:45.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:45.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:45.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.2359ms +2024-05-18 04:35:47.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:47.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:47.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:47.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7079ms +2024-05-18 04:35:48.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:48.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:48.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:48.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.1594ms +2024-05-18 04:35:51.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:51.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:51.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:51.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.4429ms +2024-05-18 04:35:54.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:54.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:54.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:54.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.4509ms +2024-05-18 04:35:58.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:35:58.500 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:58.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:35:58.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 55.7776ms +2024-05-18 04:36:00.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:00.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:00.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:00.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.1274ms +2024-05-18 04:36:02.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:02.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:02.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:02.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9632ms +2024-05-18 04:36:03.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:03.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:03.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:03.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.3924ms +2024-05-18 04:36:06.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:06.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:06.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:06.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.184ms +2024-05-18 04:36:09.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:09.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:09.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:09.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8881ms +2024-05-18 04:36:13.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:13.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:13.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:13.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.9044ms +2024-05-18 04:36:15.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:15.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:15.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:15.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.3803ms +2024-05-18 04:36:17.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:17.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:17.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:17.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.6073ms +2024-05-18 04:36:18.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:18.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:18.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:18.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.661ms +2024-05-18 04:36:21.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:21.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:21.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:21.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.7148ms +2024-05-18 04:36:24.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:24.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:24.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:24.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.8411ms +2024-05-18 04:36:28.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:28.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:28.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:28.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 43.209ms +2024-05-18 04:36:30.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:30.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:30.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:30.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.7398ms +2024-05-18 04:36:32.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:32.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:32.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:32.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9749ms +2024-05-18 04:36:33.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:33.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:33.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:33.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.5011ms +2024-05-18 04:36:36.757 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:36.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:36.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:36.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0915ms +2024-05-18 04:36:39.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:39.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:39.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:39.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4885ms +2024-05-18 04:36:43.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:43.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:43.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:43.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.0923ms +2024-05-18 04:36:45.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:45.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:45.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:45.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6401ms +2024-05-18 04:36:47.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:47.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:47.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:47.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 44.0402ms +2024-05-18 04:36:48.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:48.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:48.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:48.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.4453ms +2024-05-18 04:36:51.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:51.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:51.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:51.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7823ms +2024-05-18 04:36:54.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:54.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:54.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:54.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.092ms +2024-05-18 04:36:58.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:36:58.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:58.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:36:58.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 55.0984ms +2024-05-18 04:37:00.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:00.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:00.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:00.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 33.2922ms +2024-05-18 04:37:02.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:02.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:02.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:02.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.0113ms +2024-05-18 04:37:03.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:03.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:03.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:03.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.0703ms +2024-05-18 04:37:06.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:06.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:06.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:06.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1424ms +2024-05-18 04:37:09.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:09.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:09.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:09.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.0508ms +2024-05-18 04:37:13.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:13.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:13.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:13.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.7256ms +2024-05-18 04:37:15.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:15.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:15.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:15.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8421ms +2024-05-18 04:37:17.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:17.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:17.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:17.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5184ms +2024-05-18 04:37:18.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:18.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:18.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:18.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.6604ms +2024-05-18 04:37:21.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:21.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:21.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:21.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.0319ms +2024-05-18 04:37:24.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:24.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:24.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:24.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 26.9374ms +2024-05-18 04:37:28.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:28.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:28.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:28.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.8845ms +2024-05-18 04:37:30.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:30.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:30.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:30.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3789ms +2024-05-18 04:37:32.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:32.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:32.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:32.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.7154ms +2024-05-18 04:37:33.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:33.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:33.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:33.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.3755ms +2024-05-18 04:37:36.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:36.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:36.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:36.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.5869ms +2024-05-18 04:37:39.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:39.854 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:39.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:39.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 36.5517ms +2024-05-18 04:37:43.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:43.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:43.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:43.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.3266ms +2024-05-18 04:37:45.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:45.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:45.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:45.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.9973ms +2024-05-18 04:37:47.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:47.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:47.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:47.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.7157ms +2024-05-18 04:37:48.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:48.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:48.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:48.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.0129ms +2024-05-18 04:37:51.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:51.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:51.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:51.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8487ms +2024-05-18 04:37:54.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:54.819 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:54.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:54.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 28.1442ms +2024-05-18 04:37:58.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:37:58.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:58.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:37:58.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.9941ms +2024-05-18 04:38:00.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:00.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:00.120 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:00.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 41.6901ms +2024-05-18 04:38:02.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:02.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:02.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:02.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.5507ms +2024-05-18 04:38:03.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:03.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:03.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:03.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.3472ms +2024-05-18 04:38:06.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:06.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:06.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:06.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.4302ms +2024-05-18 04:38:09.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:09.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:09.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:09.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 30.174ms +2024-05-18 04:38:13.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:13.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:13.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:13.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 32.9716ms +2024-05-18 04:38:15.091 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:15.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:15.122 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:15.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 31.3793ms +2024-05-18 04:38:17.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:17.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:17.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:17.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.9993ms +2024-05-18 04:38:18.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:18.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:18.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:18.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 27.8529ms +2024-05-18 04:38:21.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:21.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:21.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:21.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 34.8003ms +2024-05-18 04:38:24.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - null null +2024-05-18 04:38:24.819 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:24.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-18 04:38:24.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/17166c9e-d3f2-44c3-97b6-0949b5a579d1 - 200 null application/json 29.8548ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240519.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240519.txt new file mode 100644 index 000000000..b9e425dd9 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240519.txt @@ -0,0 +1,53713 @@ +2024-05-19 15:18:39.929 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 15:18:39.966 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 15:18:40.045 +02:00 [INF] Registering a service [id: notifications-service:09b851d83b9c461296547379c65ea454] in Consul... +2024-05-19 15:18:40.062 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 15:18:40.065 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 15:18:40.066 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 15:18:40.072 +02:00 [INF] Received HTTP response headers after 3.972ms - 200 +2024-05-19 15:18:40.073 +02:00 [INF] End processing HTTP request after 7.9166ms - 200 +2024-05-19 15:18:40.075 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 15:18:40.076 +02:00 [INF] Registered a service [id: notifications-service:09b851d83b9c461296547379c65ea454] in Consul. +2024-05-19 15:18:40.081 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 15:18:40.090 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 15:18:40.092 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 15:18:40.093 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 15:18:40.095 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 15:18:40.097 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 15:18:40.099 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 15:18:40.101 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 16:20:26.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:20:26.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:26.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:20:26.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 153.092ms +2024-05-19 16:20:26.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:20:26.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:27.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:27.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:20:27.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 35.1122ms +2024-05-19 16:20:41.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:20:41.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:42.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:42.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:20:42.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 30.1794ms +2024-05-19 16:20:56.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:20:56.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:57.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:20:57.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:20:57.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 29.4996ms +2024-05-19 16:21:11.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:21:11.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:12.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:12.011 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:21:12.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 30.3029ms +2024-05-19 16:21:26.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:21:26.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:27.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:27.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:21:27.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 36.436ms +2024-05-19 16:21:41.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - null null +2024-05-19 16:21:41.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:42.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:21:42.030 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:21:42.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/81fddc59-b41d-4f7a-a4f0-b1122a31bc0c - 400 null application/json 35.756ms +2024-05-19 16:22:32.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:22:32.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:32.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:32.640 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:22:32.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.6562ms +2024-05-19 16:22:32.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:22:32.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:32.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:32.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:22:32.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.6179ms +2024-05-19 16:22:47.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:22:47.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:47.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:22:47.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:22:47.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.959ms +2024-05-19 16:23:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:23:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:02.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:02.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:23:02.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.0587ms +2024-05-19 16:23:17.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:23:17.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:17.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:17.690 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:23:17.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 38.3572ms +2024-05-19 16:23:32.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:23:32.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:32.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:32.679 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:23:32.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.2724ms +2024-05-19 16:23:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:23:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:23:47.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:23:47.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.1306ms +2024-05-19 16:24:02.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:24:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:02.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:24:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.3591ms +2024-05-19 16:24:17.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:24:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:17.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:17.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:24:17.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 36.238ms +2024-05-19 16:24:31.591 +02:00 [INF] Deregistering a service [id: notifications-service:09b851d83b9c461296547379c65ea454] from Consul... +2024-05-19 16:24:31.592 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:09b851d83b9c461296547379c65ea454" +2024-05-19 16:24:31.592 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:09b851d83b9c461296547379c65ea454 +2024-05-19 16:24:31.593 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:09b851d83b9c461296547379c65ea454 +2024-05-19 16:24:31.595 +02:00 [INF] Received HTTP response headers after 2.0329ms - 200 +2024-05-19 16:24:31.595 +02:00 [INF] End processing HTTP request after 2.4145ms - 200 +2024-05-19 16:24:31.595 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:24:31.595 +02:00 [INF] Deregistered a service [id: notifications-service:09b851d83b9c461296547379c65ea454] from Consul. +2024-05-19 16:24:40.473 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 16:24:40.509 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 16:24:40.563 +02:00 [INF] Registering a service [id: notifications-service:23131bede44c4144a015e90d023d9288] in Consul... +2024-05-19 16:24:40.587 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 16:24:40.591 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:24:40.592 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:24:40.599 +02:00 [INF] Received HTTP response headers after 4.67ms - 200 +2024-05-19 16:24:40.600 +02:00 [INF] End processing HTTP request after 9.4095ms - 200 +2024-05-19 16:24:40.602 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:24:40.603 +02:00 [INF] Registered a service [id: notifications-service:23131bede44c4144a015e90d023d9288] in Consul. +2024-05-19 16:24:40.609 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 16:24:40.618 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 16:24:40.621 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 16:24:40.623 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 16:24:40.626 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 16:24:40.629 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 16:24:40.632 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 16:24:40.634 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 16:24:47.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:24:47.723 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:47.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:24:47.804 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:24:47.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 142.8613ms +2024-05-19 16:25:02.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:25:02.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:02.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:02.871 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:25:02.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 224.7204ms +2024-05-19 16:25:17.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:25:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:17.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:17.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:25:17.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.9403ms +2024-05-19 16:25:32.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:25:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:32.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:25:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.1351ms +2024-05-19 16:25:47.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:25:47.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:47.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:25:47.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:25:47.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.5304ms +2024-05-19 16:26:02.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:26:02.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:02.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:02.706 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:26:02.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 48.3579ms +2024-05-19 16:26:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:26:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:17.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:26:17.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.8293ms +2024-05-19 16:26:32.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:26:32.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:32.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:32.720 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:26:32.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 39.2809ms +2024-05-19 16:26:37.338 +02:00 [INF] Deregistering a service [id: notifications-service:23131bede44c4144a015e90d023d9288] from Consul... +2024-05-19 16:26:37.340 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:23131bede44c4144a015e90d023d9288" +2024-05-19 16:26:37.340 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:23131bede44c4144a015e90d023d9288 +2024-05-19 16:26:37.340 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:23131bede44c4144a015e90d023d9288 +2024-05-19 16:26:37.344 +02:00 [INF] Received HTTP response headers after 3.7937ms - 200 +2024-05-19 16:26:37.345 +02:00 [INF] End processing HTTP request after 4.6487ms - 200 +2024-05-19 16:26:37.345 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:26:37.346 +02:00 [INF] Deregistered a service [id: notifications-service:23131bede44c4144a015e90d023d9288] from Consul. +2024-05-19 16:26:43.441 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 16:26:43.475 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 16:26:43.534 +02:00 [INF] Registering a service [id: notifications-service:5caf9165d6fa464d80158bdd292a9084] in Consul... +2024-05-19 16:26:43.553 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 16:26:43.556 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:26:43.556 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:26:43.562 +02:00 [INF] Received HTTP response headers after 4.0102ms - 200 +2024-05-19 16:26:43.563 +02:00 [INF] End processing HTTP request after 7.9587ms - 200 +2024-05-19 16:26:43.565 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:26:43.566 +02:00 [INF] Registered a service [id: notifications-service:5caf9165d6fa464d80158bdd292a9084] in Consul. +2024-05-19 16:26:43.572 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 16:26:43.581 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 16:26:43.583 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 16:26:43.585 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 16:26:43.588 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 16:26:43.590 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 16:26:43.592 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 16:26:43.593 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 16:26:47.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:26:47.777 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:47.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:26:47.842 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:26:47.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 126.3872ms +2024-05-19 16:27:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:27:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:02.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:27:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 35.9004ms +2024-05-19 16:27:17.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:27:17.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:17.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:17.678 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:27:17.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.0382ms +2024-05-19 16:27:32.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:27:32.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:32.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:32.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:27:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.8316ms +2024-05-19 16:27:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:27:47.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:47.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:27:47.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:27:47.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 38.0879ms +2024-05-19 16:28:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:28:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:02.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:28:02.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 38.7464ms +2024-05-19 16:28:17.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:28:17.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:17.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:17.674 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:28:17.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.047ms +2024-05-19 16:28:32.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:28:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:32.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:28:32.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 35.0069ms +2024-05-19 16:28:47.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:28:47.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:47.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:28:47.689 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:28:47.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 38.5269ms +2024-05-19 16:29:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:29:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:02.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:29:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.5144ms +2024-05-19 16:29:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:29:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:17.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:29:17.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.4053ms +2024-05-19 16:29:32.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:29:32.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:32.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:32.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:29:32.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.7967ms +2024-05-19 16:29:47.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:29:47.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:47.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:29:47.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:29:47.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.7376ms +2024-05-19 16:30:02.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:30:02.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:02.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:02.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:30:02.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.8574ms +2024-05-19 16:30:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:30:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:17.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:17.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:30:17.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.103ms +2024-05-19 16:30:32.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:30:32.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:32.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:30:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.0384ms +2024-05-19 16:30:47.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:30:47.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:47.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:30:47.684 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:30:47.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 35.0757ms +2024-05-19 16:31:02.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:31:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:02.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:31:02.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 36.1736ms +2024-05-19 16:31:17.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:31:17.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:17.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:17.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:31:17.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.0006ms +2024-05-19 16:31:32.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:31:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:32.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:31:32.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.6322ms +2024-05-19 16:31:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:31:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:47.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:31:47.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:31:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.7506ms +2024-05-19 16:32:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:32:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:02.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:02.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:32:02.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 38.7398ms +2024-05-19 16:32:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:32:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:17.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:17.690 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:32:17.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 41.1286ms +2024-05-19 16:32:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:32:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:32:32.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:32:32.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.7956ms +2024-05-19 16:32:44.172 +02:00 [INF] Deregistering a service [id: notifications-service:5caf9165d6fa464d80158bdd292a9084] from Consul... +2024-05-19 16:32:44.175 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:5caf9165d6fa464d80158bdd292a9084" +2024-05-19 16:32:44.175 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5caf9165d6fa464d80158bdd292a9084 +2024-05-19 16:32:44.175 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5caf9165d6fa464d80158bdd292a9084 +2024-05-19 16:32:44.182 +02:00 [INF] Received HTTP response headers after 5.8862ms - 200 +2024-05-19 16:32:44.182 +02:00 [INF] End processing HTTP request after 7.0562ms - 200 +2024-05-19 16:32:44.182 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:32:44.184 +02:00 [INF] Deregistered a service [id: notifications-service:5caf9165d6fa464d80158bdd292a9084] from Consul. +2024-05-19 16:45:44.611 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 16:45:44.645 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 16:45:44.722 +02:00 [INF] Registering a service [id: notifications-service:25fdb4f36df1463facc78b1d886dda15] in Consul... +2024-05-19 16:45:44.739 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 16:45:44.742 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:45:44.743 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 16:45:44.750 +02:00 [INF] Received HTTP response headers after 5.092ms - 200 +2024-05-19 16:45:44.751 +02:00 [INF] End processing HTTP request after 8.9999ms - 200 +2024-05-19 16:45:44.753 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 16:45:44.753 +02:00 [INF] Registered a service [id: notifications-service:25fdb4f36df1463facc78b1d886dda15] in Consul. +2024-05-19 16:45:44.759 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 16:45:44.767 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 16:45:44.769 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 16:45:44.770 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 16:45:44.772 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 16:45:44.774 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 16:45:44.775 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 16:45:44.777 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 16:47:15.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:47:15.155 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:15.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:15.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:47:15.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 219.9038ms +2024-05-19 16:47:15.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:47:15.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:15.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:15.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:47:15.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.6892ms +2024-05-19 16:47:30.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:47:30.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:30.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:30.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:47:30.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 36.2937ms +2024-05-19 16:47:45.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:47:45.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:45.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:47:45.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:47:45.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.6254ms +2024-05-19 16:48:00.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:48:00.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:00.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:00.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:48:00.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 37.0139ms +2024-05-19 16:48:15.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:48:15.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:15.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:15.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:48:15.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.7851ms +2024-05-19 16:48:30.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:48:30.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:30.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:30.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:48:30.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.5928ms +2024-05-19 16:48:45.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:48:45.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:45.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:48:45.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:48:45.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.8102ms +2024-05-19 16:49:00.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:49:00.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:00.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:00.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:49:00.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.406ms +2024-05-19 16:49:15.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:49:15.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:15.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:15.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:49:15.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.3428ms +2024-05-19 16:49:30.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:49:30.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:30.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:30.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:49:30.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.3292ms +2024-05-19 16:49:45.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:49:45.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:45.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:49:45.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:49:45.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.7185ms +2024-05-19 16:50:00.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:50:00.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:00.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:00.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:50:00.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.3369ms +2024-05-19 16:50:15.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:50:15.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:15.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:15.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:50:15.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.7807ms +2024-05-19 16:50:30.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:50:30.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:30.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:30.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:50:30.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.2161ms +2024-05-19 16:50:45.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:50:45.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:45.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:50:45.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:50:45.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.627ms +2024-05-19 16:51:00.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:51:00.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:00.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:00.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:51:00.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.7054ms +2024-05-19 16:51:15.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:51:15.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:15.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:15.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:51:15.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.7156ms +2024-05-19 16:51:30.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:51:30.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:30.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:30.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:51:30.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.946ms +2024-05-19 16:51:45.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:51:45.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:45.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:51:45.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:51:45.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.4832ms +2024-05-19 16:52:00.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:52:00.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:00.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:00.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:52:00.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.0355ms +2024-05-19 16:52:15.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:52:15.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:15.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:15.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:52:15.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.487ms +2024-05-19 16:52:30.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:52:30.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:30.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:30.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:52:30.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.3554ms +2024-05-19 16:52:45.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:52:45.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:45.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:52:45.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:52:45.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.4504ms +2024-05-19 16:53:00.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:53:00.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:00.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:00.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:53:00.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.72ms +2024-05-19 16:53:15.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:53:15.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:15.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:15.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:53:15.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.8371ms +2024-05-19 16:53:30.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:53:30.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:30.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:30.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:53:30.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.0878ms +2024-05-19 16:53:45.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:53:45.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:45.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:53:45.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:53:45.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.8784ms +2024-05-19 16:54:00.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:54:00.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:00.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:00.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:54:00.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.4678ms +2024-05-19 16:54:15.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:54:15.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:15.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:15.337 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:54:15.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.1997ms +2024-05-19 16:54:30.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:54:30.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:30.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:30.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:54:30.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.1778ms +2024-05-19 16:54:45.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:54:45.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:45.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:54:45.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:54:45.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 33.0751ms +2024-05-19 16:55:00.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:55:00.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:00.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:00.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:55:00.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.4329ms +2024-05-19 16:55:15.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:55:15.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:15.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:15.380 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:55:15.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 30.22ms +2024-05-19 16:55:30.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:55:30.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:30.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:30.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:55:30.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.1091ms +2024-05-19 16:55:45.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:55:45.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:45.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:55:45.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:55:45.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 27.1058ms +2024-05-19 16:56:00.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:56:00.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:00.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:00.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:56:00.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 32.8752ms +2024-05-19 16:56:15.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:56:15.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:15.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:15.337 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:56:15.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 29.5337ms +2024-05-19 16:56:30.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:56:30.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:30.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:30.336 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:56:30.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.8519ms +2024-05-19 16:56:45.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:56:45.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:45.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:56:45.335 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:56:45.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.1604ms +2024-05-19 16:57:00.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:57:00.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:57:00.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:57:00.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:57:00.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 31.9342ms +2024-05-19 16:57:15.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:57:15.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:57:15.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:57:15.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:57:15.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 34.1165ms +2024-05-19 16:58:09.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:58:09.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:58:09.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:58:09.618 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:58:09.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 28.8351ms +2024-05-19 16:58:09.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - null null +2024-05-19 16:58:09.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:58:09.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 16:58:09.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 16:58:09.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/cb62bcb2-d39d-43fe-8b60-9f9962492107 - 400 null application/json 37.5712ms +2024-05-19 17:00:37.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:00:37.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:37.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:37.755 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:00:37.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 27.9592ms +2024-05-19 17:00:37.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:00:37.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:37.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:37.789 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:00:37.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 29.3553ms +2024-05-19 17:00:52.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:00:52.760 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:52.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:00:52.788 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:00:52.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 28.3839ms +2024-05-19 17:01:07.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:01:07.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:07.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:07.794 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:01:07.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 29.0593ms +2024-05-19 17:01:26.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:01:26.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:26.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:26.998 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:01:27.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 30.6319ms +2024-05-19 17:01:27.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:01:27.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:27.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:01:27.034 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:01:27.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 31.1648ms +2024-05-19 17:03:07.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:03:07.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:07.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:07.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:03:07.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 30.102ms +2024-05-19 17:03:07.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:03:07.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:07.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:07.382 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:03:07.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 32.3675ms +2024-05-19 17:03:39.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:03:39.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:39.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:39.243 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:03:39.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 29.2059ms +2024-05-19 17:03:39.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:03:39.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:39.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:03:39.947 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:03:39.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 33.7968ms +2024-05-19 17:05:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:05:42.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:05:42.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:05:42.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:05:42.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 51.5005ms +2024-05-19 17:05:42.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:05:42.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:05:42.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:05:42.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:05:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 33.5741ms +2024-05-19 17:08:20.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:08:20.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:20.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:20.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:08:20.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 29.012ms +2024-05-19 17:08:20.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:08:20.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:20.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:20.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:08:20.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 28.2413ms +2024-05-19 17:08:22.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:08:22.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:22.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:22.493 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:08:22.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 32.3432ms +2024-05-19 17:08:31.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:08:31.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:31.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:31.255 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:08:31.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 35.4066ms +2024-05-19 17:08:31.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:08:31.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:31.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:08:31.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:08:31.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 33.1783ms +2024-05-19 17:09:37.719 +02:00 [INF] Deregistering a service [id: notifications-service:25fdb4f36df1463facc78b1d886dda15] from Consul... +2024-05-19 17:09:37.720 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:25fdb4f36df1463facc78b1d886dda15" +2024-05-19 17:09:37.720 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:25fdb4f36df1463facc78b1d886dda15 +2024-05-19 17:09:37.720 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:25fdb4f36df1463facc78b1d886dda15 +2024-05-19 17:09:37.722 +02:00 [INF] Received HTTP response headers after 1.9585ms - 200 +2024-05-19 17:09:37.723 +02:00 [INF] End processing HTTP request after 2.4709ms - 200 +2024-05-19 17:09:37.723 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:09:37.723 +02:00 [INF] Deregistered a service [id: notifications-service:25fdb4f36df1463facc78b1d886dda15] from Consul. +2024-05-19 17:09:45.731 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 17:09:45.765 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 17:09:45.830 +02:00 [INF] Registering a service [id: notifications-service:d409729d09e64b65a50d30b2f997f08d] in Consul... +2024-05-19 17:09:45.847 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 17:09:45.850 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:09:45.851 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:09:45.857 +02:00 [INF] Received HTTP response headers after 3.9273ms - 200 +2024-05-19 17:09:45.857 +02:00 [INF] End processing HTTP request after 7.9981ms - 200 +2024-05-19 17:09:45.860 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:09:45.860 +02:00 [INF] Registered a service [id: notifications-service:d409729d09e64b65a50d30b2f997f08d] in Consul. +2024-05-19 17:09:45.866 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 17:09:45.874 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 17:09:45.876 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 17:09:45.878 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 17:09:45.880 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 17:09:45.882 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 17:09:45.884 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 17:09:45.886 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 17:10:02.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:02.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:02.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:02.307 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:02.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 207.3621ms +2024-05-19 17:10:02.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:02.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:02.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:02.373 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:02.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 41.8168ms +2024-05-19 17:10:10.364 +02:00 [INF] Deregistering a service [id: notifications-service:d409729d09e64b65a50d30b2f997f08d] from Consul... +2024-05-19 17:10:10.366 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d409729d09e64b65a50d30b2f997f08d" +2024-05-19 17:10:10.366 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d409729d09e64b65a50d30b2f997f08d +2024-05-19 17:10:10.366 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d409729d09e64b65a50d30b2f997f08d +2024-05-19 17:10:10.368 +02:00 [INF] Received HTTP response headers after 1.9601ms - 200 +2024-05-19 17:10:10.369 +02:00 [INF] End processing HTTP request after 2.7191ms - 200 +2024-05-19 17:10:10.369 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:10:10.369 +02:00 [INF] Deregistered a service [id: notifications-service:d409729d09e64b65a50d30b2f997f08d] from Consul. +2024-05-19 17:10:17.166 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 17:10:17.203 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 17:10:17.252 +02:00 [INF] Registering a service [id: notifications-service:0ae12ce7580d4b3fb40b58dce572732b] in Consul... +2024-05-19 17:10:17.267 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 17:10:17.271 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:10:17.271 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 17:10:17.278 +02:00 [INF] Received HTTP response headers after 4.3508ms - 200 +2024-05-19 17:10:17.278 +02:00 [INF] End processing HTTP request after 8.3705ms - 200 +2024-05-19 17:10:17.281 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:10:17.281 +02:00 [INF] Registered a service [id: notifications-service:0ae12ce7580d4b3fb40b58dce572732b] in Consul. +2024-05-19 17:10:17.287 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 17:10:17.296 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 17:10:17.298 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 17:10:17.300 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 17:10:17.302 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 17:10:17.304 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 17:10:17.306 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 17:10:17.308 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 17:10:25.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:25.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:25.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:25.868 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:25.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 165.5524ms +2024-05-19 17:10:26.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:26.113 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:26.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:26.148 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:26.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 49.5877ms +2024-05-19 17:10:40.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:40.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:40.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:40.946 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:40.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 41.2565ms +2024-05-19 17:10:55.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:10:55.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:55.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:10:55.940 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:10:55.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 40.6073ms +2024-05-19 17:11:10.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - null null +2024-05-19 17:11:10.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:11:10.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:11:10.929 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:11:10.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/8d0c9ee9-af92-47dd-8acd-b93a3135eb00 - 400 null application/json 31.2663ms +2024-05-19 17:12:14.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:12:14.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:14.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:14.779 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:12:14.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 29.263ms +2024-05-19 17:12:14.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:12:14.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:14.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:14.819 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:12:14.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 35.934ms +2024-05-19 17:12:29.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:12:29.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:29.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:29.816 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:12:29.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 28.3076ms +2024-05-19 17:12:44.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:12:44.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:44.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:44.814 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:12:44.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 31.4643ms +2024-05-19 17:12:59.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:12:59.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:59.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:12:59.821 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:12:59.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 34.8729ms +2024-05-19 17:13:27.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:13:27.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:13:27.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:13:27.725 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:13:27.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 41.0463ms +2024-05-19 17:13:27.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - null null +2024-05-19 17:13:27.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:13:27.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:13:27.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:13:27.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/d57216ff-69d0-4fcc-8143-0348ab2991c1 - 400 null application/json 35.1752ms +2024-05-19 17:14:33.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:14:33.433 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:33.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:33.462 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:14:33.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 29.9289ms +2024-05-19 17:14:33.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:14:33.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:33.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:33.495 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:14:33.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 30.1079ms +2024-05-19 17:14:48.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:14:48.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:48.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:14:48.495 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:14:48.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 29.5125ms +2024-05-19 17:15:03.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:15:03.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:03.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:03.502 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:15:03.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 37.8413ms +2024-05-19 17:15:18.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:15:18.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:18.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:18.630 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:15:18.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 165.4698ms +2024-05-19 17:15:33.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:15:33.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:33.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:33.499 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:15:33.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 30.6535ms +2024-05-19 17:15:48.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:15:48.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:48.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:15:48.501 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:15:48.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 32.534ms +2024-05-19 17:16:03.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:16:03.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:03.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:03.502 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:16:03.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 35.6234ms +2024-05-19 17:16:18.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:16:18.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:18.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:18.518 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:16:18.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 33.0578ms +2024-05-19 17:16:33.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:16:33.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:33.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:33.503 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:16:33.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 35.5121ms +2024-05-19 17:16:48.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 17:16:48.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:48.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:16:48.498 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:16:48.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 400 null application/json 31.7784ms +2024-05-19 17:17:42.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:17:42.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:42.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:42.936 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:17:42.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.0902ms +2024-05-19 17:17:42.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:17:42.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:42.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:42.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:17:42.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6338ms +2024-05-19 17:17:57.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:17:57.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:57.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:17:57.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:17:57.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8518ms +2024-05-19 17:18:12.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:18:12.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:12.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:12.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:18:12.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3541ms +2024-05-19 17:18:27.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:18:27.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:27.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:27.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:18:27.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7291ms +2024-05-19 17:18:42.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:18:42.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:42.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:42.988 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:18:42.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.4664ms +2024-05-19 17:18:57.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:18:57.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:18:57.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:18:57.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1473ms +2024-05-19 17:19:00.532 +02:00 [INF] Received a message with ID: 'b6c1c537eaa64e9484cf294f6b99e1b5', Correlation ID: '9503fdbeea77410faf87051616e3216e', timestamp: 1716131940, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 17:19:00.532 +02:00 [INF] Received a message with ID: '0efc4c3e4cfc41d5838985d4f956cb95', Correlation ID: 'b49d5d0399c349bc82fca3e7891887e4', timestamp: 1716131940, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 17:19:00.549 +02:00 [INF] Handling a message: friend_invited with ID: 0efc4c3e4cfc41d5838985d4f956cb95, Correlation ID: b49d5d0399c349bc82fca3e7891887e4, retry: 0 +2024-05-19 17:19:00.549 +02:00 [INF] Handling a message: friend_request_sent with ID: b6c1c537eaa64e9484cf294f6b99e1b5, Correlation ID: 9503fdbeea77410faf87051616e3216e, retry: 0 +2024-05-19 17:19:00.831 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:19:00.833 +02:00 [INF] Handled a message: friend_request_sent with ID: b6c1c537eaa64e9484cf294f6b99e1b5, Correlation ID: 9503fdbeea77410faf87051616e3216e, retry: 0 +2024-05-19 17:19:01.010 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 17:19:01.010 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:19:01.010 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:19:01.043 +02:00 [INF] Received HTTP response headers after 32.6519ms - 200 +2024-05-19 17:19:01.043 +02:00 [INF] End processing HTTP request after 33.0951ms - 200 +2024-05-19 17:19:01.044 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:19:01.314 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:19:01.314 +02:00 [INF] Handled a message: friend_invited with ID: 0efc4c3e4cfc41d5838985d4f956cb95, Correlation ID: b49d5d0399c349bc82fca3e7891887e4, retry: 0 +2024-05-19 17:19:12.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:19:12.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:12.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:12.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:19:12.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5646ms +2024-05-19 17:19:27.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:19:27.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:27.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:27.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:19:27.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7118ms +2024-05-19 17:19:42.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:19:42.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:42.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:42.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:19:42.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2619ms +2024-05-19 17:19:57.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:19:57.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:19:57.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:19:57.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9229ms +2024-05-19 17:20:12.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:20:12.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:12.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:12.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:20:12.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9491ms +2024-05-19 17:20:27.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:20:27.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:27.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:27.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:20:27.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6375ms +2024-05-19 17:20:42.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:20:42.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:42.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:42.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:20:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6645ms +2024-05-19 17:20:57.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:20:57.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:57.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:20:57.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:20:57.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.653ms +2024-05-19 17:21:12.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:21:12.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:12.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:12.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:21:12.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8832ms +2024-05-19 17:21:27.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:21:27.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:27.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:27.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:21:27.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0924ms +2024-05-19 17:21:42.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:21:42.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:42.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:42.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:21:42.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8616ms +2024-05-19 17:21:57.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:21:57.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:57.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:21:57.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:21:57.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9944ms +2024-05-19 17:22:12.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:22:12.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:12.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:12.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:22:12.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1324ms +2024-05-19 17:22:27.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:22:27.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:27.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:27.983 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:22:27.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9219ms +2024-05-19 17:22:42.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:22:42.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:42.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:42.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:22:42.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2363ms +2024-05-19 17:22:57.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:22:57.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:22:57.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:22:57.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1259ms +2024-05-19 17:23:12.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:23:12.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:12.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:12.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:23:12.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4301ms +2024-05-19 17:23:27.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:23:27.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:27.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:27.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:23:27.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6506ms +2024-05-19 17:23:42.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:23:42.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:42.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:42.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:23:42.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6937ms +2024-05-19 17:23:57.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:23:57.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:57.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:23:57.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:23:57.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1941ms +2024-05-19 17:24:12.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:24:12.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:12.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:12.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:24:12.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1701ms +2024-05-19 17:24:27.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:24:27.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:27.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:27.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:24:27.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5561ms +2024-05-19 17:24:42.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:24:42.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:42.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:42.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:24:42.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7148ms +2024-05-19 17:24:57.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:24:57.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:24:57.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:24:57.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7832ms +2024-05-19 17:25:12.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:25:12.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:12.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:12.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:25:12.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7695ms +2024-05-19 17:25:27.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:25:27.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:27.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:27.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:25:27.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8096ms +2024-05-19 17:25:42.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:25:42.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:42.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:42.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:25:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4309ms +2024-05-19 17:25:57.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:25:57.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:57.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:25:57.982 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:25:57.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.0042ms +2024-05-19 17:26:12.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:26:12.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:12.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:12.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:26:12.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1201ms +2024-05-19 17:26:27.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:26:27.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:27.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:27.982 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:26:27.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8088ms +2024-05-19 17:26:42.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:26:42.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:42.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:42.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:26:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4984ms +2024-05-19 17:26:57.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:26:57.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:57.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:26:57.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:26:57.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2488ms +2024-05-19 17:27:12.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:27:12.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:12.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:12.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:27:12.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8803ms +2024-05-19 17:27:27.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:27:27.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:27.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:27.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:27:27.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4257ms +2024-05-19 17:27:42.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:27:42.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:42.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:42.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:27:42.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0575ms +2024-05-19 17:27:57.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:27:57.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:57.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:27:57.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:27:57.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3185ms +2024-05-19 17:28:12.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:28:12.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:12.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:12.996 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:28:13.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 53.7363ms +2024-05-19 17:28:27.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:28:27.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:27.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:27.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:28:27.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1632ms +2024-05-19 17:28:42.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:28:42.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:42.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:42.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:28:42.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6164ms +2024-05-19 17:28:57.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:28:57.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:57.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:28:57.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:28:57.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0216ms +2024-05-19 17:29:12.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:29:12.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:12.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:12.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:29:12.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7406ms +2024-05-19 17:29:27.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:29:27.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:27.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:27.970 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:29:27.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.899ms +2024-05-19 17:29:42.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:29:42.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:42.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:42.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:29:42.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8816ms +2024-05-19 17:29:57.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:29:57.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:57.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:29:57.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:29:57.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3798ms +2024-05-19 17:30:12.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:30:12.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:12.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:12.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:30:12.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3734ms +2024-05-19 17:30:27.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:30:27.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:27.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:27.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:30:27.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3527ms +2024-05-19 17:30:42.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:30:42.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:42.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:42.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:30:42.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3527ms +2024-05-19 17:30:57.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:30:57.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:57.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:30:57.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:30:57.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3969ms +2024-05-19 17:31:12.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:31:12.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:12.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:12.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:31:12.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9648ms +2024-05-19 17:31:19.294 +02:00 [INF] Received a message with ID: '45ed8dfe596849518d00c06024100b5e', Correlation ID: '5d1acb533cab462481940a679e34ce4b', timestamp: 1716132679, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 17:31:19.298 +02:00 [INF] Received a message with ID: '5e15d5be272246c58cf80e652f706509', Correlation ID: '002da6659e364c689beb3a6ca65293ca', timestamp: 1716132679, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 17:31:19.298 +02:00 [INF] Handling a message: friend_invited with ID: 45ed8dfe596849518d00c06024100b5e, Correlation ID: 5d1acb533cab462481940a679e34ce4b, retry: 0 +2024-05-19 17:31:19.299 +02:00 [INF] Handling a message: friend_request_sent with ID: 5e15d5be272246c58cf80e652f706509, Correlation ID: 002da6659e364c689beb3a6ca65293ca, retry: 0 +2024-05-19 17:31:19.442 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:31:19.442 +02:00 [INF] Handled a message: friend_request_sent with ID: 5e15d5be272246c58cf80e652f706509, Correlation ID: 002da6659e364c689beb3a6ca65293ca, retry: 0 +2024-05-19 17:31:19.674 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 17:31:19.674 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:31:19.675 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:31:19.709 +02:00 [INF] Received HTTP response headers after 32.0224ms - 200 +2024-05-19 17:31:19.709 +02:00 [INF] End processing HTTP request after 35.0711ms - 200 +2024-05-19 17:31:19.710 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:31:19.883 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:31:19.883 +02:00 [INF] Handled a message: friend_invited with ID: 45ed8dfe596849518d00c06024100b5e, Correlation ID: 5d1acb533cab462481940a679e34ce4b, retry: 0 +2024-05-19 17:31:27.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:31:27.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:27.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:27.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:31:27.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1728ms +2024-05-19 17:31:42.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:31:42.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:42.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:42.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:31:42.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.912ms +2024-05-19 17:31:57.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:31:57.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:31:57.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:31:57.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9693ms +2024-05-19 17:32:12.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:32:12.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:12.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:12.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:32:12.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9468ms +2024-05-19 17:32:27.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:32:27.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:27.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:27.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:32:27.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7516ms +2024-05-19 17:32:42.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:32:42.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:42.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:42.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:32:42.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1267ms +2024-05-19 17:32:57.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:32:57.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:57.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:32:57.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:32:57.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8483ms +2024-05-19 17:33:12.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:33:12.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:12.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:12.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:33:12.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5183ms +2024-05-19 17:33:27.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:33:27.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:27.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:27.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:33:27.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3832ms +2024-05-19 17:33:42.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:33:42.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:42.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:42.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:33:42.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.702ms +2024-05-19 17:33:57.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:33:57.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:57.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:33:57.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:33:57.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7659ms +2024-05-19 17:34:12.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:34:12.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:12.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:12.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:34:12.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0715ms +2024-05-19 17:34:19.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:34:19.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:19.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:19.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:34:19.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4239ms +2024-05-19 17:34:19.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:34:19.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:19.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:19.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:34:19.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.388ms +2024-05-19 17:34:34.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:34:34.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:34.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:34.437 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:34:34.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6235ms +2024-05-19 17:34:49.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:34:49.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:49.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:34:49.436 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:34:49.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7479ms +2024-05-19 17:35:04.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:35:04.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:04.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:04.437 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:35:04.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7274ms +2024-05-19 17:35:19.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:35:19.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:19.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:19.434 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:35:19.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9559ms +2024-05-19 17:35:34.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:35:34.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:34.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:34.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:35:34.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7949ms +2024-05-19 17:35:37.049 +02:00 [INF] Received a message with ID: '7cb5da468aa745afb603c6b1446d247b', Correlation ID: '2cfdac8a91bc4151b4a88eb9ded49a77', timestamp: 1716132937, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 17:35:37.050 +02:00 [INF] Handling a message: friend_invited with ID: 7cb5da468aa745afb603c6b1446d247b, Correlation ID: 2cfdac8a91bc4151b4a88eb9ded49a77, retry: 0 +2024-05-19 17:35:37.057 +02:00 [INF] Received a message with ID: '57dafdce842349c189b4591bbc12d6f6', Correlation ID: 'eebe249565c845ed84982b8495098d64', timestamp: 1716132937, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 17:35:37.057 +02:00 [INF] Handling a message: friend_request_sent with ID: 57dafdce842349c189b4591bbc12d6f6, Correlation ID: eebe249565c845ed84982b8495098d64, retry: 0 +2024-05-19 17:35:37.081 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 17:35:37.081 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:35:37.081 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 17:35:37.113 +02:00 [INF] Received HTTP response headers after 32.2526ms - 200 +2024-05-19 17:35:37.113 +02:00 [INF] End processing HTTP request after 32.654ms - 200 +2024-05-19 17:35:37.114 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 17:35:37.178 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:35:37.178 +02:00 [INF] Handled a message: friend_request_sent with ID: 57dafdce842349c189b4591bbc12d6f6, Correlation ID: eebe249565c845ed84982b8495098d64, retry: 0 +2024-05-19 17:35:37.264 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 17:35:37.264 +02:00 [INF] Handled a message: friend_invited with ID: 7cb5da468aa745afb603c6b1446d247b, Correlation ID: 2cfdac8a91bc4151b4a88eb9ded49a77, retry: 0 +2024-05-19 17:35:49.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:35:49.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:49.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:35:49.446 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:35:49.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.936ms +2024-05-19 17:36:04.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:36:04.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:04.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:04.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:36:04.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.572ms +2024-05-19 17:36:19.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:36:19.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:19.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:19.489 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:36:19.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 82.2264ms +2024-05-19 17:36:34.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:36:34.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:34.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:34.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:36:34.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4165ms +2024-05-19 17:36:49.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:36:49.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:49.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:36:49.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:36:49.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.2365ms +2024-05-19 17:37:04.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:37:04.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:04.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:04.442 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:37:04.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5557ms +2024-05-19 17:37:19.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:37:19.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:19.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:19.442 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:37:19.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9991ms +2024-05-19 17:37:34.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:37:34.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:34.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:34.447 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:37:34.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.6167ms +2024-05-19 17:37:49.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:37:49.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:49.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:37:49.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:37:49.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.1875ms +2024-05-19 17:38:04.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:38:04.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:04.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:04.440 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:38:04.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6778ms +2024-05-19 17:38:19.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:38:19.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:19.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:19.445 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:38:19.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6351ms +2024-05-19 17:38:34.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:38:34.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:34.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:34.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:38:34.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2556ms +2024-05-19 17:38:49.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:38:49.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:49.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:38:49.440 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:38:49.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2654ms +2024-05-19 17:39:04.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:39:04.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:04.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:04.436 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:39:04.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7908ms +2024-05-19 17:39:19.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:39:19.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:19.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:19.438 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:39:19.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5593ms +2024-05-19 17:39:34.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:39:34.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:34.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:34.438 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:39:34.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6513ms +2024-05-19 17:39:49.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:39:49.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:49.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:39:49.440 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:39:49.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1145ms +2024-05-19 17:40:04.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:40:04.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:04.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:04.446 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:40:04.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0349ms +2024-05-19 17:40:19.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:40:19.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:19.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:19.439 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:40:19.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6603ms +2024-05-19 17:40:34.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:40:34.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:34.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:34.457 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:40:34.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.3337ms +2024-05-19 17:40:49.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:40:49.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:49.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:40:49.676 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:40:49.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 265.4783ms +2024-05-19 17:41:04.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:41:04.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:04.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:04.460 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:41:04.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.513ms +2024-05-19 17:41:19.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:41:19.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:19.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:19.452 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:41:19.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.996ms +2024-05-19 17:41:34.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:41:34.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:34.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:34.446 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:41:34.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.4909ms +2024-05-19 17:41:49.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:41:49.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:49.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:41:49.695 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:41:49.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 285.2548ms +2024-05-19 17:42:04.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:42:04.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:04.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:04.486 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:42:04.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 76.0418ms +2024-05-19 17:42:19.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:42:19.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:19.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:19.445 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:42:19.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3593ms +2024-05-19 17:42:34.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:42:34.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:34.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:34.454 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:42:34.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7085ms +2024-05-19 17:42:49.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:42:49.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:49.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:42:49.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:42:49.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7943ms +2024-05-19 17:43:04.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:43:04.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:04.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:04.444 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:43:04.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8502ms +2024-05-19 17:43:19.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:43:19.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:19.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:19.444 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:43:19.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8732ms +2024-05-19 17:43:34.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:43:34.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:34.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:34.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:43:34.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6668ms +2024-05-19 17:43:49.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:43:49.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:49.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:43:49.453 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:43:49.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.1876ms +2024-05-19 17:44:04.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:44:04.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:04.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:04.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:44:04.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8116ms +2024-05-19 17:44:19.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:44:19.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:19.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:19.463 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:44:19.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 53.4749ms +2024-05-19 17:44:34.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:44:34.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:34.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:34.445 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:44:34.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7882ms +2024-05-19 17:44:49.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:44:49.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:49.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:44:49.461 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:44:49.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.1763ms +2024-05-19 17:45:04.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:45:04.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:04.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:04.438 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:45:04.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9916ms +2024-05-19 17:45:19.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:45:19.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:19.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:19.447 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:45:19.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7101ms +2024-05-19 17:45:34.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:45:34.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:34.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:34.449 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:45:34.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.9087ms +2024-05-19 17:45:49.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:45:49.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:49.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:45:49.435 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:45:49.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6369ms +2024-05-19 17:46:04.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:46:04.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:04.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:04.457 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:46:04.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 46.7633ms +2024-05-19 17:46:19.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:46:19.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:19.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:19.436 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:46:19.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9891ms +2024-05-19 17:46:34.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:46:34.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:34.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:34.489 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:46:34.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 74.4713ms +2024-05-19 17:46:49.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:46:49.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:49.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:46:49.443 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:46:49.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0646ms +2024-05-19 17:47:04.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:47:04.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:04.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:04.441 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:47:04.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6022ms +2024-05-19 17:47:19.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:47:19.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:19.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:19.437 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:47:19.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8344ms +2024-05-19 17:47:34.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:47:34.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:34.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:34.454 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:47:34.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.6745ms +2024-05-19 17:47:49.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:47:49.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:49.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:47:49.443 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:47:49.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0038ms +2024-05-19 17:48:04.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:48:04.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:04.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:04.439 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:48:04.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.208ms +2024-05-19 17:48:19.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:48:19.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:19.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:19.442 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:48:19.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5811ms +2024-05-19 17:48:34.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:48:34.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:34.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:34.438 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:48:34.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2526ms +2024-05-19 17:48:49.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:48:49.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:49.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:48:49.435 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:48:49.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4368ms +2024-05-19 17:49:04.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:04.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:04.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:04.434 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:04.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1863ms +2024-05-19 17:49:19.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:19.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:19.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:19.433 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:19.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6333ms +2024-05-19 17:49:23.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:23.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:23.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:23.524 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:23.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0566ms +2024-05-19 17:49:23.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:23.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:23.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:23.557 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:23.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7401ms +2024-05-19 17:49:38.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:38.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:38.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:38.559 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:38.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7246ms +2024-05-19 17:49:53.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:49:53.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:53.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:49:53.560 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:49:53.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7466ms +2024-05-19 17:50:14.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:50:14.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:14.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:14.522 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:50:14.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 53.9019ms +2024-05-19 17:50:14.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:50:14.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:14.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:14.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:50:14.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 141.3497ms +2024-05-19 17:50:29.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:50:29.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:29.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:29.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:50:29.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6534ms +2024-05-19 17:50:44.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:50:44.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:44.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:44.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:50:44.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4506ms +2024-05-19 17:50:59.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:50:59.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:59.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:50:59.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:50:59.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2106ms +2024-05-19 17:51:14.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:51:14.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:14.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:14.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:51:14.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.863ms +2024-05-19 17:51:29.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:51:29.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:29.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:29.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:51:29.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6919ms +2024-05-19 17:51:44.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:51:44.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:44.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:44.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:51:44.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9157ms +2024-05-19 17:51:59.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:51:59.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:59.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:51:59.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:51:59.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5436ms +2024-05-19 17:52:14.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:52:14.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:14.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:14.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:52:14.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5521ms +2024-05-19 17:52:29.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:52:29.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:29.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:29.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:52:29.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5221ms +2024-05-19 17:52:44.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:52:44.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:44.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:44.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:52:44.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3949ms +2024-05-19 17:52:59.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:52:59.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:59.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:52:59.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:52:59.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.171ms +2024-05-19 17:53:14.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:53:14.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:14.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:14.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:53:14.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3882ms +2024-05-19 17:53:29.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:53:29.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:29.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:29.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:53:29.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2268ms +2024-05-19 17:53:44.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 17:53:44.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:44.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 17:53:44.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 17:53:44.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6428ms +2024-05-19 18:01:04.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:04.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:04.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:04.109 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:04.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1565ms +2024-05-19 18:01:04.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:04.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:04.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:04.539 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:04.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4118ms +2024-05-19 18:01:26.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:26.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:26.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:26.488 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:26.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9109ms +2024-05-19 18:01:26.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:26.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:26.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:26.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:26.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.762ms +2024-05-19 18:01:41.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:41.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:41.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:41.555 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:41.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7285ms +2024-05-19 18:01:56.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:01:56.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:56.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:01:56.563 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:01:56.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4492ms +2024-05-19 18:02:11.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:02:11.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:11.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:11.559 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:02:11.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.818ms +2024-05-19 18:02:26.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:02:26.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:26.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:26.557 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:02:26.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4551ms +2024-05-19 18:02:41.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:02:41.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:41.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:41.563 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:02:41.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4056ms +2024-05-19 18:02:56.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:02:56.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:56.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:02:56.560 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:02:56.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0252ms +2024-05-19 18:03:11.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:03:11.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:03:11.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:03:11.559 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:03:11.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0132ms +2024-05-19 18:03:26.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:03:26.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:03:26.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:03:26.557 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:03:26.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4683ms +2024-05-19 18:08:18.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:08:18.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:18.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:18.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:08:18.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.948ms +2024-05-19 18:08:19.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:08:19.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:19.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:19.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:08:19.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.803ms +2024-05-19 18:08:21.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:08:21.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:21.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:21.941 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:08:21.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4904ms +2024-05-19 18:08:30.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:08:30.160 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:30.187 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:30.188 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:08:30.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0686ms +2024-05-19 18:08:30.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:08:30.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:30.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:08:30.223 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:08:30.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1083ms +2024-05-19 18:12:06.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:12:06.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:06.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:06.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:12:06.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8478ms +2024-05-19 18:12:06.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:12:06.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:06.752 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:06.754 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:12:06.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 92.4937ms +2024-05-19 18:12:31.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:12:31.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:31.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:31.480 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:12:31.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7889ms +2024-05-19 18:12:31.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:12:31.504 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:31.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:31.538 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:12:31.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3263ms +2024-05-19 18:12:46.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:12:46.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:46.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:12:46.524 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:12:46.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8693ms +2024-05-19 18:13:01.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:13:01.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:01.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:01.523 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:13:01.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7863ms +2024-05-19 18:13:26.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:13:26.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:26.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:26.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:13:26.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 59.7834ms +2024-05-19 18:13:27.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:13:27.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:27.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:27.789 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:13:27.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 68.7742ms +2024-05-19 18:13:41.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:13:41.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:41.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:41.905 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:13:41.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8116ms +2024-05-19 18:13:56.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:13:56.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:56.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:13:56.913 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:13:56.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5015ms +2024-05-19 18:14:11.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:14:11.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:11.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:11.927 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:14:11.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.956ms +2024-05-19 18:14:26.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:14:26.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:26.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:26.911 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:14:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8388ms +2024-05-19 18:14:41.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:14:41.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:41.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:41.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:14:41.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7175ms +2024-05-19 18:14:56.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:14:56.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:56.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:14:56.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:14:56.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3556ms +2024-05-19 18:15:11.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:15:11.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:11.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:11.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:15:11.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.707ms +2024-05-19 18:15:26.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:15:26.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:26.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:26.905 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:15:26.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6382ms +2024-05-19 18:15:41.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:15:41.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:41.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:41.915 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:15:41.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.8777ms +2024-05-19 18:15:56.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:15:56.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:56.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:15:56.903 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:15:56.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.992ms +2024-05-19 18:16:11.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:16:11.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:11.937 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:16:11.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 56.5914ms +2024-05-19 18:16:26.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:16:26.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:26.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:26.910 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:16:26.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3959ms +2024-05-19 18:16:41.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:16:41.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:41.919 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:16:41.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.6645ms +2024-05-19 18:16:56.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:16:56.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:56.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:16:56.912 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:16:56.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7976ms +2024-05-19 18:17:11.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:17:11.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:11.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:11.908 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:17:11.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5687ms +2024-05-19 18:17:26.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:17:26.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:26.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:26.908 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:17:26.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7253ms +2024-05-19 18:17:41.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:17:41.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:41.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:17:41.910 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:17:41.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2926ms +2024-05-19 18:39:09.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:09.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:10.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:10.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 41.687ms +2024-05-19 18:39:10.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:10.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:10.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:10.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 27.3064ms +2024-05-19 18:39:24.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:24.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:24.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:24.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 34.4535ms +2024-05-19 18:39:25.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:25.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:25.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 28.7291ms +2024-05-19 18:39:25.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-19 18:39:25.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 32.5997ms +2024-05-19 18:39:25.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:25.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 329.2609ms +2024-05-19 18:39:35.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:39:35.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:35.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:35.727 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:39:35.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6796ms +2024-05-19 18:39:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:39:35.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:35.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:35.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:39:35.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8329ms +2024-05-19 18:39:50.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:39:50.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:50.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:39:50.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:39:50.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.932ms +2024-05-19 18:40:05.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:40:05.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:05.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:05.758 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:40:05.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5198ms +2024-05-19 18:40:20.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:40:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:20.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:20.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:40:20.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4574ms +2024-05-19 18:40:35.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:40:35.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:35.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:35.766 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:40:35.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3509ms +2024-05-19 18:40:50.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:40:50.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:50.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:40:50.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:40:50.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.698ms +2024-05-19 18:41:05.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:41:05.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:05.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:05.766 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:41:05.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6081ms +2024-05-19 18:41:20.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:41:20.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:20.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:20.777 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:41:20.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.0106ms +2024-05-19 18:41:35.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:41:35.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:35.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:35.773 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:41:35.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6452ms +2024-05-19 18:41:50.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:41:50.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:50.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:41:50.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:41:50.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8251ms +2024-05-19 18:42:05.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:42:05.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:05.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:05.770 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:42:05.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7676ms +2024-05-19 18:42:20.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:42:20.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:20.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:20.770 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:42:20.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5131ms +2024-05-19 18:42:35.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:42:35.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:35.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:35.771 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:42:35.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8422ms +2024-05-19 18:42:50.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:42:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:50.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:42:50.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:42:50.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1429ms +2024-05-19 18:43:05.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:43:05.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:05.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:05.766 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:43:05.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4308ms +2024-05-19 18:43:20.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:43:20.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:20.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:20.772 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:43:20.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1024ms +2024-05-19 18:43:35.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:43:35.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:35.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:35.772 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:43:35.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2249ms +2024-05-19 18:43:50.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:43:50.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:50.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:43:50.782 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:43:50.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 48.4268ms +2024-05-19 18:44:05.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:44:05.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:05.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:44:05.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9511ms +2024-05-19 18:44:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:44:20.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:20.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:20.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:44:20.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6561ms +2024-05-19 18:44:35.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:44:35.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:35.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:35.762 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:44:35.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5516ms +2024-05-19 18:44:50.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:44:50.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:50.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:44:50.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:44:50.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5397ms +2024-05-19 18:45:05.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:45:05.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:05.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:05.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:45:05.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7465ms +2024-05-19 18:45:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:45:20.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:20.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:20.758 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:45:20.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7842ms +2024-05-19 18:45:35.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:45:35.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:35.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:35.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:45:35.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.612ms +2024-05-19 18:45:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:45:50.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:50.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:45:50.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:45:50.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6908ms +2024-05-19 18:46:05.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:46:05.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:05.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:05.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:46:05.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7339ms +2024-05-19 18:46:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:46:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:20.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:20.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:46:20.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5538ms +2024-05-19 18:46:35.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:46:35.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:35.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:35.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:46:35.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9824ms +2024-05-19 18:46:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:46:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:50.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:46:50.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:46:50.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5736ms +2024-05-19 18:47:05.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:47:05.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:05.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:05.774 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:47:05.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.1663ms +2024-05-19 18:47:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:47:20.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:20.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:20.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:47:20.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9151ms +2024-05-19 18:47:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:47:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:35.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:35.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:47:35.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4029ms +2024-05-19 18:47:50.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:47:50.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:50.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:47:50.758 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:47:50.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6779ms +2024-05-19 18:48:05.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:48:05.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:05.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:48:05.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4612ms +2024-05-19 18:48:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:48:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:20.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:20.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:48:20.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6482ms +2024-05-19 18:48:35.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:48:35.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:35.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:35.762 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:48:35.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.618ms +2024-05-19 18:48:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:48:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:50.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:48:50.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:48:50.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8428ms +2024-05-19 18:49:05.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:49:05.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:05.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:05.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:49:05.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2506ms +2024-05-19 18:49:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:49:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:20.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:20.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:49:20.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9527ms +2024-05-19 18:49:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:49:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:35.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:49:35.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6794ms +2024-05-19 18:49:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:49:50.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:50.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:49:50.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:49:50.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5302ms +2024-05-19 18:50:05.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:50:05.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:05.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:05.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:50:05.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6287ms +2024-05-19 18:50:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:50:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:20.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:20.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:50:20.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2707ms +2024-05-19 18:50:35.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:50:35.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:35.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:35.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:50:35.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4235ms +2024-05-19 18:50:50.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:50:50.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:50.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:50:50.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:50:50.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4641ms +2024-05-19 18:51:05.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:51:05.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:05.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:05.757 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:51:05.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7491ms +2024-05-19 18:51:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:51:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:20.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:20.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:51:20.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9319ms +2024-05-19 18:51:35.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:51:35.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:35.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:35.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:51:35.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1584ms +2024-05-19 18:51:50.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:51:50.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:50.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:51:50.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:51:50.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6766ms +2024-05-19 18:52:05.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:52:05.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:05.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:52:05.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1853ms +2024-05-19 18:52:20.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:52:20.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:20.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:20.771 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:52:20.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9698ms +2024-05-19 18:52:35.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:52:35.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:35.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:35.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:52:35.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3294ms +2024-05-19 18:52:50.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:52:50.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:50.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:52:50.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:52:50.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.8789ms +2024-05-19 18:53:05.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:53:05.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:05.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:53:05.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7788ms +2024-05-19 18:53:20.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:53:20.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:20.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:20.776 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:53:20.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.888ms +2024-05-19 18:53:35.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:53:35.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:35.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:35.769 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:53:35.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1029ms +2024-05-19 18:53:50.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:53:50.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:50.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:53:50.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:53:50.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0886ms +2024-05-19 18:54:05.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:54:05.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:05.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:54:05.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7769ms +2024-05-19 18:54:20.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:54:20.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:20.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:20.769 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:54:20.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.143ms +2024-05-19 18:54:35.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:54:35.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:35.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:35.766 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:54:35.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3849ms +2024-05-19 18:54:50.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:54:50.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:50.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:54:50.769 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:54:50.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3407ms +2024-05-19 18:55:05.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:55:05.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:05.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:05.770 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:55:05.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9628ms +2024-05-19 18:55:20.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:55:20.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:20.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:20.775 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:55:20.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.6202ms +2024-05-19 18:55:35.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:55:35.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:35.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:35.783 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:55:35.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7891ms +2024-05-19 18:55:50.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:55:50.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:50.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:55:50.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:55:50.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8325ms +2024-05-19 18:56:05.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:56:05.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:05.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:05.758 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:56:05.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5929ms +2024-05-19 18:56:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:56:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:20.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:20.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:56:20.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8053ms +2024-05-19 18:56:35.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:56:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:35.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:35.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:56:35.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7434ms +2024-05-19 18:56:50.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:56:50.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:50.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:56:50.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:56:50.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6176ms +2024-05-19 18:57:05.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:57:05.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:05.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:05.757 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:57:05.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7418ms +2024-05-19 18:57:20.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:57:20.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:20.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:20.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:57:20.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2014ms +2024-05-19 18:57:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:57:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:35.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:57:35.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.576ms +2024-05-19 18:57:50.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:57:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:50.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:57:50.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:57:50.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1015ms +2024-05-19 18:58:05.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:58:05.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:05.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:05.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:58:05.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0446ms +2024-05-19 18:58:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:58:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:20.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:20.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:58:20.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.718ms +2024-05-19 18:58:35.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:58:35.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:35.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:35.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:58:35.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8107ms +2024-05-19 18:58:50.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:58:50.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:50.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:58:50.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:58:50.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0202ms +2024-05-19 18:59:05.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:59:05.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:05.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:05.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:59:05.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8394ms +2024-05-19 18:59:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:59:20.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:20.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:20.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:59:20.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8694ms +2024-05-19 18:59:35.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:59:35.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:35.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:35.762 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:59:35.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0999ms +2024-05-19 18:59:50.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 18:59:50.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:50.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 18:59:50.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 18:59:50.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0225ms +2024-05-19 19:00:05.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:00:05.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:05.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:05.789 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:00:05.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 60.3148ms +2024-05-19 19:00:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:00:20.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:20.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:20.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:00:20.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9949ms +2024-05-19 19:00:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:00:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:35.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:35.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:00:35.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3411ms +2024-05-19 19:00:50.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:00:50.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:50.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:00:50.769 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:00:50.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8751ms +2024-05-19 19:01:05.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:01:05.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:05.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:05.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:01:05.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3163ms +2024-05-19 19:01:20.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:01:20.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:20.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:20.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:01:20.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3752ms +2024-05-19 19:01:35.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:01:35.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:35.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:01:35.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0913ms +2024-05-19 19:01:50.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:01:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:50.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:01:50.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:01:50.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1935ms +2024-05-19 19:02:05.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:02:05.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:05.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:05.780 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:02:05.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 48.0324ms +2024-05-19 19:02:20.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:02:20.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:20.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:20.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:02:20.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.007ms +2024-05-19 19:02:35.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:02:35.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:35.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:35.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:02:35.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5238ms +2024-05-19 19:02:50.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:02:50.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:50.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:02:50.756 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:02:50.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1283ms +2024-05-19 19:03:05.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:03:05.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:05.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:05.760 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:03:05.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1851ms +2024-05-19 19:03:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:03:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:20.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:20.759 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:03:20.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5159ms +2024-05-19 19:03:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:03:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:35.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:03:35.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9863ms +2024-05-19 19:03:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:03:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:50.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:03:50.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:03:50.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4358ms +2024-05-19 19:04:05.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:04:05.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:05.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:05.762 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:04:05.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9941ms +2024-05-19 19:04:20.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:04:20.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:20.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:20.758 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:04:20.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2621ms +2024-05-19 19:04:35.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:04:35.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:35.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:35.776 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:04:35.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.2702ms +2024-05-19 19:04:50.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:04:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:50.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:04:50.764 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:04:50.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2651ms +2024-05-19 19:05:05.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:05:05.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:05.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:05.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:05:05.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6417ms +2024-05-19 19:05:20.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:05:20.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:20.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:20.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:05:20.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8833ms +2024-05-19 19:05:35.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:05:35.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:35.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:35.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:05:35.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5681ms +2024-05-19 19:05:50.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:05:50.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:50.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:05:50.763 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:05:50.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7195ms +2024-05-19 19:06:05.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:06:05.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:05.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:05.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:06:05.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9066ms +2024-05-19 19:06:20.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:06:20.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:20.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:20.768 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:06:20.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4321ms +2024-05-19 19:06:35.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:06:35.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:35.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:06:35.765 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:06:35.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.771ms +2024-05-19 19:09:04.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:09:04.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:04.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:04.784 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:09:04.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.2012ms +2024-05-19 19:09:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:09:31.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:31.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:31.633 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:09:31.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6826ms +2024-05-19 19:09:46.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:09:46.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:46.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:09:46.623 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:09:46.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7302ms +2024-05-19 19:09:47.803 +02:00 [INF] Received a message with ID: '96f24fd97488446cbcd4c2791ef10775', Correlation ID: '038d6748037b437288a247c902096f1f', timestamp: 1716138587, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 19:09:47.804 +02:00 [INF] Handling a message: friend_invited with ID: 96f24fd97488446cbcd4c2791ef10775, Correlation ID: 038d6748037b437288a247c902096f1f, retry: 0 +2024-05-19 19:09:47.807 +02:00 [INF] Received a message with ID: 'ae2b200d6ab74d568f823741951e1a53', Correlation ID: '2ac42bf811874f41898d2a03fe5a261c', timestamp: 1716138587, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 19:09:47.807 +02:00 [INF] Handling a message: friend_request_sent with ID: ae2b200d6ab74d568f823741951e1a53, Correlation ID: 2ac42bf811874f41898d2a03fe5a261c, retry: 0 +2024-05-19 19:09:47.832 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 19:09:47.832 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 19:09:47.832 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 19:09:47.865 +02:00 [INF] Received HTTP response headers after 32.2942ms - 200 +2024-05-19 19:09:47.865 +02:00 [INF] End processing HTTP request after 33.0725ms - 200 +2024-05-19 19:09:47.866 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 19:09:48.032 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 19:09:48.032 +02:00 [INF] Handled a message: friend_invited with ID: 96f24fd97488446cbcd4c2791ef10775, Correlation ID: 038d6748037b437288a247c902096f1f, retry: 0 +2024-05-19 19:09:48.122 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 19:09:48.122 +02:00 [INF] Handled a message: friend_request_sent with ID: ae2b200d6ab74d568f823741951e1a53, Correlation ID: 2ac42bf811874f41898d2a03fe5a261c, retry: 0 +2024-05-19 19:10:01.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:10:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:01.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:01.633 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:10:01.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.222ms +2024-05-19 19:10:16.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:10:16.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:16.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:16.631 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:10:16.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9403ms +2024-05-19 19:10:31.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:10:31.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:31.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:31.622 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:10:31.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8878ms +2024-05-19 19:10:36.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:10:36.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:36.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:36.065 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:10:36.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.9025ms +2024-05-19 19:10:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:10:53.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:53.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:10:53.619 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:10:53.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.5647ms +2024-05-19 19:11:21.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:11:21.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:21.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:21.561 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:11:21.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7697ms +2024-05-19 19:11:22.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:11:22.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:22.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:22.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:11:22.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7545ms +2024-05-19 19:11:36.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:11:36.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:36.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:36.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:11:36.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5931ms +2024-05-19 19:11:51.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:11:51.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:51.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:11:51.601 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:11:51.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2806ms +2024-05-19 19:12:06.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:12:06.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:06.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:06.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:12:06.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7825ms +2024-05-19 19:12:14.487 +02:00 [INF] Received a message with ID: '57565667d0314060b410fac6ac70cb81', Correlation ID: '834fb7bf266b40e1a040543a05a0237e', timestamp: 1716138734, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 19:12:14.488 +02:00 [INF] Handling a message: friend_invited with ID: 57565667d0314060b410fac6ac70cb81, Correlation ID: 834fb7bf266b40e1a040543a05a0237e, retry: 0 +2024-05-19 19:12:14.490 +02:00 [INF] Received a message with ID: 'e9d081d7fe6d49f2898e48689783d4e1', Correlation ID: '09caa2fc22ea43f9b59d897d1df53b52', timestamp: 1716138734, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 19:12:14.491 +02:00 [INF] Handling a message: friend_request_sent with ID: e9d081d7fe6d49f2898e48689783d4e1, Correlation ID: 09caa2fc22ea43f9b59d897d1df53b52, retry: 0 +2024-05-19 19:12:14.520 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 19:12:14.520 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 19:12:14.521 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 19:12:14.562 +02:00 [INF] Received HTTP response headers after 40.8648ms - 200 +2024-05-19 19:12:14.563 +02:00 [INF] End processing HTTP request after 42.1818ms - 200 +2024-05-19 19:12:14.563 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 19:12:14.613 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 19:12:14.614 +02:00 [INF] Handled a message: friend_request_sent with ID: e9d081d7fe6d49f2898e48689783d4e1, Correlation ID: 09caa2fc22ea43f9b59d897d1df53b52, retry: 0 +2024-05-19 19:12:14.727 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 19:12:14.727 +02:00 [INF] Handled a message: friend_invited with ID: 57565667d0314060b410fac6ac70cb81, Correlation ID: 834fb7bf266b40e1a040543a05a0237e, retry: 0 +2024-05-19 19:12:21.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:12:21.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:21.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:21.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:12:21.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9528ms +2024-05-19 19:12:36.569 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:12:36.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:36.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:36.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:12:36.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1388ms +2024-05-19 19:12:51.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:12:51.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:51.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:12:51.604 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:12:51.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3412ms +2024-05-19 19:13:06.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:13:06.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:06.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:06.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:13:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5425ms +2024-05-19 19:13:21.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:13:21.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:21.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:21.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:13:21.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.4435ms +2024-05-19 19:13:36.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:13:36.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:36.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:36.627 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:13:36.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7962ms +2024-05-19 19:13:51.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:13:51.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:51.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:13:51.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:13:51.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.0794ms +2024-05-19 19:14:06.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:14:06.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:06.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:06.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:14:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6027ms +2024-05-19 19:14:21.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:14:21.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:21.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:21.604 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:14:21.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4608ms +2024-05-19 19:14:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:14:36.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:36.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:36.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:14:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5298ms +2024-05-19 19:14:51.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:14:51.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:51.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:14:51.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:14:51.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6594ms +2024-05-19 19:15:06.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:15:06.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:06.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:06.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:15:06.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5365ms +2024-05-19 19:15:21.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:15:21.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:21.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:21.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:15:21.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2074ms +2024-05-19 19:15:36.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:15:36.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:36.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:36.601 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:15:36.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3978ms +2024-05-19 19:15:51.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:15:51.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:51.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:15:51.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:15:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0625ms +2024-05-19 19:16:06.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:16:06.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:06.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:06.607 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:16:06.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7703ms +2024-05-19 19:16:21.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:16:21.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:21.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:21.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:16:21.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8018ms +2024-05-19 19:16:36.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:16:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:36.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:36.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:16:36.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1823ms +2024-05-19 19:16:51.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:16:51.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:16:51.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:16:51.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5423ms +2024-05-19 19:17:06.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:17:06.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:06.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:06.602 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:17:06.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7855ms +2024-05-19 19:17:21.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:17:21.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:21.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:21.621 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:17:21.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.5751ms +2024-05-19 19:17:36.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:17:36.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:36.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:36.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:17:36.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0574ms +2024-05-19 19:17:51.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:17:51.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:51.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:17:51.599 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:17:51.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.5202ms +2024-05-19 19:18:06.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:18:06.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:06.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:06.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:18:06.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1249ms +2024-05-19 19:18:21.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:18:21.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:21.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:21.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:18:21.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0819ms +2024-05-19 19:18:36.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:18:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:36.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:18:36.605 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:18:36.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5437ms +2024-05-19 19:22:44.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:44.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:44.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:44.203 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:44.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.2429ms +2024-05-19 19:22:44.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:44.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:44.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:44.282 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:44.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0361ms +2024-05-19 19:22:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:51.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:51.855 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:51.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.476ms +2024-05-19 19:22:51.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:51.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:51.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:51.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:51.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3334ms +2024-05-19 19:22:53.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:53.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:53.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:53.515 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:53.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8195ms +2024-05-19 19:22:53.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:53.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:53.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:53.550 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:53.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1994ms +2024-05-19 19:22:59.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:22:59.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:59.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:22:59.250 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:22:59.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1752ms +2024-05-19 19:23:06.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:06.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:06.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:06.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:06.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8067ms +2024-05-19 19:23:08.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:08.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:08.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:08.550 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:08.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3207ms +2024-05-19 19:23:14.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:14.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:14.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:14.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:14.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7104ms +2024-05-19 19:23:21.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:21.858 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:21.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:21.894 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:21.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.1169ms +2024-05-19 19:23:23.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:23.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:23.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:23.559 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:23.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9055ms +2024-05-19 19:23:29.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:29.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:29.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:29.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:29.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6244ms +2024-05-19 19:23:36.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:36.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:36.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:36.885 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:36.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9649ms +2024-05-19 19:23:38.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:38.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:38.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:38.556 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:38.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8876ms +2024-05-19 19:23:44.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:44.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:44.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:44.249 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:44.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8303ms +2024-05-19 19:23:51.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:51.858 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:51.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:51.901 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:51.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.2735ms +2024-05-19 19:23:53.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:53.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:53.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:53.550 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:53.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3092ms +2024-05-19 19:23:59.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:23:59.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:59.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:23:59.249 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:23:59.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2671ms +2024-05-19 19:24:05.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:05.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:05.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:05.413 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:05.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9164ms +2024-05-19 19:24:05.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:05.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:05.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:05.454 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:05.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6255ms +2024-05-19 19:24:06.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:06.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:06.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9496ms +2024-05-19 19:24:06.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:06.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.616 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:06.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1372ms +2024-05-19 19:24:06.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:06.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:06.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:06.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.595ms +2024-05-19 19:24:08.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:08.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:08.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:08.563 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:08.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.594ms +2024-05-19 19:24:14.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:14.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:14.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:14.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:14.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7702ms +2024-05-19 19:24:20.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:20.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:20.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:20.445 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:20.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9399ms +2024-05-19 19:24:21.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:21.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:21.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:21.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:21.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6911ms +2024-05-19 19:24:21.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:21.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:21.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:21.905 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:21.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.8107ms +2024-05-19 19:24:23.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:23.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:23.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:23.549 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:23.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7621ms +2024-05-19 19:24:29.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:29.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.245 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:29.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3408ms +2024-05-19 19:24:29.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:29.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.945 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:29.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4962ms +2024-05-19 19:24:29.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:29.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:29.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:29.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9149ms +2024-05-19 19:24:31.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:31.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:31.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:31.462 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:31.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1765ms +2024-05-19 19:24:31.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:31.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:31.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:31.502 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:31.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7137ms +2024-05-19 19:24:35.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:35.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:35.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:35.452 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:35.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4051ms +2024-05-19 19:24:36.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:36.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:36.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:36.625 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:36.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1465ms +2024-05-19 19:24:36.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:36.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:36.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:36.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:36.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2723ms +2024-05-19 19:24:38.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:38.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:38.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:38.553 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:38.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2884ms +2024-05-19 19:24:44.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:44.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:44.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:44.258 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:44.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0497ms +2024-05-19 19:24:44.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:44.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:44.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:44.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:44.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2942ms +2024-05-19 19:24:46.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:46.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:46.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:46.496 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:46.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8916ms +2024-05-19 19:24:50.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:50.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:50.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:50.449 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:50.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3374ms +2024-05-19 19:24:51.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:51.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:51.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:51.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:51.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9158ms +2024-05-19 19:24:51.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:51.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:51.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:51.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:51.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1202ms +2024-05-19 19:24:53.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:53.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:53.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:53.553 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:53.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6216ms +2024-05-19 19:24:59.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:59.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:59.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:59.250 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:59.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3626ms +2024-05-19 19:24:59.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:24:59.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:24:59.991 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:24:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.0056ms +2024-05-19 19:25:01.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:01.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:01.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:01.498 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:01.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3532ms +2024-05-19 19:25:05.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:05.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:05.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:05.462 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:05.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.2082ms +2024-05-19 19:25:06.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:06.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:06.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:06.624 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:06.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7117ms +2024-05-19 19:25:06.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:06.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:06.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:06.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:06.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3626ms +2024-05-19 19:25:08.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:08.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:08.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:08.549 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:08.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4266ms +2024-05-19 19:25:14.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:14.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:14.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:14.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:14.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9805ms +2024-05-19 19:25:14.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:14.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:14.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:14.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:14.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1981ms +2024-05-19 19:25:16.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:16.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:16.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:16.503 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:16.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2995ms +2024-05-19 19:25:20.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:20.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:20.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:20.455 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:20.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4617ms +2024-05-19 19:25:21.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:21.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:21.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:21.618 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:21.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2388ms +2024-05-19 19:25:21.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:21.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:21.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:21.890 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:21.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0466ms +2024-05-19 19:25:23.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:23.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:23.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:23.554 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:23.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1752ms +2024-05-19 19:25:29.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:29.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:29.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:29.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:29.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2628ms +2024-05-19 19:25:29.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:29.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:29.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:29.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:29.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6581ms +2024-05-19 19:25:31.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:31.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:31.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:31.500 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:31.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7201ms +2024-05-19 19:25:35.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:35.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:35.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:35.442 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:35.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.7039ms +2024-05-19 19:25:36.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:36.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:36.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:36.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:36.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9611ms +2024-05-19 19:25:36.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:36.860 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:36.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:36.888 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:36.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1853ms +2024-05-19 19:25:38.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:38.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:38.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:38.549 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:38.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8759ms +2024-05-19 19:25:44.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:44.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:44.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:44.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:44.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7775ms +2024-05-19 19:25:44.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:44.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:44.987 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:44.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.2455ms +2024-05-19 19:25:46.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:46.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:46.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:46.497 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:46.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0659ms +2024-05-19 19:25:50.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:50.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:50.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:50.448 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:50.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0541ms +2024-05-19 19:25:51.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:51.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:51.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:51.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:51.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.46ms +2024-05-19 19:25:51.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:51.860 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:51.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:51.888 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:51.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8329ms +2024-05-19 19:25:53.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:53.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:53.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:53.547 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:53.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0019ms +2024-05-19 19:25:59.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:59.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:59.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:59.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:59.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4095ms +2024-05-19 19:25:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:25:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:59.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:25:59.986 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:25:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9565ms +2024-05-19 19:26:01.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:01.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:01.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:01.494 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:01.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0299ms +2024-05-19 19:26:05.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:05.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:05.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:05.445 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:05.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2962ms +2024-05-19 19:26:06.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:06.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:06.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:06.616 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:06.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2319ms +2024-05-19 19:26:06.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:06.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:06.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:06.886 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:06.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9222ms +2024-05-19 19:26:08.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:08.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:08.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:08.548 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:08.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0046ms +2024-05-19 19:26:14.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:14.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:14.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:14.246 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:14.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4037ms +2024-05-19 19:26:14.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:14.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:14.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:14.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:14.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4392ms +2024-05-19 19:26:16.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:16.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:16.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:16.492 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:16.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3832ms +2024-05-19 19:26:20.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:20.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:20.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:20.449 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:20.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7286ms +2024-05-19 19:26:21.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:21.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:21.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:21.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:21.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2091ms +2024-05-19 19:26:21.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:21.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:21.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:21.898 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:21.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.5571ms +2024-05-19 19:26:23.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:26:23.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:23.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:26:23.553 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:26:23.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1047ms +2024-05-19 19:27:11.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:27:11.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:11.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:11.328 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:27:11.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.9978ms +2024-05-19 19:27:11.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:27:11.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:11.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:11.856 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:27:11.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1769ms +2024-05-19 19:27:26.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:27:26.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:26.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:26.383 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:27:26.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.4133ms +2024-05-19 19:27:41.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:27:41.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:41.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:41.366 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:27:41.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5468ms +2024-05-19 19:27:56.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:27:56.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:56.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:27:56.372 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:27:56.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2985ms +2024-05-19 19:28:11.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:28:11.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:11.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:11.374 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:28:11.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.5428ms +2024-05-19 19:28:26.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:28:26.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:26.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:26.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:28:26.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1482ms +2024-05-19 19:28:41.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:28:41.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:41.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:41.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:28:41.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7779ms +2024-05-19 19:28:56.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:28:56.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:56.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:28:56.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:28:56.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8968ms +2024-05-19 19:29:11.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:29:11.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:11.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:11.376 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:29:11.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3974ms +2024-05-19 19:29:26.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:29:26.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:26.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:26.378 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:29:26.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7711ms +2024-05-19 19:29:41.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:29:41.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:41.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:41.373 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:29:41.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2171ms +2024-05-19 19:29:56.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:29:56.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:56.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:29:56.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:29:56.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3214ms +2024-05-19 19:30:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:30:11.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:11.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:11.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:30:11.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9435ms +2024-05-19 19:30:26.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:30:26.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:26.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:26.373 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:30:26.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6263ms +2024-05-19 19:30:41.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:30:41.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:41.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:41.367 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:30:41.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7197ms +2024-05-19 19:30:56.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:30:56.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:56.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:30:56.370 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:30:56.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6571ms +2024-05-19 19:31:01.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:01.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:01.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:01.857 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:01.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8344ms +2024-05-19 19:31:01.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:01.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:01.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:01.889 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:01.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7083ms +2024-05-19 19:31:03.142 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:03.142 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:03.175 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:03.176 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:03.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6792ms +2024-05-19 19:31:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:03.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:03.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:03.211 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:03.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8125ms +2024-05-19 19:31:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:11.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:11.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:11.378 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:11.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8441ms +2024-05-19 19:31:16.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:16.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:16.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:16.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:16.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9094ms +2024-05-19 19:31:18.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:18.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:18.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:18.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:18.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0724ms +2024-05-19 19:31:26.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:26.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:26.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:26.373 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:26.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.428ms +2024-05-19 19:31:31.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:31.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:31.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:31.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:31.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8552ms +2024-05-19 19:31:33.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:33.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:33.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:33.210 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:33.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6403ms +2024-05-19 19:31:41.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:41.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:41.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:41.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:41.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3587ms +2024-05-19 19:31:46.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:46.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:46.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:46.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:46.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3953ms +2024-05-19 19:31:48.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:48.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:48.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:48.216 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:48.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7947ms +2024-05-19 19:31:56.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:31:56.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:56.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:31:56.370 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:31:56.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3788ms +2024-05-19 19:32:01.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:01.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:01.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:01.888 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:01.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7249ms +2024-05-19 19:32:03.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:03.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:03.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:03.210 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:03.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9403ms +2024-05-19 19:32:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:11.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:11.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:11.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:11.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7657ms +2024-05-19 19:32:16.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:16.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:16.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:16.895 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:16.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3149ms +2024-05-19 19:32:18.182 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:18.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:18.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:18.211 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:18.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7284ms +2024-05-19 19:32:26.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:26.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:26.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:26.372 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:26.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5192ms +2024-05-19 19:32:31.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:31.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:31.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:31.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:31.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4232ms +2024-05-19 19:32:33.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:33.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:33.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:33.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:33.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7192ms +2024-05-19 19:32:41.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:41.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:41.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:41.370 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:41.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5627ms +2024-05-19 19:32:46.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:46.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:46.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:46.913 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:46.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.814ms +2024-05-19 19:32:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:48.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:48.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:48.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:48.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4946ms +2024-05-19 19:32:56.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:32:56.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:56.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:32:56.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:32:56.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4976ms +2024-05-19 19:33:01.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:01.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:01.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:01.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:01.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6916ms +2024-05-19 19:33:03.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:03.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:03.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:03.211 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:03.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1585ms +2024-05-19 19:33:11.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:11.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:11.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:11.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:11.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3058ms +2024-05-19 19:33:16.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:16.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:16.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:16.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:16.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5053ms +2024-05-19 19:33:18.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:18.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:18.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:18.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:18.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1127ms +2024-05-19 19:33:26.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:26.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:26.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:26.370 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:26.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7101ms +2024-05-19 19:33:31.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:31.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:31.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:31.894 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:31.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6042ms +2024-05-19 19:33:33.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:33.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:33.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:33.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:33.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3636ms +2024-05-19 19:33:41.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:41.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:41.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:41.373 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:41.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2917ms +2024-05-19 19:33:46.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:46.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:46.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:46.898 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:46.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6708ms +2024-05-19 19:33:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:48.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:48.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:48.216 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:48.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1817ms +2024-05-19 19:33:56.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:33:56.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:56.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:33:56.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:33:56.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.5896ms +2024-05-19 19:34:01.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:01.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:01.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:01.907 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:01.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.6067ms +2024-05-19 19:34:03.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:03.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:03.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:03.215 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:03.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2781ms +2024-05-19 19:34:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:11.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:11.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:11.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:11.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9092ms +2024-05-19 19:34:16.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:16.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:16.907 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:16.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.3868ms +2024-05-19 19:34:18.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:18.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:18.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:18.221 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:18.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3758ms +2024-05-19 19:34:26.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:26.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:26.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:26.374 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:26.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2204ms +2024-05-19 19:34:31.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:31.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:31.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:31.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:31.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2999ms +2024-05-19 19:34:33.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:33.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:33.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:33.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:33.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1669ms +2024-05-19 19:34:41.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:41.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:41.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:41.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:41.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9752ms +2024-05-19 19:34:46.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:46.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:46.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:46.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:46.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4547ms +2024-05-19 19:34:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:48.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:48.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:48.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:48.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3727ms +2024-05-19 19:34:56.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:34:56.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:56.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:34:56.370 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:34:56.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9423ms +2024-05-19 19:35:01.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:01.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:01.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:01.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:01.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1718ms +2024-05-19 19:35:03.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:03.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:03.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:03.219 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:03.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0177ms +2024-05-19 19:35:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:11.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:11.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:11.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:11.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1668ms +2024-05-19 19:35:16.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:16.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:16.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:16.892 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:16.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9288ms +2024-05-19 19:35:18.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:18.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:18.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:18.220 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:18.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1956ms +2024-05-19 19:35:26.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:26.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:26.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:26.375 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:26.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4452ms +2024-05-19 19:35:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:31.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:31.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:31.912 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:31.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.802ms +2024-05-19 19:35:33.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:33.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:33.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:33.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:33.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9336ms +2024-05-19 19:35:41.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:41.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:41.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:41.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:41.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1857ms +2024-05-19 19:35:46.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:46.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:46.903 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6084ms +2024-05-19 19:35:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:48.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:48.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:48.214 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:48.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8159ms +2024-05-19 19:35:56.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:35:56.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:56.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:35:56.377 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:35:56.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5717ms +2024-05-19 19:36:01.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:01.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:01.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:01.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:01.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6429ms +2024-05-19 19:36:03.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:03.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:03.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:03.218 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:03.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2487ms +2024-05-19 19:36:11.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:11.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:11.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:11.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:11.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9603ms +2024-05-19 19:36:16.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:16.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:16.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:16.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:16.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5789ms +2024-05-19 19:36:18.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:18.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:18.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:18.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:18.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3417ms +2024-05-19 19:36:26.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:26.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:26.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:26.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:26.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1994ms +2024-05-19 19:36:31.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:31.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:31.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:31.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:31.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2331ms +2024-05-19 19:36:33.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:33.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:33.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:33.214 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:33.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9246ms +2024-05-19 19:36:41.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:41.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:41.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:41.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:41.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2492ms +2024-05-19 19:36:46.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:46.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:46.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:46.891 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:46.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3027ms +2024-05-19 19:36:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:48.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:48.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:48.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:48.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0789ms +2024-05-19 19:36:56.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:36:56.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:56.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:36:56.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:36:56.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3835ms +2024-05-19 19:37:01.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:01.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:01.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:01.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:01.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5815ms +2024-05-19 19:37:03.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:03.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:03.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:03.224 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:03.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.2461ms +2024-05-19 19:37:11.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:11.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:11.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:11.381 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:11.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.8646ms +2024-05-19 19:37:16.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:16.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:16.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:16.895 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:16.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4487ms +2024-05-19 19:37:18.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:18.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:18.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:18.212 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:18.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0311ms +2024-05-19 19:37:26.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:26.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:26.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:26.375 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:26.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8828ms +2024-05-19 19:37:31.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:31.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:31.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:31.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:31.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5205ms +2024-05-19 19:37:33.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:33.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:33.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:33.215 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:33.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3526ms +2024-05-19 19:37:41.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:41.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:41.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:41.369 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:41.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.963ms +2024-05-19 19:37:46.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:46.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:46.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:46.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:46.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0261ms +2024-05-19 19:37:48.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:48.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:48.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:48.216 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:48.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0257ms +2024-05-19 19:37:56.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:37:56.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:56.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:37:56.371 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:37:56.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0471ms +2024-05-19 19:38:01.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:01.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:01.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:01.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:01.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0461ms +2024-05-19 19:38:03.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:03.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:03.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:03.220 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:03.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2179ms +2024-05-19 19:38:11.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:11.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:11.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:11.375 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:11.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9738ms +2024-05-19 19:38:16.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:16.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:16.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:16.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:16.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6487ms +2024-05-19 19:38:18.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:18.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:18.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:18.213 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:18.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1558ms +2024-05-19 19:38:26.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:26.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:26.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:26.368 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:26.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0794ms +2024-05-19 19:38:31.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:31.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:31.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:31.897 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:31.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8777ms +2024-05-19 19:38:33.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:33.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:33.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:33.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:33.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7893ms +2024-05-19 19:38:41.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:41.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:41.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:41.372 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:41.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8747ms +2024-05-19 19:38:46.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:46.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:46.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:46.890 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:46.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9953ms +2024-05-19 19:38:48.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:48.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:48.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:48.215 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:48.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7242ms +2024-05-19 19:38:56.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:38:56.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:56.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:38:56.372 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:38:56.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5803ms +2024-05-19 19:39:01.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:01.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:01.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:01.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:01.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2447ms +2024-05-19 19:39:03.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:03.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:03.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:03.221 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:03.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1412ms +2024-05-19 19:39:11.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:11.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:11.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:11.376 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:11.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6357ms +2024-05-19 19:39:16.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8674ms +2024-05-19 19:39:16.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:16.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.937 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:16.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1162ms +2024-05-19 19:39:16.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:16.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:16.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:16.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.2642ms +2024-05-19 19:39:18.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:18.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.215 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:18.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2603ms +2024-05-19 19:39:18.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:18.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.363 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:18.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1919ms +2024-05-19 19:39:18.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:39:18.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:39:18.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:39:18.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1335ms +2024-05-19 19:48:01.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:48:01.822 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:01.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:01.864 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:48:01.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.1689ms +2024-05-19 19:48:01.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:48:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:01.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:01.901 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:48:01.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4187ms +2024-05-19 19:48:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:48:16.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:16.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:16.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:48:16.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9392ms +2024-05-19 19:48:31.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:48:31.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:31.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:31.907 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:48:31.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7303ms +2024-05-19 19:48:46.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:48:46.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:46.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:48:46.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:48:46.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6125ms +2024-05-19 19:49:01.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:49:01.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:01.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:01.903 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:49:01.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8375ms +2024-05-19 19:49:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:49:16.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:16.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:16.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:49:16.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7114ms +2024-05-19 19:49:31.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:49:31.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:31.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:31.901 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:49:31.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6561ms +2024-05-19 19:49:46.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:49:46.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:49:46.905 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:49:46.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7117ms +2024-05-19 19:50:01.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:01.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:01.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:01.912 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:01.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8438ms +2024-05-19 19:50:17.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:17.501 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:17.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:17.532 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:17.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5692ms +2024-05-19 19:50:17.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:17.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:17.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:17.562 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:17.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.5257ms +2024-05-19 19:50:18.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:18.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:19.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:19.024 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:19.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2894ms +2024-05-19 19:50:19.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:19.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:19.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:19.059 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:19.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1118ms +2024-05-19 19:50:22.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:22.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:22.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:22.193 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:22.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6645ms +2024-05-19 19:50:50.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:50.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:50.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:50.362 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:50.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.7186ms +2024-05-19 19:50:50.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:50:50.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:50.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:50:50.840 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:50:50.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7352ms +2024-05-19 19:51:05.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:05.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:05.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:05.413 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:05.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.5027ms +2024-05-19 19:51:13.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:13.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:13.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:13.411 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:13.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0041ms +2024-05-19 19:51:13.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:13.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:13.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:13.442 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:13.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9826ms +2024-05-19 19:51:14.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:14.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:14.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:14.114 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:14.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3652ms +2024-05-19 19:51:14.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:14.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:14.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:14.146 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:14.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2616ms +2024-05-19 19:51:18.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:18.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:18.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:18.554 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:18.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2303ms +2024-05-19 19:51:18.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:51:18.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:18.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:51:18.987 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:51:18.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6357ms +2024-05-19 19:52:04.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:52:04.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:04.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:04.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:52:04.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 82.5664ms +2024-05-19 19:52:34.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:52:34.232 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:34.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:52:34.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0343ms +2024-05-19 19:52:34.754 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:52:34.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:34.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:34.795 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:52:34.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.6396ms +2024-05-19 19:52:49.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:52:49.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:49.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:52:49.307 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:52:49.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7001ms +2024-05-19 19:53:04.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:53:04.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:04.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:04.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:53:04.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8244ms +2024-05-19 19:53:19.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:53:19.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:19.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:19.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:53:19.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7673ms +2024-05-19 19:53:34.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:53:34.286 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:34.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:34.317 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:53:34.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5659ms +2024-05-19 19:53:49.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:53:49.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:49.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:53:49.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:53:49.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7402ms +2024-05-19 19:54:04.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:54:04.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:04.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:04.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:54:04.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4099ms +2024-05-19 19:54:19.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:54:19.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:19.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:19.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:54:19.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1124ms +2024-05-19 19:54:34.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:54:34.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:34.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:34.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:54:34.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6077ms +2024-05-19 19:54:49.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:54:49.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:49.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:54:49.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:54:49.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3157ms +2024-05-19 19:55:04.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:55:04.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:04.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:04.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:55:04.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4241ms +2024-05-19 19:55:19.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:55:19.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:19.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:19.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:55:19.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9408ms +2024-05-19 19:55:34.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:55:34.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:34.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:34.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:55:34.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7811ms +2024-05-19 19:55:49.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:55:49.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:49.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:55:49.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:55:49.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9252ms +2024-05-19 19:56:04.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:04.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:04.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:04.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:04.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7681ms +2024-05-19 19:56:19.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:19.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:19.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:19.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:19.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.704ms +2024-05-19 19:56:31.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:31.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:32.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:32.006 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:32.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2625ms +2024-05-19 19:56:32.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:32.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:32.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:32.040 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:32.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6538ms +2024-05-19 19:56:34.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:34.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:34.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:34.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:34.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7359ms +2024-05-19 19:56:35.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:35.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:36.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:36.011 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:36.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6014ms +2024-05-19 19:56:36.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:36.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:36.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:36.425 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:36.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1635ms +2024-05-19 19:56:44.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:44.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:44.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:44.450 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:44.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2572ms +2024-05-19 19:56:44.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:44.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:44.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:44.482 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:44.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.306ms +2024-05-19 19:56:47.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:47.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:47.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:47.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:47.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5543ms +2024-05-19 19:56:49.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:49.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.248 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:49.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.5203ms +2024-05-19 19:56:49.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:49.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:49.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:49.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9932ms +2024-05-19 19:56:49.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:49.305 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:49.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0771ms +2024-05-19 19:56:51.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:51.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:51.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:51.045 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:51.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9972ms +2024-05-19 19:56:55.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:55.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:55.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:55.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:55.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1557ms +2024-05-19 19:56:55.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:55.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:55.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:55.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:55.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4223ms +2024-05-19 19:56:58.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:58.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:58.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:58.670 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:58.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1326ms +2024-05-19 19:56:58.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:58.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:58.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:58.700 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:58.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.7435ms +2024-05-19 19:56:59.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:56:59.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:59.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:56:59.481 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:56:59.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2213ms +2024-05-19 19:57:02.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:02.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:02.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:02.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:02.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.22ms +2024-05-19 19:57:04.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:04.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:04.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:04.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:04.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:04.288 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:04.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.416ms +2024-05-19 19:57:04.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:04.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:04.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2347ms +2024-05-19 19:57:06.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:06.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:06.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:06.046 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:06.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.441ms +2024-05-19 19:57:10.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:10.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:10.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:10.603 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:10.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9061ms +2024-05-19 19:57:13.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:13.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:13.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:13.704 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:13.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9546ms +2024-05-19 19:57:14.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:14.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:14.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:14.484 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:14.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8711ms +2024-05-19 19:57:17.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:17.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:17.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:17.042 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:17.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4045ms +2024-05-19 19:57:19.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:19.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:19.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:19.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:19.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:19.284 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:19.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6689ms +2024-05-19 19:57:19.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:19.729 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:19.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 459.6405ms +2024-05-19 19:57:21.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:21.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:21.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:21.045 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:21.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1336ms +2024-05-19 19:57:25.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:25.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:25.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:25.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:25.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7869ms +2024-05-19 19:57:28.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:28.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:28.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:28.701 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:28.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1481ms +2024-05-19 19:57:29.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:29.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:29.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:29.479 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:29.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3466ms +2024-05-19 19:57:32.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:32.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:32.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:32.051 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:32.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7702ms +2024-05-19 19:57:34.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:34.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:34.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:34.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:34.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:34.280 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:34.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6995ms +2024-05-19 19:57:34.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:34.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:34.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7134ms +2024-05-19 19:57:36.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:36.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:36.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:36.046 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:36.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3671ms +2024-05-19 19:57:40.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:40.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:40.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:40.611 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:40.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6787ms +2024-05-19 19:57:43.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:43.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:43.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:43.702 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:43.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7579ms +2024-05-19 19:57:44.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:44.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:44.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:44.496 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:44.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.0817ms +2024-05-19 19:57:47.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:47.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:47.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:47.047 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:47.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3858ms +2024-05-19 19:57:49.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:49.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:49.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:49.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:49.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:49.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:49.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1099ms +2024-05-19 19:57:49.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:49.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:49.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7354ms +2024-05-19 19:57:51.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:51.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:51.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:51.072 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:51.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.6698ms +2024-05-19 19:57:55.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:55.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:55.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:55.605 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:55.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2928ms +2024-05-19 19:57:58.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:58.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:58.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:58.708 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:58.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7958ms +2024-05-19 19:57:59.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:57:59.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:59.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:57:59.483 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:57:59.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7796ms +2024-05-19 19:58:00.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:00.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:00.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:00.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:00.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.477ms +2024-05-19 19:58:00.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:00.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:00.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:01.000 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:01.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8588ms +2024-05-19 19:58:02.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:02.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:02.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:02.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:02.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7043ms +2024-05-19 19:58:04.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:04.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:04.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:04.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:04.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:04.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:04.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.7914ms +2024-05-19 19:58:04.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:04.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:04.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7973ms +2024-05-19 19:58:06.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:06.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:06.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:06.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:06.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4647ms +2024-05-19 19:58:10.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:10.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:10.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:10.607 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:10.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7294ms +2024-05-19 19:58:13.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:13.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:13.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:13.699 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:13.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8546ms +2024-05-19 19:58:14.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:14.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:14.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:14.481 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:14.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.318ms +2024-05-19 19:58:15.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:15.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:15.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:15.999 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:16.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3738ms +2024-05-19 19:58:17.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:17.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:17.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:17.053 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:17.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.1769ms +2024-05-19 19:58:19.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:19.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:19.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:19.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:19.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:19.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:19.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:19.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:19.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.609ms +2024-05-19 19:58:19.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7768ms +2024-05-19 19:58:21.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:21.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:21.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:21.046 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:21.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.73ms +2024-05-19 19:58:25.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:25.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.631 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:25.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.8153ms +2024-05-19 19:58:25.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:25.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.862 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:25.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9612ms +2024-05-19 19:58:25.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:25.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:25.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:25.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1578ms +2024-05-19 19:58:28.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:28.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:28.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.2758ms +2024-05-19 19:58:28.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:28.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.385 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:28.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4121ms +2024-05-19 19:58:28.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:28.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:28.707 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:28.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.116ms +2024-05-19 19:58:29.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:29.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:29.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:29.482 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:29.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3401ms +2024-05-19 19:58:30.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:30.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:30.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:30.930 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:30.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0817ms +2024-05-19 19:58:30.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:30.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:30.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:30.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:30.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1068ms +2024-05-19 19:58:30.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:30.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:30.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:31.000 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:31.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.551ms +2024-05-19 19:58:32.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:32.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:32.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:32.053 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:32.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.6774ms +2024-05-19 19:58:34.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:34.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:34.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:34.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:34.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:34.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:34.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7044ms +2024-05-19 19:58:34.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:34.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:34.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3129ms +2024-05-19 19:58:36.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:36.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:36.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:36.047 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:36.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3599ms +2024-05-19 19:58:40.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:40.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:40.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:40.605 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:40.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5284ms +2024-05-19 19:58:40.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:40.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:40.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:40.894 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:40.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8133ms +2024-05-19 19:58:43.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:43.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:43.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:43.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:43.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3152ms +2024-05-19 19:58:43.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:43.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:43.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:43.703 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:43.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.142ms +2024-05-19 19:58:44.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:44.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:44.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:44.482 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:44.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0046ms +2024-05-19 19:58:45.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:45.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:45.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:45.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:45.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0757ms +2024-05-19 19:58:45.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:45.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:46.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:46.004 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:46.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8163ms +2024-05-19 19:58:47.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:47.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:47.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:47.042 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:47.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5327ms +2024-05-19 19:58:49.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:49.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:49.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:49.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:49.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:49.279 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:49.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8623ms +2024-05-19 19:58:49.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:49.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:49.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.351ms +2024-05-19 19:58:51.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:51.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:51.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:51.047 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:51.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9994ms +2024-05-19 19:58:55.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:55.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:55.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:55.607 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:55.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3486ms +2024-05-19 19:58:55.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:55.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:55.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:55.897 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:55.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0828ms +2024-05-19 19:58:58.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:58.353 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:58.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:58.384 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:58.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0215ms +2024-05-19 19:58:58.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:58.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:58.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:58.701 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:58.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.584ms +2024-05-19 19:58:59.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:58:59.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:59.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:58:59.480 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:58:59.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1856ms +2024-05-19 19:59:00.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:00.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:00.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:00.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:00.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1145ms +2024-05-19 19:59:00.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:00.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:01.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:01.000 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:01.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2882ms +2024-05-19 19:59:02.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:02.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:02.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:02.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:02.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1078ms +2024-05-19 19:59:04.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:04.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:04.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:04.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:04.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:04.286 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:04.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2436ms +2024-05-19 19:59:04.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:04.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:04.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0091ms +2024-05-19 19:59:06.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:06.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:06.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:06.046 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:06.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5495ms +2024-05-19 19:59:10.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:10.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:10.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:10.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:10.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1572ms +2024-05-19 19:59:10.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:10.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:10.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:10.893 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:10.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9942ms +2024-05-19 19:59:13.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:13.353 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:13.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:13.379 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:13.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4403ms +2024-05-19 19:59:13.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:13.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:13.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:13.702 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:13.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.898ms +2024-05-19 19:59:14.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:14.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:14.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:14.494 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:14.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.7722ms +2024-05-19 19:59:15.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:15.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:15.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:15.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:15.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8602ms +2024-05-19 19:59:15.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:15.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:16.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:16.007 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:16.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.909ms +2024-05-19 19:59:17.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:17.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:17.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:17.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:17.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6225ms +2024-05-19 19:59:19.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:19.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:19.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:19.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:19.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:19.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:19.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3952ms +2024-05-19 19:59:19.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:19.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:19.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6243ms +2024-05-19 19:59:21.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:21.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:21.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:21.053 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:21.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.312ms +2024-05-19 19:59:25.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:25.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:25.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:25.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:25.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8967ms +2024-05-19 19:59:25.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:25.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:25.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:25.895 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:25.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5691ms +2024-05-19 19:59:28.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:28.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:28.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:28.388 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:28.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7827ms +2024-05-19 19:59:28.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:28.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:28.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:28.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:28.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9136ms +2024-05-19 19:59:29.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:29.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:29.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:29.483 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:29.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9451ms +2024-05-19 19:59:30.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:30.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:30.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:30.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:30.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1518ms +2024-05-19 19:59:30.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:30.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:30.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:30.996 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:30.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3814ms +2024-05-19 19:59:32.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:32.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:32.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:32.040 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:32.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4547ms +2024-05-19 19:59:34.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:34.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:34.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:34.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:34.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:34.282 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:34.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7672ms +2024-05-19 19:59:34.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:34.295 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:34.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3618ms +2024-05-19 19:59:36.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:36.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:36.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:36.049 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:36.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0302ms +2024-05-19 19:59:40.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:40.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:40.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:40.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:40.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3553ms +2024-05-19 19:59:40.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:40.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:40.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:40.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:40.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.0537ms +2024-05-19 19:59:43.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:43.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:43.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:43.381 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:43.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4454ms +2024-05-19 19:59:43.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:43.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:43.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:43.700 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:43.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3431ms +2024-05-19 19:59:44.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:44.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:44.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:44.499 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:44.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.6058ms +2024-05-19 19:59:45.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:45.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:45.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:45.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:45.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3358ms +2024-05-19 19:59:45.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:45.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:45.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:45.995 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:45.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3604ms +2024-05-19 19:59:47.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:47.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:47.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:47.040 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:47.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8939ms +2024-05-19 19:59:49.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:49.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:49.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:49.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:49.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:49.290 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:49.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5159ms +2024-05-19 19:59:49.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:49.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:49.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3898ms +2024-05-19 19:59:51.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:51.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:51.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:51.046 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:51.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9876ms +2024-05-19 19:59:55.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:55.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:55.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:55.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:55.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0595ms +2024-05-19 19:59:55.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:55.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:55.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:55.894 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:55.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3658ms +2024-05-19 19:59:58.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:58.353 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:58.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:58.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:58.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4824ms +2024-05-19 19:59:58.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:58.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:58.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:58.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:58.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.3027ms +2024-05-19 19:59:59.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 19:59:59.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:59.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 19:59:59.490 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 19:59:59.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7026ms +2024-05-19 20:00:00.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:00.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:00.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:00.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:01.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:01.587 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:01.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 654.0714ms +2024-05-19 20:00:01.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:01.719 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:01.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 749.0778ms +2024-05-19 20:00:02.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:02.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:02.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:02.104 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:02.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 92.5369ms +2024-05-19 20:00:04.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:04.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:04.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:04.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:04.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:04.429 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:04.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 160.8778ms +2024-05-19 20:00:04.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:04.437 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:04.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 180.4769ms +2024-05-19 20:00:06.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:06.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:06.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:06.158 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:06.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 137.4324ms +2024-05-19 20:00:10.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:10.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:10.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:10.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:10.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3001ms +2024-05-19 20:00:10.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:10.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:10.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:10.906 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:10.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8508ms +2024-05-19 20:00:13.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:13.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:13.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:13.437 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:13.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 80.9628ms +2024-05-19 20:00:13.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:13.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:13.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:13.719 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:13.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.1373ms +2024-05-19 20:00:14.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:14.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:14.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:14.638 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:14.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 182.466ms +2024-05-19 20:00:15.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:15.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:15.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:15.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:15.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1623ms +2024-05-19 20:00:15.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:15.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:16.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:16.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:16.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.0272ms +2024-05-19 20:00:17.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:17.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:17.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:17.059 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:17.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.5299ms +2024-05-19 20:00:19.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:19.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:19.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:19.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:19.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:19.284 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:19.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0289ms +2024-05-19 20:00:19.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:19.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:19.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9276ms +2024-05-19 20:00:21.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:21.031 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:21.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:21.062 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:21.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5368ms +2024-05-19 20:00:25.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:25.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:25.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:25.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:25.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2651ms +2024-05-19 20:00:25.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:25.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:25.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:25.931 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:25.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 63.2776ms +2024-05-19 20:00:28.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:28.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:28.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:28.384 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:28.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4683ms +2024-05-19 20:00:28.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:28.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:28.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:28.707 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:28.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5115ms +2024-05-19 20:00:29.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:29.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:29.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:29.490 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:29.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1606ms +2024-05-19 20:00:30.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:30.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:30.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:30.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:30.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8086ms +2024-05-19 20:00:30.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:30.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:31.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:31.004 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:31.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9093ms +2024-05-19 20:00:32.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:32.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:32.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:32.040 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:32.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9995ms +2024-05-19 20:00:34.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:34.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:34.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:34.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:34.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:34.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:34.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3647ms +2024-05-19 20:00:34.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:34.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:34.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.6353ms +2024-05-19 20:00:36.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:36.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:36.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:36.055 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:36.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2702ms +2024-05-19 20:00:40.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:40.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:40.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:40.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:40.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9102ms +2024-05-19 20:00:40.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:40.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:40.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:40.902 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:40.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1846ms +2024-05-19 20:00:43.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:43.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:43.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:43.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:43.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.623ms +2024-05-19 20:00:43.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:43.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:43.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:43.711 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:43.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8494ms +2024-05-19 20:00:44.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:44.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:44.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:44.486 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:44.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6874ms +2024-05-19 20:00:45.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:45.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:45.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:45.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:45.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0199ms +2024-05-19 20:00:45.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:45.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:46.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:46.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:46.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5864ms +2024-05-19 20:00:47.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:47.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:47.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:47.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:47.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1115ms +2024-05-19 20:00:49.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:49.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:49.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:49.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:49.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:49.286 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:49.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0679ms +2024-05-19 20:00:49.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:49.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:49.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8389ms +2024-05-19 20:00:51.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:51.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:51.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:51.056 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:51.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0726ms +2024-05-19 20:00:55.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:55.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:55.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:55.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:55.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7353ms +2024-05-19 20:00:55.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:55.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:55.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:55.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:55.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7186ms +2024-05-19 20:00:58.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:58.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:58.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:58.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:58.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 297.1517ms +2024-05-19 20:00:58.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:58.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:58.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:58.980 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:58.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 306.199ms +2024-05-19 20:00:59.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:00:59.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:59.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:00:59.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:00:59.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 250.1537ms +2024-05-19 20:01:00.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:00.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:00.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:00.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:00.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6017ms +2024-05-19 20:01:00.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:00.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:00.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:01.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:01.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1483ms +2024-05-19 20:01:02.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:02.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:02.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:02.049 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:02.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2794ms +2024-05-19 20:01:04.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:04.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:04.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:04.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:04.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:04.290 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:04.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5371ms +2024-05-19 20:01:04.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:04.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:04.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0248ms +2024-05-19 20:01:06.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:06.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:06.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:06.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:06.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5879ms +2024-05-19 20:01:10.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:10.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:10.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:10.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:10.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.078ms +2024-05-19 20:01:10.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:10.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:10.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:10.908 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:10.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4169ms +2024-05-19 20:01:13.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:13.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:13.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:13.382 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:13.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8814ms +2024-05-19 20:01:13.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:13.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:13.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:13.706 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:13.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6853ms +2024-05-19 20:01:14.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:14.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:14.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:14.488 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:14.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8826ms +2024-05-19 20:01:15.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:15.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:15.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:15.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:15.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0423ms +2024-05-19 20:01:15.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:15.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:16.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:16.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:16.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.02ms +2024-05-19 20:01:17.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:17.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:17.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:17.040 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:17.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7799ms +2024-05-19 20:01:19.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:19.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:19.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:19.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:19.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:19.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:19.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0344ms +2024-05-19 20:01:19.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:19.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:19.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.7312ms +2024-05-19 20:01:21.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:21.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:21.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:21.048 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:21.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9648ms +2024-05-19 20:01:25.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:25.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:25.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:25.611 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:25.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.461ms +2024-05-19 20:01:25.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:25.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:25.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:25.904 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:25.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7078ms +2024-05-19 20:01:28.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:28.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:28.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:28.390 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:28.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.992ms +2024-05-19 20:01:28.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:28.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:28.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:28.704 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:28.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6504ms +2024-05-19 20:01:29.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:29.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:29.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:29.483 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:29.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1385ms +2024-05-19 20:01:30.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:30.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:30.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:30.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:30.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5042ms +2024-05-19 20:01:30.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:30.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:31.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:31.004 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:31.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0222ms +2024-05-19 20:01:32.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:32.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:32.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:32.049 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:32.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9127ms +2024-05-19 20:01:34.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:34.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:34.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:34.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:34.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:34.282 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:34.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.7082ms +2024-05-19 20:01:34.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:34.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:34.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9879ms +2024-05-19 20:01:36.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:36.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:36.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:36.050 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:36.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.098ms +2024-05-19 20:01:40.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:40.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:40.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:40.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:40.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9389ms +2024-05-19 20:01:40.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:40.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:40.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:40.903 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:40.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6333ms +2024-05-19 20:01:43.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:43.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:43.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:43.390 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:43.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.312ms +2024-05-19 20:01:43.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:43.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:43.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:43.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:43.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.721ms +2024-05-19 20:01:44.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:44.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:44.484 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:44.485 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:44.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3293ms +2024-05-19 20:01:45.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:45.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:45.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:45.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:45.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.539ms +2024-05-19 20:01:45.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:45.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:46.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:46.008 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:46.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7499ms +2024-05-19 20:01:47.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:47.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:47.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:47.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:47.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5127ms +2024-05-19 20:01:49.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:49.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:49.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:49.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:49.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:49.289 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:49.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1028ms +2024-05-19 20:01:49.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:49.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:49.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9175ms +2024-05-19 20:01:51.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:51.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:51.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:51.055 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:51.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.659ms +2024-05-19 20:01:55.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:55.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:55.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:55.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:55.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3568ms +2024-05-19 20:01:55.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:55.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:55.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:55.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:55.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5022ms +2024-05-19 20:01:58.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:58.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:58.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:58.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:58.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.323ms +2024-05-19 20:01:58.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:58.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:58.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:58.707 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:58.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4474ms +2024-05-19 20:01:59.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:01:59.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:59.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:01:59.492 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:01:59.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6779ms +2024-05-19 20:02:00.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:00.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:00.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:00.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:00.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2897ms +2024-05-19 20:02:00.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:00.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:01.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:01.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:01.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.306ms +2024-05-19 20:02:02.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:02.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:02.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:02.039 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:02.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1787ms +2024-05-19 20:02:04.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:04.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:04.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:04.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:04.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:04.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:04.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.8371ms +2024-05-19 20:02:04.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:04.309 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:04.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.2323ms +2024-05-19 20:02:06.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:06.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:06.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:06.050 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:06.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8509ms +2024-05-19 20:02:10.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:10.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:10.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:10.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:10.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4011ms +2024-05-19 20:02:10.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:10.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:10.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:10.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:10.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6723ms +2024-05-19 20:02:13.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:13.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:13.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:13.385 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:13.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8695ms +2024-05-19 20:02:13.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:13.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:13.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:13.703 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:13.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.217ms +2024-05-19 20:02:14.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:14.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:14.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:14.493 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:14.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.4331ms +2024-05-19 20:02:15.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:15.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:15.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:15.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:15.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9456ms +2024-05-19 20:02:15.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:15.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:16.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:16.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:16.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.05ms +2024-05-19 20:02:17.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:17.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:17.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:17.062 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:17.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.2611ms +2024-05-19 20:02:19.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:19.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:19.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:19.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:19.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:19.286 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:19.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8918ms +2024-05-19 20:02:19.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:19.295 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:19.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4222ms +2024-05-19 20:02:21.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:21.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:21.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:21.051 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:21.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6945ms +2024-05-19 20:02:25.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:25.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:25.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:25.620 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:25.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4589ms +2024-05-19 20:02:25.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:25.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:25.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:25.900 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:25.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6222ms +2024-05-19 20:02:28.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:28.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:28.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:28.389 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:28.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.088ms +2024-05-19 20:02:28.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:28.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:28.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:28.712 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:28.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5667ms +2024-05-19 20:02:29.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:29.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:29.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:29.497 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:29.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3774ms +2024-05-19 20:02:30.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:30.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:30.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:30.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:30.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6155ms +2024-05-19 20:02:30.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:30.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:31.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:31.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:31.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8865ms +2024-05-19 20:02:32.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:32.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:32.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:32.044 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:32.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7762ms +2024-05-19 20:02:34.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:34.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:34.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:34.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:34.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:34.286 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:34.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0405ms +2024-05-19 20:02:34.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:34.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:34.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.76ms +2024-05-19 20:02:36.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:36.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:36.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:36.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:36.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7819ms +2024-05-19 20:02:40.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:40.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:40.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:40.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:40.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5401ms +2024-05-19 20:02:40.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:40.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:40.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:40.896 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:40.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9259ms +2024-05-19 20:02:43.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:43.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:43.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:43.388 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:43.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9488ms +2024-05-19 20:02:43.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:43.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:43.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:43.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:43.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5958ms +2024-05-19 20:02:44.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:44.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:44.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:44.523 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:44.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.6694ms +2024-05-19 20:02:45.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:45.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:45.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:45.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:45.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2388ms +2024-05-19 20:02:45.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:45.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:46.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:46.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:46.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2781ms +2024-05-19 20:02:47.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:47.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:47.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:47.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:47.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0273ms +2024-05-19 20:02:49.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:49.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:49.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:49.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:49.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:49.290 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:49.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5467ms +2024-05-19 20:02:49.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:49.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:49.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.9459ms +2024-05-19 20:02:51.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:51.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:51.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:51.052 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:51.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3583ms +2024-05-19 20:02:55.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:55.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:55.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:55.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:55.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9489ms +2024-05-19 20:02:55.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:55.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:55.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:55.898 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:55.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8188ms +2024-05-19 20:02:58.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:58.361 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:58.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:58.410 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:58.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.4059ms +2024-05-19 20:02:58.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:58.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:58.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:58.708 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:58.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3538ms +2024-05-19 20:02:59.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:02:59.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:59.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:02:59.494 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:02:59.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0847ms +2024-05-19 20:03:00.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:00.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:00.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:00.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:00.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:00.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:00.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.2086ms +2024-05-19 20:03:01.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:01.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:01.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.509ms +2024-05-19 20:03:02.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:02.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:02.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:02.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:02.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 80.4921ms +2024-05-19 20:03:04.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:04.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:04.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:04.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:04.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:04.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:04.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5343ms +2024-05-19 20:03:04.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:04.309 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:04.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.3431ms +2024-05-19 20:03:06.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:06.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:06.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:06.061 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:06.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.3805ms +2024-05-19 20:03:10.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:10.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:10.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:10.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:10.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3285ms +2024-05-19 20:03:10.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:10.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:10.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:10.898 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:10.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1429ms +2024-05-19 20:03:13.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:13.360 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:13.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:13.388 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:13.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1574ms +2024-05-19 20:03:13.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:13.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:13.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:13.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:13.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.259ms +2024-05-19 20:03:14.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:14.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:14.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:14.500 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:14.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.4284ms +2024-05-19 20:03:15.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:15.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:15.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:15.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:15.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9998ms +2024-05-19 20:03:15.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:15.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:16.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:16.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:16.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3087ms +2024-05-19 20:03:17.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:17.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:17.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:17.048 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:17.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9305ms +2024-05-19 20:03:19.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:19.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:19.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:19.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:19.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:19.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:19.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3919ms +2024-05-19 20:03:19.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:19.310 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:19.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7615ms +2024-05-19 20:03:21.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:21.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:21.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:21.056 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:21.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2598ms +2024-05-19 20:03:25.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:25.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:25.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:25.617 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:25.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.3312ms +2024-05-19 20:03:25.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:25.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:25.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:25.898 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:25.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7536ms +2024-05-19 20:03:28.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:28.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:28.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:28.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:28.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8634ms +2024-05-19 20:03:28.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:28.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:28.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:28.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:28.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3131ms +2024-05-19 20:03:29.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:29.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:29.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:29.488 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:29.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7177ms +2024-05-19 20:03:30.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:30.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:30.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:30.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:30.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3962ms +2024-05-19 20:03:30.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:30.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:31.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:31.001 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:31.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1231ms +2024-05-19 20:03:32.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:32.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:32.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:32.051 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:32.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9534ms +2024-05-19 20:03:34.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:34.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:34.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:34.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:34.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:34.286 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:34.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0749ms +2024-05-19 20:03:34.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:34.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:34.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6ms +2024-05-19 20:03:36.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:36.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:36.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:36.050 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:36.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3873ms +2024-05-19 20:03:40.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:40.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:40.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:40.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:40.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.185ms +2024-05-19 20:03:40.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:40.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:40.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:40.908 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:40.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.363ms +2024-05-19 20:03:43.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:43.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:43.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:43.386 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:43.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2753ms +2024-05-19 20:03:43.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:43.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:43.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:43.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:43.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5786ms +2024-05-19 20:03:44.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:44.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:44.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:44.486 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:44.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9376ms +2024-05-19 20:03:45.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:45.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:45.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:45.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:45.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1209ms +2024-05-19 20:03:45.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:45.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:46.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:46.003 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:46.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6073ms +2024-05-19 20:03:47.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:47.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:47.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:47.041 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:47.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5362ms +2024-05-19 20:03:49.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:49.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:49.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:49.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:49.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:49.290 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:49.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2673ms +2024-05-19 20:03:49.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:49.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:49.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8865ms +2024-05-19 20:03:51.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:51.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:51.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:51.050 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:51.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7554ms +2024-05-19 20:03:55.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:55.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:55.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:55.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:55.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7387ms +2024-05-19 20:03:55.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:55.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:55.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:55.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:55.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.607ms +2024-05-19 20:03:58.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:58.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:58.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:58.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:58.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5748ms +2024-05-19 20:03:58.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:58.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:58.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:58.708 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:58.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0429ms +2024-05-19 20:03:59.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:03:59.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:59.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:03:59.488 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:03:59.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1172ms +2024-05-19 20:04:00.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:00.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:00.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:00.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:00.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.3574ms +2024-05-19 20:04:00.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:00.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:01.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:01.030 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:01.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 53.5922ms +2024-05-19 20:04:02.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:02.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:02.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:02.043 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:02.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2758ms +2024-05-19 20:04:04.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:04.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:04.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:04.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:04.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:04.287 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:04.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4123ms +2024-05-19 20:04:04.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:04.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:04.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3428ms +2024-05-19 20:04:06.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:06.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:06.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:06.053 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:06.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6712ms +2024-05-19 20:04:10.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:10.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:10.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:10.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:10.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2645ms +2024-05-19 20:04:10.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:10.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:10.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:10.901 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:10.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6738ms +2024-05-19 20:04:13.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:13.361 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:13.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:13.389 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:13.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0009ms +2024-05-19 20:04:13.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:13.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:13.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:13.717 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:13.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1993ms +2024-05-19 20:04:14.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:14.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:14.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:14.487 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:14.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9688ms +2024-05-19 20:04:15.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:15.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:15.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:15.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:15.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5845ms +2024-05-19 20:04:15.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:15.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:15.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:15.999 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:16.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8655ms +2024-05-19 20:04:17.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:17.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:17.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:17.056 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:17.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.9158ms +2024-05-19 20:04:23.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:23.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:23.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:23.459 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:23.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3874ms +2024-05-19 20:04:23.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:23.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:23.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:23.499 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:23.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3765ms +2024-05-19 20:04:38.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:04:38.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:38.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:04:38.491 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:04:38.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1151ms +2024-05-19 20:05:11.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:05:11.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:11.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:11.358 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:05:11.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.9855ms +2024-05-19 20:05:11.616 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:05:11.617 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:11.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:11.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:05:11.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6326ms +2024-05-19 20:05:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:05:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:26.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:26.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:05:26.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0549ms +2024-05-19 20:05:41.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:05:41.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:41.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:41.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:05:41.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1156ms +2024-05-19 20:05:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:05:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:56.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:05:56.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:05:56.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6311ms +2024-05-19 20:06:11.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:06:11.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:11.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:11.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:06:11.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1343ms +2024-05-19 20:06:26.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:06:26.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:26.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:26.404 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:06:26.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1917ms +2024-05-19 20:06:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:06:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:41.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:41.391 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:06:41.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4321ms +2024-05-19 20:06:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:06:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:06:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:06:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8685ms +2024-05-19 20:07:12.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:07:12.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:12.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:12.746 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:07:12.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1395ms +2024-05-19 20:07:26.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:07:26.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:26.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:26.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:07:26.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6004ms +2024-05-19 20:07:41.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:07:41.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:41.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:41.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:07:41.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8296ms +2024-05-19 20:07:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:07:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:07:56.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:07:56.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5131ms +2024-05-19 20:08:11.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:08:11.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:11.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:11.413 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:08:11.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.1044ms +2024-05-19 20:08:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:08:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:26.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:08:26.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0948ms +2024-05-19 20:08:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:08:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:41.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:41.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:08:41.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8218ms +2024-05-19 20:08:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:08:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:56.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:08:56.391 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:08:56.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.923ms +2024-05-19 20:09:11.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:09:11.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:11.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:11.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:09:11.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0364ms +2024-05-19 20:09:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:09:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:26.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:09:26.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.455ms +2024-05-19 20:09:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:09:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:41.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:41.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:09:41.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.671ms +2024-05-19 20:09:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:09:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:09:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:09:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5309ms +2024-05-19 20:10:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:10:11.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:11.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:11.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:10:11.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2241ms +2024-05-19 20:10:26.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:10:26.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:26.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:26.404 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:10:26.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5968ms +2024-05-19 20:10:41.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:10:41.377 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:41.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:41.406 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:10:41.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8321ms +2024-05-19 20:10:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:10:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:56.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:10:56.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:10:56.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9146ms +2024-05-19 20:11:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:11:11.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:11.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:11.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:11:11.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9447ms +2024-05-19 20:11:26.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:11:26.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:26.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:26.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:11:26.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3781ms +2024-05-19 20:11:41.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:11:41.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:11:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6842ms +2024-05-19 20:11:56.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:11:56.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:11:56.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:11:56.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0495ms +2024-05-19 20:12:11.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:12:11.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:11.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:11.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:12:11.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3028ms +2024-05-19 20:12:26.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:12:26.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:26.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:26.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:12:26.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7659ms +2024-05-19 20:12:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:12:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:41.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:12:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8296ms +2024-05-19 20:12:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:12:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:12:56.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:12:56.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9988ms +2024-05-19 20:13:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:13:11.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:11.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:11.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:13:11.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.156ms +2024-05-19 20:13:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:13:26.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:26.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:26.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:13:26.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8854ms +2024-05-19 20:13:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:13:41.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:13:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0173ms +2024-05-19 20:13:56.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:13:56.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:56.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:13:56.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:13:56.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6727ms +2024-05-19 20:14:11.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:14:11.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:11.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:11.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:14:11.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9902ms +2024-05-19 20:14:26.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:14:26.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:26.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:26.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:14:26.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7715ms +2024-05-19 20:14:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:14:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:41.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:41.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:14:41.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2162ms +2024-05-19 20:14:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:14:56.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:14:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:14:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3657ms +2024-05-19 20:15:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:15:11.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:11.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:11.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:15:11.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1037ms +2024-05-19 20:15:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:15:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:26.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:26.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:15:26.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.9403ms +2024-05-19 20:15:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:15:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:15:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9672ms +2024-05-19 20:15:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:15:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:56.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:15:56.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:15:56.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1555ms +2024-05-19 20:16:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:16:11.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:11.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:11.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:16:11.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3729ms +2024-05-19 20:16:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:16:26.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:26.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:26.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:16:26.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.733ms +2024-05-19 20:16:41.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:16:41.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:41.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:41.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:16:41.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2416ms +2024-05-19 20:16:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:16:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:56.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:16:56.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:16:56.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.67ms +2024-05-19 20:17:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:17:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:11.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:11.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:17:11.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.868ms +2024-05-19 20:17:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:17:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:26.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:26.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:17:26.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5587ms +2024-05-19 20:17:41.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:17:41.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:41.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:41.408 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:17:41.409 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9402ms +2024-05-19 20:17:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:17:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:56.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:17:56.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:17:56.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0066ms +2024-05-19 20:18:11.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:18:11.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:11.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:11.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:18:11.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5921ms +2024-05-19 20:18:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:18:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:26.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:26.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:18:26.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1139ms +2024-05-19 20:18:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:18:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:18:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3277ms +2024-05-19 20:18:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:18:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:18:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:18:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.018ms +2024-05-19 20:19:11.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:19:11.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:11.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:11.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:19:11.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5601ms +2024-05-19 20:19:26.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:19:26.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:26.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:26.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:19:26.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5386ms +2024-05-19 20:19:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:19:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:41.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:19:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5162ms +2024-05-19 20:19:56.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:19:56.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:56.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:19:56.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:19:56.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6585ms +2024-05-19 20:20:11.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:20:11.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:11.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:11.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:20:11.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5543ms +2024-05-19 20:20:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:20:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:26.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:26.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:20:26.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2103ms +2024-05-19 20:20:41.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:20:41.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:41.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:41.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:20:41.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5451ms +2024-05-19 20:20:56.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:20:56.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:20:56.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:20:56.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5376ms +2024-05-19 20:21:11.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:21:11.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:11.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:11.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:21:11.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6681ms +2024-05-19 20:21:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:21:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:26.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:26.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:21:26.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6485ms +2024-05-19 20:21:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:21:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:41.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:41.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:21:41.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2755ms +2024-05-19 20:21:56.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:21:56.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:56.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:21:56.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:21:56.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7553ms +2024-05-19 20:22:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:22:11.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:11.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:11.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:22:11.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2ms +2024-05-19 20:22:26.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:22:26.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:26.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:26.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:22:26.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4392ms +2024-05-19 20:22:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:22:41.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:41.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:41.407 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:22:41.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.0845ms +2024-05-19 20:22:56.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:22:56.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:56.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:22:56.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:22:56.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3297ms +2024-05-19 20:23:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:23:11.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:11.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:11.800 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:23:11.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 434.4321ms +2024-05-19 20:23:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:23:26.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:26.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:26.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:23:26.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3178ms +2024-05-19 20:23:41.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:23:41.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:41.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:41.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:23:41.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2247ms +2024-05-19 20:23:56.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:23:56.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:56.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:23:56.404 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:23:56.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0621ms +2024-05-19 20:24:11.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:24:11.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:11.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:11.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:24:11.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4545ms +2024-05-19 20:24:26.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:24:26.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:26.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:26.406 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:24:26.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.4383ms +2024-05-19 20:24:41.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:24:41.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:41.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:41.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:24:41.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8054ms +2024-05-19 20:24:56.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:24:56.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:56.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:24:56.404 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:24:56.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.591ms +2024-05-19 20:25:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:25:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:11.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:11.417 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:25:11.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.4266ms +2024-05-19 20:25:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:25:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:26.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:26.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:25:26.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0843ms +2024-05-19 20:25:41.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:25:41.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:41.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:41.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:25:41.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7628ms +2024-05-19 20:25:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:25:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:25:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:25:56.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.861ms +2024-05-19 20:26:11.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:26:11.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:11.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:11.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:26:11.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3551ms +2024-05-19 20:26:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:26:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:26.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:26.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:26:26.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2826ms +2024-05-19 20:26:41.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:26:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:41.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:41.410 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:26:41.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 46.4377ms +2024-05-19 20:26:56.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:26:56.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:56.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:26:56.409 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:26:56.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.498ms +2024-05-19 20:27:11.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:27:11.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:11.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:11.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:27:11.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.65ms +2024-05-19 20:27:26.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:27:26.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:26.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:27:26.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8318ms +2024-05-19 20:27:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:27:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:41.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:41.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:27:41.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5529ms +2024-05-19 20:27:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:27:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:27:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:27:56.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1571ms +2024-05-19 20:28:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:28:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:11.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:11.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:28:11.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3533ms +2024-05-19 20:28:26.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:28:26.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:26.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:26.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:28:26.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7153ms +2024-05-19 20:28:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:28:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:41.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:28:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9967ms +2024-05-19 20:28:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:28:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:56.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:28:56.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:28:56.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7004ms +2024-05-19 20:29:11.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:29:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:11.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:11.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:29:11.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2181ms +2024-05-19 20:29:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:29:26.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:26.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:26.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:29:26.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6877ms +2024-05-19 20:29:41.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:29:41.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:41.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:41.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:29:41.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0608ms +2024-05-19 20:29:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:29:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:56.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:29:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:29:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5023ms +2024-05-19 20:30:11.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:30:11.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:11.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:11.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:30:11.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.678ms +2024-05-19 20:30:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:30:26.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:26.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:26.411 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:30:26.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.4986ms +2024-05-19 20:30:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:30:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:41.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:41.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:30:41.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0182ms +2024-05-19 20:30:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:30:56.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:56.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:30:56.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:30:56.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.044ms +2024-05-19 20:31:11.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:31:11.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:11.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:11.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:31:11.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.571ms +2024-05-19 20:31:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:31:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:26.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:31:26.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6884ms +2024-05-19 20:31:41.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:31:41.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:41.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:41.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:31:41.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5122ms +2024-05-19 20:31:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:31:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:56.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:31:56.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:31:56.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5616ms +2024-05-19 20:32:11.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:32:11.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:11.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:11.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:32:11.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2421ms +2024-05-19 20:32:26.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:32:26.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:26.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:26.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:32:26.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7853ms +2024-05-19 20:32:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:32:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:41.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:41.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:32:41.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4616ms +2024-05-19 20:32:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:32:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:56.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:32:56.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:32:56.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4392ms +2024-05-19 20:33:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:33:11.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:11.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:11.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:33:11.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9692ms +2024-05-19 20:33:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:33:26.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:26.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:26.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:33:26.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.322ms +2024-05-19 20:33:41.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:33:41.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:41.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:41.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:33:41.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0321ms +2024-05-19 20:33:56.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:33:56.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:56.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:33:56.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:33:56.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9486ms +2024-05-19 20:34:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:34:11.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:11.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:11.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:34:11.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2711ms +2024-05-19 20:34:26.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:34:26.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:26.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:26.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:34:26.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.542ms +2024-05-19 20:34:41.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:34:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:41.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:41.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:34:41.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3639ms +2024-05-19 20:34:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:34:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:56.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:34:56.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:34:56.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8187ms +2024-05-19 20:35:11.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:35:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:11.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:11.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:35:11.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1918ms +2024-05-19 20:35:26.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:35:26.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:26.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:26.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:35:26.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4834ms +2024-05-19 20:35:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:35:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:41.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:41.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:35:41.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2998ms +2024-05-19 20:35:56.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:35:56.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:56.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:35:56.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:35:56.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.94ms +2024-05-19 20:36:11.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:36:11.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:11.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:11.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:36:11.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9775ms +2024-05-19 20:36:26.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:36:26.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:26.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:26.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:36:26.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5664ms +2024-05-19 20:36:41.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:36:41.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:41.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:41.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:36:41.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8544ms +2024-05-19 20:36:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:36:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:56.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:36:56.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:36:56.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2497ms +2024-05-19 20:37:11.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:37:11.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:11.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:11.749 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:37:11.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 386.4765ms +2024-05-19 20:37:26.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:37:26.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:26.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:26.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:37:26.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6309ms +2024-05-19 20:37:41.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:37:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:41.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:41.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:37:41.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0811ms +2024-05-19 20:37:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:37:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:56.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:37:56.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:37:56.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0074ms +2024-05-19 20:38:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:38:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:11.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:11.418 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:38:11.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.6212ms +2024-05-19 20:38:26.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:38:26.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:26.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:26.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:38:26.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5128ms +2024-05-19 20:38:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:38:41.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:41.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:41.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:38:41.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3313ms +2024-05-19 20:38:56.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:38:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:56.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:38:56.407 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:38:56.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.031ms +2024-05-19 20:39:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:39:11.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:11.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:11.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:39:11.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.105ms +2024-05-19 20:39:26.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:39:26.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:26.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:26.396 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:39:26.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9462ms +2024-05-19 20:39:41.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:39:41.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:41.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:41.398 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:39:41.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8526ms +2024-05-19 20:39:56.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:39:56.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:56.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:39:56.399 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:39:56.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7427ms +2024-05-19 20:40:11.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:40:11.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:11.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:11.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:40:11.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.344ms +2024-05-19 20:40:26.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:40:26.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:26.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:26.406 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:40:26.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.5288ms +2024-05-19 20:40:41.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:40:41.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:41.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:41.392 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:40:41.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6696ms +2024-05-19 20:40:56.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:40:56.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:56.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:40:56.391 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:40:56.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4808ms +2024-05-19 20:41:11.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:41:11.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:11.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:11.411 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:41:11.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.9169ms +2024-05-19 20:41:23.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:41:23.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:23.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:23.053 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:41:23.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6036ms +2024-05-19 20:41:31.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:41:31.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:31.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:31.473 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:41:31.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2448ms +2024-05-19 20:41:31.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:41:31.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:31.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:31.507 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:41:31.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8686ms +2024-05-19 20:41:46.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:41:46.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:46.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:41:46.509 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:41:46.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2331ms +2024-05-19 20:42:01.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:42:01.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:01.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:01.507 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:42:01.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9664ms +2024-05-19 20:42:16.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:42:16.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:16.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:16.506 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:42:16.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9002ms +2024-05-19 20:42:31.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:42:31.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:31.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:31.507 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:42:31.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3889ms +2024-05-19 20:42:46.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:42:46.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:46.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:42:46.506 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:42:46.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7529ms +2024-05-19 20:43:01.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:43:01.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:01.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:01.507 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:43:01.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7025ms +2024-05-19 20:43:16.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:43:16.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:16.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:16.505 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:43:16.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0181ms +2024-05-19 20:43:31.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:43:31.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:31.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:31.509 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:43:31.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.306ms +2024-05-19 20:43:46.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:43:46.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:46.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:43:46.503 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:43:46.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0289ms +2024-05-19 20:44:01.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:44:01.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:01.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:01.508 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:44:01.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2563ms +2024-05-19 20:44:16.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:44:16.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:16.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:16.519 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:44:16.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.3501ms +2024-05-19 20:44:31.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:44:31.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:31.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:31.508 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:44:31.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9424ms +2024-05-19 20:44:46.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:44:46.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:46.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:44:46.508 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:44:46.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5733ms +2024-05-19 20:45:01.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:01.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:01.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:01.511 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:01.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1524ms +2024-05-19 20:45:07.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:07.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:07.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:07.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:07.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4517ms +2024-05-19 20:45:07.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:07.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:07.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:07.305 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:07.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7974ms +2024-05-19 20:45:22.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:22.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:22.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:22.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:22.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9464ms +2024-05-19 20:45:37.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:37.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:37.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:37.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:37.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4297ms +2024-05-19 20:45:52.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:45:52.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:52.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:45:52.305 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:45:52.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7192ms +2024-05-19 20:46:07.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:46:07.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:07.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:07.321 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:46:07.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.4489ms +2024-05-19 20:46:22.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:46:22.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:22.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:22.312 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:46:22.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.978ms +2024-05-19 20:46:37.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:46:37.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:37.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:37.314 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:46:37.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.967ms +2024-05-19 20:46:52.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:46:52.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:52.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:46:52.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:46:52.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.34ms +2024-05-19 20:47:07.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:47:07.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:07.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:07.309 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:47:07.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3522ms +2024-05-19 20:47:22.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:47:22.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:22.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:22.313 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:47:22.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9425ms +2024-05-19 20:47:37.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:47:37.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:37.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:37.307 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:47:37.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.919ms +2024-05-19 20:47:52.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:47:52.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:52.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:47:52.319 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:47:52.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.0809ms +2024-05-19 20:48:07.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:48:07.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:07.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:07.305 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:48:07.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4622ms +2024-05-19 20:48:22.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:48:22.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:22.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:22.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:48:22.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3598ms +2024-05-19 20:48:37.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:48:37.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:37.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:37.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:48:37.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2087ms +2024-05-19 20:48:52.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:48:52.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:52.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:48:52.312 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:48:52.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6941ms +2024-05-19 20:49:07.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:49:07.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:07.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:07.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:49:07.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1149ms +2024-05-19 20:49:22.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:49:22.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:22.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:22.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:49:22.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4931ms +2024-05-19 20:49:37.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:49:37.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:37.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:37.314 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:49:37.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.3326ms +2024-05-19 20:49:52.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:49:52.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:52.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:49:52.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:49:52.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7465ms +2024-05-19 20:50:07.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:50:07.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:50:07.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:50:07.308 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:50:07.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5048ms +2024-05-19 20:52:40.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:52:40.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:40.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:40.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:52:40.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3511ms +2024-05-19 20:52:40.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:52:40.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:40.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:40.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:52:40.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2463ms +2024-05-19 20:52:55.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:52:55.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:55.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:52:55.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:52:55.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4653ms +2024-05-19 20:53:10.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:53:10.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:10.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:10.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:53:10.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.679ms +2024-05-19 20:53:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:53:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:25.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:25.293 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:53:25.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8376ms +2024-05-19 20:53:40.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:53:40.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:40.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:40.305 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:53:40.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0711ms +2024-05-19 20:53:55.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:53:55.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:55.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:53:55.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:53:55.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9612ms +2024-05-19 20:54:10.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:54:10.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:10.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:10.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:54:10.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0114ms +2024-05-19 20:54:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:54:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:25.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:25.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:54:25.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.277ms +2024-05-19 20:54:40.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:54:40.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:40.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:40.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:54:40.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8088ms +2024-05-19 20:54:55.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:54:55.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:55.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:54:55.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:54:55.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9777ms +2024-05-19 20:55:10.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:55:10.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:10.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:10.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:55:10.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0323ms +2024-05-19 20:55:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:55:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:25.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:25.292 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:55:25.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0981ms +2024-05-19 20:55:40.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:55:40.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:40.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:40.312 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:55:40.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.4057ms +2024-05-19 20:55:55.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:55:55.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:55.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:55:55.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:55:55.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3422ms +2024-05-19 20:56:10.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:56:10.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:10.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:10.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:56:10.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2943ms +2024-05-19 20:56:25.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:56:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:25.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:25.292 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:56:25.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.963ms +2024-05-19 20:56:40.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:56:40.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:40.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:40.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:56:40.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0034ms +2024-05-19 20:56:55.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:56:55.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:55.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:56:55.292 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:56:55.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9795ms +2024-05-19 20:57:10.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:57:10.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:10.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:10.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:57:10.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9178ms +2024-05-19 20:57:25.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:57:25.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:25.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:25.297 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:57:25.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1304ms +2024-05-19 20:57:40.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:57:40.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:40.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:40.293 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:57:40.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8467ms +2024-05-19 20:57:55.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:57:55.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:55.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:57:55.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:57:55.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2528ms +2024-05-19 20:58:10.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:58:10.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:10.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:10.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:58:10.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8517ms +2024-05-19 20:58:25.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:58:25.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:25.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:25.301 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:58:25.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7298ms +2024-05-19 20:58:40.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:58:40.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:40.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:40.291 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:58:40.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.6929ms +2024-05-19 20:58:55.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:58:55.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:55.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:58:55.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:58:55.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6696ms +2024-05-19 20:59:10.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:59:10.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:10.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:10.301 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:59:10.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3485ms +2024-05-19 20:59:25.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:59:25.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:25.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:25.303 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:59:25.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.2064ms +2024-05-19 20:59:40.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:59:40.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:40.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:40.293 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:59:40.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.644ms +2024-05-19 20:59:55.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 20:59:55.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:55.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 20:59:55.292 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 20:59:55.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.2275ms +2024-05-19 21:00:10.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:00:10.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:10.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:10.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:00:10.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 83.2816ms +2024-05-19 21:00:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:00:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:25.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:25.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:00:25.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6269ms +2024-05-19 21:00:40.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:00:40.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:40.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:40.295 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:00:40.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2029ms +2024-05-19 21:00:55.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:00:55.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:55.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:00:55.306 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:00:55.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.513ms +2024-05-19 21:01:10.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:01:10.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:10.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:10.315 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:01:10.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.0122ms +2024-05-19 21:01:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:01:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:25.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:25.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:01:25.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.507ms +2024-05-19 21:01:40.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:01:40.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:40.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:40.300 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:01:40.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2933ms +2024-05-19 21:01:55.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:01:55.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:55.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:01:55.311 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:01:55.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.2237ms +2024-05-19 21:02:10.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:02:10.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:10.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:10.315 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:02:10.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.2488ms +2024-05-19 21:02:25.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:02:25.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:25.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:25.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:02:25.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9085ms +2024-05-19 21:02:40.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:02:40.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:40.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:40.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:02:40.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1152ms +2024-05-19 21:02:55.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:02:55.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:55.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:02:55.299 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:02:55.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7489ms +2024-05-19 21:03:10.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:03:10.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:10.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:10.298 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:03:10.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6413ms +2024-05-19 21:03:25.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:03:25.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:25.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:25.301 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:03:25.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8782ms +2024-05-19 21:03:40.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:03:40.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:40.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:40.321 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:03:40.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 56.6536ms +2024-05-19 21:03:55.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:03:55.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:55.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:03:55.296 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:03:55.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6129ms +2024-05-19 21:04:10.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:10.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:10.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:10.314 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:10.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.1629ms +2024-05-19 21:04:25.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:25.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:25.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:25.294 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:25.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8066ms +2024-05-19 21:04:40.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:40.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:40.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:40.319 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:40.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3607ms +2024-05-19 21:04:55.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:55.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:55.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:55.302 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:55.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0418ms +2024-05-19 21:04:56.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:56.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:56.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:56.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:56.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6387ms +2024-05-19 21:04:56.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:04:56.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:56.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:04:56.621 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:04:56.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.2989ms +2024-05-19 21:05:11.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:05:11.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:11.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:11.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:05:11.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9123ms +2024-05-19 21:05:26.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:05:26.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:26.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:26.622 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:05:26.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.3637ms +2024-05-19 21:05:41.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:05:41.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:41.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:41.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:05:41.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5584ms +2024-05-19 21:05:56.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:05:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:56.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:05:56.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:05:56.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9934ms +2024-05-19 21:06:11.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:06:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:11.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:11.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:06:11.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3331ms +2024-05-19 21:06:26.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:06:26.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:26.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:26.614 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:06:26.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0292ms +2024-05-19 21:06:41.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:06:41.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:41.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:41.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:06:41.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6549ms +2024-05-19 21:06:56.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:06:56.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:56.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:06:56.618 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:06:56.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7309ms +2024-05-19 21:07:11.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:07:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:11.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:11.999 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:07:12.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 419.681ms +2024-05-19 21:07:26.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:07:26.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:26.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:26.636 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:07:26.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 55.4562ms +2024-05-19 21:07:41.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:07:41.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:41.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:41.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:07:41.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1315ms +2024-05-19 21:07:56.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:07:56.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:56.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:07:56.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:07:56.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8715ms +2024-05-19 21:08:11.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:08:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:11.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:11.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:08:11.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4833ms +2024-05-19 21:08:26.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:08:26.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:26.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:26.617 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:08:26.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7895ms +2024-05-19 21:08:41.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:08:41.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:41.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:41.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:08:41.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8365ms +2024-05-19 21:08:56.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:08:56.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:56.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:08:56.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:08:56.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7164ms +2024-05-19 21:09:11.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:09:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:11.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:11.614 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:09:11.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.173ms +2024-05-19 21:09:26.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:09:26.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:26.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:26.620 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:09:26.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5149ms +2024-05-19 21:09:41.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:09:41.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:41.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:41.616 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:09:41.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8371ms +2024-05-19 21:09:56.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:09:56.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:56.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:09:56.617 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:09:56.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.901ms +2024-05-19 21:10:11.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:10:11.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:11.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:11.625 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:10:11.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.9535ms +2024-05-19 21:10:26.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:10:26.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:26.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:26.618 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:10:26.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.6635ms +2024-05-19 21:10:41.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:10:41.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:41.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:41.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:10:41.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4901ms +2024-05-19 21:10:56.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:10:56.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:56.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:10:56.615 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:10:56.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3017ms +2024-05-19 21:11:11.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:11:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:11.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:11.611 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:11:11.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4291ms +2024-05-19 21:11:26.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:11:26.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:26.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:26.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:11:26.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7486ms +2024-05-19 21:11:41.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:11:41.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:41.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:41.611 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:11:41.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9856ms +2024-05-19 21:11:56.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:11:56.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:56.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:11:56.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:11:56.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7575ms +2024-05-19 21:12:11.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:12:11.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:11.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:11.631 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:12:11.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 51.8151ms +2024-05-19 21:12:26.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:12:26.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:26.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:26.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:12:26.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0729ms +2024-05-19 21:12:41.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:12:41.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:41.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:41.622 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:12:41.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.1811ms +2024-05-19 21:12:56.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:12:56.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:56.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:12:56.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:12:56.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0026ms +2024-05-19 21:13:11.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:13:11.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:11.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:11.607 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:13:11.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.455ms +2024-05-19 21:13:26.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:13:26.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:26.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:26.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:13:26.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9232ms +2024-05-19 21:13:41.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:13:41.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:41.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:41.617 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:13:41.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.9807ms +2024-05-19 21:13:56.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:13:56.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:56.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:13:56.614 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:13:56.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8512ms +2024-05-19 21:14:11.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:14:11.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:11.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:11.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:14:11.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4527ms +2024-05-19 21:14:26.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:14:26.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:26.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:26.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:14:26.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5839ms +2024-05-19 21:14:41.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:14:41.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:41.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:41.613 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:14:41.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7546ms +2024-05-19 21:14:56.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:14:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:56.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:14:56.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:14:56.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2093ms +2024-05-19 21:15:11.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:15:11.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:11.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:11.609 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:15:11.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9608ms +2024-05-19 21:15:26.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:15:26.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:26.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:26.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:15:26.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7349ms +2024-05-19 21:15:41.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:15:41.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:41.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:41.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:15:41.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.857ms +2024-05-19 21:15:56.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:15:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:56.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:15:56.606 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:15:56.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6878ms +2024-05-19 21:16:11.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:16:11.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:11.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:11.611 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:16:11.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4638ms +2024-05-19 21:16:26.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:16:26.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:26.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:26.612 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:16:26.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9209ms +2024-05-19 21:16:41.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:16:41.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:41.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:41.619 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:16:41.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.2891ms +2024-05-19 21:16:56.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:16:56.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:56.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:16:56.610 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:16:56.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5116ms +2024-05-19 21:17:11.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:11.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:11.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:11.623 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:11.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.734ms +2024-05-19 21:17:26.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:26.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:26.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:26.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:26.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6033ms +2024-05-19 21:17:40.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:40.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:40.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:40.076 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:40.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.1453ms +2024-05-19 21:17:40.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:40.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:40.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:40.107 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:40.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2423ms +2024-05-19 21:17:43.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:43.160 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:43.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:43.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2485ms +2024-05-19 21:17:43.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:43.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:43.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:43.222 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:43.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3015ms +2024-05-19 21:17:44.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:44.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:44.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:44.816 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:44.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.5431ms +2024-05-19 21:17:44.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:44.819 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:44.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:44.846 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:44.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9747ms +2024-05-19 21:17:55.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:55.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:55.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:55.114 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:55.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5202ms +2024-05-19 21:17:58.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:58.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:58.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:58.226 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:58.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.053ms +2024-05-19 21:17:59.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:17:59.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:59.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:17:59.858 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:17:59.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.2093ms +2024-05-19 21:18:10.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:10.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:10.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:10.110 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:10.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5683ms +2024-05-19 21:18:13.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:13.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:13.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:13.227 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:13.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9033ms +2024-05-19 21:18:14.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:14.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:14.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:14.853 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:14.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5623ms +2024-05-19 21:18:25.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:25.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:25.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:25.132 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:25.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.814ms +2024-05-19 21:18:28.199 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:28.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:28.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:28.237 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:28.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.5317ms +2024-05-19 21:18:29.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:29.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:29.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:29.863 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:29.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.9766ms +2024-05-19 21:18:40.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:40.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:40.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:40.110 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:40.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6596ms +2024-05-19 21:18:43.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:43.201 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:43.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:43.235 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:43.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5243ms +2024-05-19 21:18:44.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:44.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:44.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:44.856 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:44.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8986ms +2024-05-19 21:18:55.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:55.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:55.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:55.114 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:55.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5372ms +2024-05-19 21:18:58.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:58.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:58.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:58.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:58.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9585ms +2024-05-19 21:18:59.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:18:59.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:59.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:18:59.850 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:18:59.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.41ms +2024-05-19 21:19:10.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:10.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:10.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:10.113 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:10.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0697ms +2024-05-19 21:19:13.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:13.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:13.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:13.241 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:13.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.5268ms +2024-05-19 21:19:14.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:14.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:14.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:14.859 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:14.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0962ms +2024-05-19 21:19:25.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:25.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:25.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:25.119 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:25.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.36ms +2024-05-19 21:19:28.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:28.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:28.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:28.240 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:28.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.1696ms +2024-05-19 21:19:29.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:29.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:29.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:29.860 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:29.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7081ms +2024-05-19 21:19:40.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:40.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:40.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:40.115 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:40.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1271ms +2024-05-19 21:19:43.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:43.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:43.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:43.275 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:43.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 80.9825ms +2024-05-19 21:19:44.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:44.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:44.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:44.899 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:44.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 76.1926ms +2024-05-19 21:19:55.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:55.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:55.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:55.113 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:55.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9374ms +2024-05-19 21:19:58.201 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:58.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:58.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:58.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:58.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8198ms +2024-05-19 21:19:59.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:19:59.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:59.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:19:59.859 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:19:59.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6472ms +2024-05-19 21:20:10.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:10.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:10.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:10.112 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:10.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8014ms +2024-05-19 21:20:13.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:13.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:13.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:13.233 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:13.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4923ms +2024-05-19 21:20:14.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:14.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:14.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:14.857 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:14.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8509ms +2024-05-19 21:20:25.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:25.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:25.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:25.118 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:25.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8244ms +2024-05-19 21:20:28.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:28.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:28.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:28.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:28.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9193ms +2024-05-19 21:20:29.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:29.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:29.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:29.863 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:29.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.6583ms +2024-05-19 21:20:40.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:40.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:40.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:40.112 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:40.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6933ms +2024-05-19 21:20:43.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:43.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:43.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:43.228 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:43.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.551ms +2024-05-19 21:20:44.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:44.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:44.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:44.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:44.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1855ms +2024-05-19 21:20:55.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:55.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:55.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:55.130 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:55.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.2943ms +2024-05-19 21:20:58.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:58.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:58.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:58.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:58.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3802ms +2024-05-19 21:20:59.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:20:59.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:59.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:20:59.866 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:20:59.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.0285ms +2024-05-19 21:21:10.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:10.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:10.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:10.112 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:10.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0317ms +2024-05-19 21:21:13.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:13.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:13.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:13.239 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:13.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.724ms +2024-05-19 21:21:14.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:14.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:14.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:14.864 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:14.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.4967ms +2024-05-19 21:21:25.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:25.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:25.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:25.110 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:25.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.561ms +2024-05-19 21:21:28.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:28.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:28.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:28.225 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:28.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0062ms +2024-05-19 21:21:29.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:29.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:29.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:29.858 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:29.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6713ms +2024-05-19 21:21:40.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:40.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:40.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:40.110 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:40.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3669ms +2024-05-19 21:21:43.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:43.201 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:43.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:43.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:43.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7168ms +2024-05-19 21:21:44.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:21:44.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:44.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:21:44.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:21:44.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1368ms +2024-05-19 21:22:10.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:10.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:10.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:10.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:10.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.668ms +2024-05-19 21:22:10.096 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:10.097 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:10.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:10.127 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:10.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5378ms +2024-05-19 21:22:25.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:25.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:25.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:25.130 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:25.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.4701ms +2024-05-19 21:22:28.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:28.858 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:28.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:28.888 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:28.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2238ms +2024-05-19 21:22:28.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:28.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:28.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:28.935 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:28.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7388ms +2024-05-19 21:22:41.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:41.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:41.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:41.117 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:41.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9884ms +2024-05-19 21:22:41.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:41.121 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:41.150 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:41.151 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:41.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1254ms +2024-05-19 21:22:43.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:43.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:43.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:43.157 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:43.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5889ms +2024-05-19 21:22:43.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:43.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:43.189 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:43.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3583ms +2024-05-19 21:22:58.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:22:58.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:58.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:22:58.191 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:22:58.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7962ms +2024-05-19 21:23:13.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:23:13.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:13.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:13.193 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:23:13.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9035ms +2024-05-19 21:23:28.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:23:28.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:28.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:28.195 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:23:28.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2909ms +2024-05-19 21:23:43.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:23:43.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:43.189 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:43.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:23:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4724ms +2024-05-19 21:23:58.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:23:58.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:58.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:23:58.194 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:23:58.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0051ms +2024-05-19 21:24:13.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:24:13.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:13.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:13.198 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:24:13.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8426ms +2024-05-19 21:24:28.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:24:28.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:28.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:28.200 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:24:28.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8731ms +2024-05-19 21:24:43.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:24:43.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:43.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:43.195 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:24:43.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5346ms +2024-05-19 21:24:58.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:24:58.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:58.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:24:58.200 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:24:58.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8527ms +2024-05-19 21:25:13.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:25:13.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:13.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:13.192 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:25:13.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0092ms +2024-05-19 21:25:28.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:25:28.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:28.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:28.196 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:25:28.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5021ms +2024-05-19 21:25:43.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:25:43.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:43.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:43.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:25:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4623ms +2024-05-19 21:25:58.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:25:58.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:58.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:25:58.194 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:25:58.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1458ms +2024-05-19 21:26:13.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:26:13.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:13.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:13.192 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:26:13.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2527ms +2024-05-19 21:26:28.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:26:28.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:28.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:28.191 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:26:28.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1936ms +2024-05-19 21:26:43.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:26:43.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:43.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:43.191 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:26:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2165ms +2024-05-19 21:26:58.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:26:58.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:58.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:26:58.205 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:26:58.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7588ms +2024-05-19 21:27:13.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:27:13.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:13.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:13.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:27:13.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.45ms +2024-05-19 21:27:28.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:27:28.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:28.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:28.195 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:27:28.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1555ms +2024-05-19 21:27:43.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:27:43.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:43.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:43.190 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:27:43.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.014ms +2024-05-19 21:27:58.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:27:58.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:58.187 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:27:58.187 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:27:58.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7241ms +2024-05-19 21:28:13.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:28:13.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:13.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:13.193 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:28:13.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3895ms +2024-05-19 21:28:28.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:28:28.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:28.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:28.191 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:28:28.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0746ms +2024-05-19 21:28:43.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:28:43.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:43.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:43.207 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:28:43.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.2081ms +2024-05-19 21:28:58.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:28:58.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:58.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:28:58.191 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:28:58.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3208ms +2024-05-19 21:29:13.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:29:13.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:13.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:13.192 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:29:13.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0644ms +2024-05-19 21:29:27.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:29:27.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:27.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:27.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:29:27.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2979ms +2024-05-19 21:29:27.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:29:27.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:27.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:27.427 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:29:27.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2177ms +2024-05-19 21:29:42.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:29:42.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:42.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:42.431 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:29:42.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4802ms +2024-05-19 21:29:57.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:29:57.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:57.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:29:57.435 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:29:57.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7971ms +2024-05-19 21:30:04.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:30:04.616 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:04.645 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:04.646 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:30:04.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4192ms +2024-05-19 21:30:05.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:30:05.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:05.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:05.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:30:05.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3276ms +2024-05-19 21:30:19.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:30:19.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:19.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:19.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:30:19.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9206ms +2024-05-19 21:30:34.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:30:34.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:34.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:34.704 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:30:34.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.6438ms +2024-05-19 21:30:49.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:30:49.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:49.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:30:49.694 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:30:49.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.8562ms +2024-05-19 21:31:04.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:31:04.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:04.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:04.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:31:04.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3174ms +2024-05-19 21:31:19.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:31:19.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:19.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:19.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:31:19.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.5485ms +2024-05-19 21:31:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:31:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:34.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:34.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:31:34.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.8646ms +2024-05-19 21:31:49.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:31:49.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:49.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:31:49.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:31:49.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7547ms +2024-05-19 21:32:04.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:32:04.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:04.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:04.684 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:32:04.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4818ms +2024-05-19 21:32:19.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:32:19.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:19.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:19.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:32:19.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8992ms +2024-05-19 21:32:34.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:32:34.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:34.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:34.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:32:34.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.248ms +2024-05-19 21:32:49.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:32:49.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:49.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:32:49.703 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:32:49.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.4341ms +2024-05-19 21:33:04.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:33:04.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:04.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:04.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:33:04.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.9242ms +2024-05-19 21:33:19.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:33:19.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:19.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:19.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:33:19.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8367ms +2024-05-19 21:33:34.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:33:34.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:34.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:34.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:33:34.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7172ms +2024-05-19 21:33:49.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:33:49.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:49.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:33:49.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:33:49.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.717ms +2024-05-19 21:34:04.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:34:04.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:04.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:04.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:34:04.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5248ms +2024-05-19 21:34:19.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:34:19.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:19.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:19.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:34:19.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6315ms +2024-05-19 21:34:34.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:34:34.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:34.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:34.690 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:34:34.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.673ms +2024-05-19 21:34:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:34:49.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:49.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:34:49.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:34:49.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5443ms +2024-05-19 21:35:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:35:04.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:04.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:04.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:35:04.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3072ms +2024-05-19 21:35:19.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:35:19.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:19.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:19.694 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:35:19.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.8845ms +2024-05-19 21:35:34.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:35:34.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:34.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:34.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:35:34.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.7625ms +2024-05-19 21:35:49.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:35:49.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:49.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:35:49.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:35:49.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0405ms +2024-05-19 21:36:04.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:36:04.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:04.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:04.705 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:36:04.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.7192ms +2024-05-19 21:36:19.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:36:19.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:19.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:19.716 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:36:19.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 61.1777ms +2024-05-19 21:36:34.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:36:34.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:34.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:34.730 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:36:34.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 72.6008ms +2024-05-19 21:36:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:36:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:49.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:36:49.694 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:36:49.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.554ms +2024-05-19 21:37:04.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:37:04.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:04.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:04.692 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:37:04.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0161ms +2024-05-19 21:37:19.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:37:19.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:19.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:19.694 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:37:19.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.4076ms +2024-05-19 21:37:34.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:37:34.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:34.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:34.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:37:34.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0858ms +2024-05-19 21:37:49.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:37:49.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:49.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:37:49.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:37:49.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7934ms +2024-05-19 21:38:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:38:04.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:04.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:04.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:38:04.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 46.4879ms +2024-05-19 21:38:19.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:38:19.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:19.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:19.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:38:19.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7854ms +2024-05-19 21:38:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:38:34.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:34.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:34.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:38:34.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3993ms +2024-05-19 21:38:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:38:49.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:49.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:38:49.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:38:49.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.4237ms +2024-05-19 21:39:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:39:04.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:04.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:04.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:39:04.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3309ms +2024-05-19 21:39:19.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:39:19.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:19.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:19.696 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:39:19.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.5536ms +2024-05-19 21:39:34.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:39:34.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:34.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:34.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:39:34.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4744ms +2024-05-19 21:39:49.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:39:49.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:49.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:39:49.692 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:39:49.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.3233ms +2024-05-19 21:40:04.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:40:04.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:04.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:04.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:40:04.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0849ms +2024-05-19 21:40:19.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:40:19.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:19.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:19.699 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:40:19.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 48.4677ms +2024-05-19 21:40:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:40:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:34.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:34.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:40:34.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1259ms +2024-05-19 21:40:49.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:40:49.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:49.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:40:49.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:40:49.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0192ms +2024-05-19 21:41:04.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:41:04.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:04.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:04.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:41:04.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2092ms +2024-05-19 21:41:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:41:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:19.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:19.679 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:41:19.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0687ms +2024-05-19 21:41:34.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:41:34.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:34.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:34.690 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:41:34.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0171ms +2024-05-19 21:41:49.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:41:49.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:49.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:41:49.734 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:41:49.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 84.2538ms +2024-05-19 21:42:04.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:42:04.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:04.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:04.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:42:04.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8108ms +2024-05-19 21:42:19.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:42:19.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:19.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:19.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:42:19.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4126ms +2024-05-19 21:42:34.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:42:34.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:35.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:35.432 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:42:35.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 781.303ms +2024-05-19 21:42:49.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:42:49.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:50.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:42:50.091 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:42:50.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 439.1785ms +2024-05-19 21:43:04.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:43:04.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:04.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:04.915 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:43:04.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 265.2015ms +2024-05-19 21:43:19.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:43:19.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:19.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:19.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:43:19.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3162ms +2024-05-19 21:43:34.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:43:34.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:34.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:34.767 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:43:34.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 118.5133ms +2024-05-19 21:43:49.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:43:49.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:49.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:43:49.727 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:43:49.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 77.8421ms +2024-05-19 21:44:04.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:44:04.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:04.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:04.761 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:44:04.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 111.6242ms +2024-05-19 21:44:19.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:44:19.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:19.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:19.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:44:19.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3931ms +2024-05-19 21:44:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:44:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:34.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:44:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7776ms +2024-05-19 21:44:49.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:44:49.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:49.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:44:49.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:44:49.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0523ms +2024-05-19 21:45:04.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:45:04.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:04.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:04.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:45:04.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7725ms +2024-05-19 21:45:19.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:45:19.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:19.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:19.684 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:45:19.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2986ms +2024-05-19 21:45:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:45:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:34.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:34.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:45:34.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1757ms +2024-05-19 21:45:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:45:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:50.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:45:50.130 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:45:50.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 477.7511ms +2024-05-19 21:46:04.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:46:04.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:04.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:04.692 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:46:04.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.5917ms +2024-05-19 21:46:19.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:46:19.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:19.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:19.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:46:19.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9036ms +2024-05-19 21:46:34.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:46:34.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:34.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:34.711 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:46:34.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 63.2675ms +2024-05-19 21:46:49.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:46:49.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:49.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:46:49.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:46:49.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.875ms +2024-05-19 21:47:04.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:47:04.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:04.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:04.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:47:04.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2786ms +2024-05-19 21:47:19.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:47:19.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:19.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:19.689 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:47:19.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6258ms +2024-05-19 21:47:34.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:47:34.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:34.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:34.715 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:47:34.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 63.4146ms +2024-05-19 21:47:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:47:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:49.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:47:49.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:47:49.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5615ms +2024-05-19 21:48:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:48:04.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:04.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:04.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:48:04.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.332ms +2024-05-19 21:48:19.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:48:19.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:19.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:19.699 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:48:19.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.2057ms +2024-05-19 21:48:34.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:48:34.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:34.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:34.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:48:34.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9041ms +2024-05-19 21:48:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:48:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:49.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:48:49.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:48:49.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5203ms +2024-05-19 21:49:04.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:49:04.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:04.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:04.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:49:04.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1405ms +2024-05-19 21:49:19.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:49:19.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:19.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:19.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:49:19.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.196ms +2024-05-19 21:49:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:49:34.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:34.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:34.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:49:34.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4522ms +2024-05-19 21:49:49.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:49:49.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:49.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:49:49.737 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:49:49.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 84.5873ms +2024-05-19 21:50:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:50:04.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:04.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:04.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:50:04.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3513ms +2024-05-19 21:50:19.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:50:19.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:19.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:19.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:50:19.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2954ms +2024-05-19 21:50:34.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:50:34.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:34.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:34.681 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:50:34.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0748ms +2024-05-19 21:50:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:50:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:49.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:50:49.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:50:49.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8695ms +2024-05-19 21:51:04.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:51:04.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:04.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:04.697 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:51:04.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.1505ms +2024-05-19 21:51:19.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:51:19.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:19.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:19.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:51:19.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.9643ms +2024-05-19 21:51:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:51:34.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:34.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:34.691 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:51:34.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.1105ms +2024-05-19 21:51:49.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:51:49.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:49.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:51:49.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:51:49.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4944ms +2024-05-19 21:52:04.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:52:04.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:04.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:04.685 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:52:04.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7001ms +2024-05-19 21:52:19.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:52:19.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:19.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:19.720 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:52:19.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 64.6137ms +2024-05-19 21:52:34.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:52:34.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:34.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:52:34.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:52:34.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6137ms +2024-05-19 21:53:28.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:53:28.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:28.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:28.625 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:53:28.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 84.0132ms +2024-05-19 21:53:28.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:53:28.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:28.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:28.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:53:28.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 46.3088ms +2024-05-19 21:53:43.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:53:43.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:43.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:43.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:53:43.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4729ms +2024-05-19 21:53:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:53:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:58.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:53:58.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:53:58.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.1169ms +2024-05-19 21:54:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:54:13.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:13.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:13.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:54:13.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7714ms +2024-05-19 21:54:28.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:54:28.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:28.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:28.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:54:28.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9265ms +2024-05-19 21:54:43.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:54:43.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:43.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:43.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:54:43.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.4675ms +2024-05-19 21:54:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:54:58.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:58.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:54:58.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:54:58.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0775ms +2024-05-19 21:55:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:55:13.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:13.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:13.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:55:13.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2089ms +2024-05-19 21:55:28.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:55:28.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:28.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:28.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:55:28.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9071ms +2024-05-19 21:55:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:55:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:43.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:43.674 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:55:43.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.566ms +2024-05-19 21:55:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:55:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:58.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:55:58.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:55:58.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.085ms +2024-05-19 21:56:13.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:56:13.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:13.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:13.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:56:13.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6054ms +2024-05-19 21:56:28.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:56:28.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:28.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:28.673 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:56:28.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.6841ms +2024-05-19 21:56:43.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:56:43.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:43.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:43.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:56:43.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0165ms +2024-05-19 21:56:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:56:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:58.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:56:58.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:56:58.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4055ms +2024-05-19 21:57:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:57:13.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:13.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:13.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:57:13.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9166ms +2024-05-19 21:57:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:57:28.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:28.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:28.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:57:28.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7016ms +2024-05-19 21:57:43.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:57:43.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:43.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:43.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:57:43.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9573ms +2024-05-19 21:57:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:57:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:58.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:57:58.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:57:58.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8335ms +2024-05-19 21:58:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:58:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:13.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:13.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:58:13.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3818ms +2024-05-19 21:58:28.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:58:28.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:28.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:28.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:58:28.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5323ms +2024-05-19 21:58:43.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:58:43.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:43.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:43.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:58:43.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3826ms +2024-05-19 21:58:58.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:58:58.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:58.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:58:58.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:58:58.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2709ms +2024-05-19 21:59:13.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:59:13.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:13.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:13.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:59:13.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0171ms +2024-05-19 21:59:28.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:59:28.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:28.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:28.698 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:59:28.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 61.8601ms +2024-05-19 21:59:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:59:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:43.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:43.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:59:43.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8563ms +2024-05-19 21:59:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 21:59:58.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:58.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 21:59:58.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 21:59:58.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7814ms +2024-05-19 22:00:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:00:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:13.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:13.837 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:00:13.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 209.0793ms +2024-05-19 22:00:28.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:00:28.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:28.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:28.670 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:00:28.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6613ms +2024-05-19 22:00:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:00:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:43.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:43.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:00:43.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8481ms +2024-05-19 22:00:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:00:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:58.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:00:58.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:00:58.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8183ms +2024-05-19 22:01:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:01:13.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:13.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:13.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:01:13.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4348ms +2024-05-19 22:01:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:01:28.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:28.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:28.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:01:28.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4384ms +2024-05-19 22:01:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:01:43.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:43.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:43.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:01:43.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7212ms +2024-05-19 22:01:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:01:58.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:58.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:01:58.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:01:58.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1238ms +2024-05-19 22:02:13.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:02:13.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:13.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:13.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:02:13.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4815ms +2024-05-19 22:02:28.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:02:28.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:28.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:28.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:02:28.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5484ms +2024-05-19 22:02:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:02:43.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:43.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:43.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:02:43.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0848ms +2024-05-19 22:02:58.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:02:58.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:58.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:02:58.686 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:02:58.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 48.646ms +2024-05-19 22:03:13.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:03:13.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:13.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:13.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:03:13.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9204ms +2024-05-19 22:03:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:03:28.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:28.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:28.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:03:28.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2308ms +2024-05-19 22:03:43.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:03:43.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:43.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:43.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:03:43.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5757ms +2024-05-19 22:03:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:03:58.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:58.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:03:58.672 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:03:58.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.1847ms +2024-05-19 22:04:13.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:04:13.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:13.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:13.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:04:13.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1172ms +2024-05-19 22:04:28.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:04:28.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:28.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:28.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:04:28.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6923ms +2024-05-19 22:04:43.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:04:43.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:43.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:43.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:04:43.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0306ms +2024-05-19 22:04:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:04:58.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:58.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:04:58.673 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:04:58.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.8707ms +2024-05-19 22:05:13.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:05:13.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:13.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:13.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:05:13.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4982ms +2024-05-19 22:05:28.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:05:28.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:28.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:28.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:05:28.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6648ms +2024-05-19 22:05:43.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:05:43.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:43.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:43.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:05:43.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5743ms +2024-05-19 22:05:58.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:05:58.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:58.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:05:58.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:05:58.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.504ms +2024-05-19 22:06:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:06:13.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:13.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:13.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:06:13.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5775ms +2024-05-19 22:06:28.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:06:28.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:28.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:28.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:06:28.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3549ms +2024-05-19 22:06:43.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:06:43.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:43.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:43.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:06:43.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.415ms +2024-05-19 22:06:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:06:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:58.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:06:58.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:06:58.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.2427ms +2024-05-19 22:07:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:07:13.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:13.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:13.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:07:13.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3694ms +2024-05-19 22:07:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:07:28.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:28.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:28.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:07:28.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.267ms +2024-05-19 22:07:43.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:07:43.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:43.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:43.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:07:43.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0047ms +2024-05-19 22:07:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:07:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:58.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:07:58.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:07:58.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.459ms +2024-05-19 22:08:13.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:08:13.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:13.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:13.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:08:13.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.349ms +2024-05-19 22:08:28.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:08:28.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:28.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:28.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:08:28.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2461ms +2024-05-19 22:08:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:08:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:43.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:43.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:08:43.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3127ms +2024-05-19 22:08:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:08:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:58.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:08:58.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:08:58.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.636ms +2024-05-19 22:09:13.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:09:13.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:13.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:13.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:09:13.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8534ms +2024-05-19 22:09:28.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:09:28.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:28.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:28.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:09:28.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0593ms +2024-05-19 22:09:43.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:09:43.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:43.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:43.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:09:43.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7832ms +2024-05-19 22:09:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:09:58.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:58.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:09:58.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:09:58.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4709ms +2024-05-19 22:10:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:10:13.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:13.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:13.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:10:13.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.114ms +2024-05-19 22:10:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:10:28.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:28.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:28.667 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:10:28.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9836ms +2024-05-19 22:10:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:10:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:43.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:43.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:10:43.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0911ms +2024-05-19 22:10:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:10:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:58.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:10:58.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:10:58.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4531ms +2024-05-19 22:11:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:11:13.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:13.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:13.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:11:13.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0544ms +2024-05-19 22:11:28.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:11:28.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:28.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:28.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:11:28.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4381ms +2024-05-19 22:11:43.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:11:43.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:43.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:43.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:11:43.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8342ms +2024-05-19 22:11:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:11:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:58.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:11:58.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:11:58.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5996ms +2024-05-19 22:12:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:12:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:13.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:13.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:12:13.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.596ms +2024-05-19 22:12:28.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:12:28.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:28.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:28.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:12:28.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9047ms +2024-05-19 22:12:43.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:12:43.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:43.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:43.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:12:43.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8191ms +2024-05-19 22:12:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:12:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:58.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:12:58.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:12:58.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.974ms +2024-05-19 22:13:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:13:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:13.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:13.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:13:13.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0858ms +2024-05-19 22:13:28.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:13:28.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:28.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:28.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:13:28.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.4489ms +2024-05-19 22:13:43.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:13:43.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:43.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:43.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:13:43.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3861ms +2024-05-19 22:13:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:13:58.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:58.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:13:58.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:13:58.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.732ms +2024-05-19 22:14:13.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:14:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:13.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:13.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:14:13.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0056ms +2024-05-19 22:14:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:14:28.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:28.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:28.683 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:14:28.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.722ms +2024-05-19 22:14:43.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:14:43.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:43.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:43.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:14:43.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7776ms +2024-05-19 22:14:58.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:14:58.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:58.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:14:58.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:14:58.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1812ms +2024-05-19 22:15:13.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:15:13.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:13.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:13.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:15:13.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6652ms +2024-05-19 22:15:28.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:15:28.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:28.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:28.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:15:28.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0533ms +2024-05-19 22:15:43.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:15:43.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:43.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:43.688 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:15:43.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 55.6098ms +2024-05-19 22:15:58.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:15:58.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:58.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:15:58.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:15:58.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6616ms +2024-05-19 22:16:13.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:16:13.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:13.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:13.678 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:16:13.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.4132ms +2024-05-19 22:16:28.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:16:28.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:28.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:28.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:16:28.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8216ms +2024-05-19 22:16:43.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:16:43.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:43.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:43.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:16:43.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.474ms +2024-05-19 22:16:58.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:16:58.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:58.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:16:58.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:16:58.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1381ms +2024-05-19 22:17:13.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:17:13.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:13.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:13.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:17:13.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8581ms +2024-05-19 22:17:28.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:17:28.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:28.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:28.665 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:17:28.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5374ms +2024-05-19 22:17:43.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:17:43.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:43.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:43.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:17:43.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.1065ms +2024-05-19 22:17:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:17:58.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:58.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:17:58.682 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:17:58.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.8205ms +2024-05-19 22:18:13.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:18:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:13.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:13.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:18:13.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1074ms +2024-05-19 22:18:28.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:18:28.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:28.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:28.666 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:18:28.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6291ms +2024-05-19 22:18:43.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:18:43.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:43.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:43.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:18:43.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7391ms +2024-05-19 22:18:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:18:58.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:58.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:18:58.667 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:18:58.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.218ms +2024-05-19 22:19:34.856 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:19:34.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:34.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:34.888 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:19:34.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0746ms +2024-05-19 22:19:43.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:19:43.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:43.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:43.695 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:19:43.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.5177ms +2024-05-19 22:19:58.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:19:58.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:58.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:19:58.670 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:19:58.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6231ms +2024-05-19 22:20:13.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:20:13.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:13.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:13.667 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:20:13.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.252ms +2024-05-19 22:20:28.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:20:28.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:28.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:28.667 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:20:28.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1022ms +2024-05-19 22:20:43.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:20:43.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:43.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:43.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:20:43.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8473ms +2024-05-19 22:20:58.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:20:58.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:58.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:20:58.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:20:58.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3992ms +2024-05-19 22:21:13.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:21:13.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:13.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:13.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:21:13.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3634ms +2024-05-19 22:21:28.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:21:28.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:28.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:28.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:21:28.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8383ms +2024-05-19 22:21:43.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:21:43.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:43.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:43.677 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:21:43.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2001ms +2024-05-19 22:21:58.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:21:58.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:58.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:21:58.675 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:21:58.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.6405ms +2024-05-19 22:22:13.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:22:13.853 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:13.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:13.885 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:22:13.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9797ms +2024-05-19 22:22:58.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:22:58.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:58.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:58.770 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:22:58.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1106ms +2024-05-19 22:22:58.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:22:58.775 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:58.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:22:58.808 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:22:58.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7022ms +2024-05-19 22:23:01.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:01.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:01.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:01.524 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:01.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4802ms +2024-05-19 22:23:01.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:01.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:01.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:01.558 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:01.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1135ms +2024-05-19 22:23:02.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:02.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:02.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:02.947 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:02.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 64.5234ms +2024-05-19 22:23:02.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:02.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:02.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:02.982 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:02.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7482ms +2024-05-19 22:23:18.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:18.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:18.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:18.329 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:18.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8862ms +2024-05-19 22:23:18.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:23:18.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:18.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:23:18.363 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:23:18.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9536ms +2024-05-19 22:24:42.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:24:42.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:24:42.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:24:42.427 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:24:42.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1943ms +2024-05-19 22:24:42.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:24:42.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:24:42.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:24:42.462 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:24:42.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5595ms +2024-05-19 22:28:40.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:28:40.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:40.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:40.321 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:28:40.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0066ms +2024-05-19 22:28:40.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:28:40.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:40.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:40.360 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:28:40.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.121ms +2024-05-19 22:28:55.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:28:55.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:55.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:28:55.751 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:28:55.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 427.1346ms +2024-05-19 22:29:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:29:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:10.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:10.378 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:29:10.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.2855ms +2024-05-19 22:29:25.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:29:25.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:25.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:25.366 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:29:25.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9659ms +2024-05-19 22:29:52.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:29:52.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:52.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:52.917 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:29:52.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8299ms +2024-05-19 22:29:52.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:29:52.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:52.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:29:52.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:29:52.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8881ms +2024-05-19 22:30:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:30:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:07.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:07.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:30:07.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4762ms +2024-05-19 22:30:22.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:30:22.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:22.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:22.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:30:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2556ms +2024-05-19 22:30:37.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:30:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:37.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:37.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:30:37.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7046ms +2024-05-19 22:30:52.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:30:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:52.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:30:52.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:30:52.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3898ms +2024-05-19 22:31:07.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:31:07.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:07.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:07.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:31:07.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 55.6229ms +2024-05-19 22:31:22.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:31:22.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:22.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:22.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:31:22.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4ms +2024-05-19 22:31:40.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:31:40.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:40.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:40.194 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:31:40.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1139ms +2024-05-19 22:31:52.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:31:52.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:52.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:31:52.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:31:52.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6682ms +2024-05-19 22:32:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:32:07.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:07.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:07.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:32:07.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1375ms +2024-05-19 22:32:22.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:32:22.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:22.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:22.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:32:22.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2482ms +2024-05-19 22:32:37.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:32:37.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:37.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:32:37.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:32:37.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.1031ms +2024-05-19 22:32:43.954 +02:00 [INF] Deregistering a service [id: notifications-service:0ae12ce7580d4b3fb40b58dce572732b] from Consul... +2024-05-19 22:32:43.957 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0ae12ce7580d4b3fb40b58dce572732b" +2024-05-19 22:32:43.957 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0ae12ce7580d4b3fb40b58dce572732b +2024-05-19 22:32:43.957 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0ae12ce7580d4b3fb40b58dce572732b +2024-05-19 22:32:43.961 +02:00 [INF] Received HTTP response headers after 3.6912ms - 200 +2024-05-19 22:32:43.961 +02:00 [INF] End processing HTTP request after 4.507ms - 200 +2024-05-19 22:32:43.962 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 22:32:43.963 +02:00 [INF] Deregistered a service [id: notifications-service:0ae12ce7580d4b3fb40b58dce572732b] from Consul. +2024-05-19 22:37:02.874 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 22:37:02.908 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 22:37:02.974 +02:00 [INF] Registering a service [id: notifications-service:77f381a001e44b1e83068e0eaf1b7efc] in Consul... +2024-05-19 22:37:02.990 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 22:37:02.993 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 22:37:02.993 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 22:37:03.000 +02:00 [INF] Received HTTP response headers after 4.4176ms - 200 +2024-05-19 22:37:03.001 +02:00 [INF] End processing HTTP request after 8.8699ms - 200 +2024-05-19 22:37:03.004 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 22:37:03.004 +02:00 [INF] Registered a service [id: notifications-service:77f381a001e44b1e83068e0eaf1b7efc] in Consul. +2024-05-19 22:37:03.010 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 22:37:03.018 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 22:37:03.020 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 22:37:03.021 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 22:37:03.024 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 22:37:03.025 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 22:37:03.027 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 22:37:03.029 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 22:37:07.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:37:08.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:08.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:08.111 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:37:08.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 134.8871ms +2024-05-19 22:37:22.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:37:22.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:22.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:22.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:37:22.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.5933ms +2024-05-19 22:37:37.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:37:37.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:37.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:37.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:37:37.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9873ms +2024-05-19 22:37:52.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:37:52.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:52.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:37:52.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:37:52.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.2707ms +2024-05-19 22:38:07.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:38:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:07.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:07.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:38:07.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.386ms +2024-05-19 22:38:22.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:38:22.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:22.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:22.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:38:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5707ms +2024-05-19 22:38:37.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:38:37.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:37.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:37.954 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:38:37.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8038ms +2024-05-19 22:38:52.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:38:52.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:52.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:38:52.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:38:52.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.4525ms +2024-05-19 22:39:07.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:39:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:07.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:07.951 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:39:07.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3031ms +2024-05-19 22:39:22.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:39:22.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:22.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:22.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:39:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5846ms +2024-05-19 22:39:37.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:39:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:37.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:37.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:39:37.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5793ms +2024-05-19 22:39:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:39:52.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:52.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:39:52.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:39:52.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.1276ms +2024-05-19 22:40:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:40:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:07.953 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:07.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:40:07.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3909ms +2024-05-19 22:40:22.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:40:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:22.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:22.952 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:40:22.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.636ms +2024-05-19 22:40:37.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:40:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:37.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:37.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:40:37.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2422ms +2024-05-19 22:40:52.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:40:52.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:52.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:40:52.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:40:52.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8031ms +2024-05-19 22:41:07.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:41:07.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:07.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:07.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:41:07.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.1019ms +2024-05-19 22:41:22.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:41:22.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:22.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:22.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:41:22.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3147ms +2024-05-19 22:41:37.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:41:37.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:37.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:37.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:41:37.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0267ms +2024-05-19 22:41:52.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:41:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:52.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:41:52.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:41:52.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2953ms +2024-05-19 22:42:07.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:42:07.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:07.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:07.952 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:42:07.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9906ms +2024-05-19 22:42:22.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:42:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:22.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:22.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:42:22.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1592ms +2024-05-19 22:42:37.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:42:37.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:37.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:37.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:42:37.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6768ms +2024-05-19 22:42:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:42:52.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:52.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:42:52.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:42:52.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8704ms +2024-05-19 22:43:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:43:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:07.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:07.949 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:43:07.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7125ms +2024-05-19 22:43:22.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:43:22.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:22.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:22.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:43:22.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8294ms +2024-05-19 22:43:37.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:43:37.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:37.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:37.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:43:37.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6945ms +2024-05-19 22:43:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:43:52.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:52.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:43:52.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:43:52.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6315ms +2024-05-19 22:44:07.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:44:07.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:07.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:07.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:44:07.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2057ms +2024-05-19 22:44:22.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:44:22.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:22.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:22.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:44:22.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2006ms +2024-05-19 22:44:37.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:44:37.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:37.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:37.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:44:37.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.2336ms +2024-05-19 22:44:52.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:44:52.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:44:52.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:44:52.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.0865ms +2024-05-19 22:45:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:45:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:07.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:07.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:45:07.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0822ms +2024-05-19 22:45:22.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:45:22.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:22.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:22.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:45:22.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1091ms +2024-05-19 22:45:37.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:45:37.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:37.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:37.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:45:37.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.2932ms +2024-05-19 22:45:52.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:45:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:52.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:45:52.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:45:52.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4349ms +2024-05-19 22:46:07.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:46:07.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:07.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:07.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:46:07.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.448ms +2024-05-19 22:46:22.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:46:22.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:22.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:22.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:46:22.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3338ms +2024-05-19 22:46:37.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:46:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:38.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:38.051 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:46:38.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 130.8068ms +2024-05-19 22:46:52.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:46:52.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:52.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:46:52.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:46:52.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1981ms +2024-05-19 22:47:07.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:47:07.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:07.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:07.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:47:07.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6648ms +2024-05-19 22:47:22.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:47:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:22.953 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:22.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:47:22.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6113ms +2024-05-19 22:47:25.122 +02:00 [INF] Deregistering a service [id: notifications-service:77f381a001e44b1e83068e0eaf1b7efc] from Consul... +2024-05-19 22:47:25.125 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:77f381a001e44b1e83068e0eaf1b7efc" +2024-05-19 22:47:25.125 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:77f381a001e44b1e83068e0eaf1b7efc +2024-05-19 22:47:25.126 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:77f381a001e44b1e83068e0eaf1b7efc +2024-05-19 22:47:25.133 +02:00 [INF] Received HTTP response headers after 6.6843ms - 200 +2024-05-19 22:47:25.133 +02:00 [INF] End processing HTTP request after 8.0064ms - 200 +2024-05-19 22:47:25.134 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 22:47:25.135 +02:00 [INF] Deregistered a service [id: notifications-service:77f381a001e44b1e83068e0eaf1b7efc] from Consul. +2024-05-19 22:47:35.358 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-19 22:47:35.416 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-19 22:47:35.488 +02:00 [INF] Registering a service [id: notifications-service:40ac0180a8e54632aaafbad79b571bec] in Consul... +2024-05-19 22:47:35.512 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-19 22:47:35.517 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 22:47:35.517 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-19 22:47:35.524 +02:00 [INF] Received HTTP response headers after 4.8868ms - 200 +2024-05-19 22:47:35.525 +02:00 [INF] End processing HTTP request after 9.7583ms - 200 +2024-05-19 22:47:35.528 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 22:47:35.529 +02:00 [INF] Registered a service [id: notifications-service:40ac0180a8e54632aaafbad79b571bec] in Consul. +2024-05-19 22:47:35.536 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-19 22:47:35.548 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-19 22:47:35.552 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-19 22:47:35.555 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-19 22:47:35.558 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-19 22:47:35.562 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-19 22:47:35.565 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-19 22:47:35.568 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-19 22:47:37.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:47:37.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:38.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:38.064 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:47:38.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 127.6052ms +2024-05-19 22:47:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:47:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:52.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:47:52.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:47:52.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3662ms +2024-05-19 22:48:08.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:48:08.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:08.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:08.202 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:48:08.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2947ms +2024-05-19 22:48:22.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:48:22.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:22.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:22.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:48:22.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4161ms +2024-05-19 22:48:37.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:48:37.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:37.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:37.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:48:37.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.3454ms +2024-05-19 22:48:52.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:48:52.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:52.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:48:52.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:48:52.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6899ms +2024-05-19 22:49:07.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:49:07.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:07.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:07.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:49:07.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6256ms +2024-05-19 22:49:22.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:49:22.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:22.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:22.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:49:22.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5133ms +2024-05-19 22:49:37.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:49:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:37.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:37.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:49:37.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4538ms +2024-05-19 22:49:52.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:49:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:52.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:49:52.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:49:52.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.886ms +2024-05-19 22:50:07.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:50:07.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:07.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:07.949 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:50:07.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2304ms +2024-05-19 22:50:22.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:50:22.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:22.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:22.951 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:50:22.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7851ms +2024-05-19 22:50:37.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:50:37.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:37.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:37.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:50:37.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.573ms +2024-05-19 22:50:52.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:50:52.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:52.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:50:52.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:50:52.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.148ms +2024-05-19 22:51:07.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:51:07.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:07.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:07.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:51:07.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6572ms +2024-05-19 22:51:22.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:51:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:22.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:22.950 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:51:22.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.777ms +2024-05-19 22:51:37.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:51:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:37.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:37.948 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:51:37.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1168ms +2024-05-19 22:51:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:51:52.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:52.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:51:52.951 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:51:52.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.7835ms +2024-05-19 22:52:07.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:52:07.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:07.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:07.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:52:07.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8916ms +2024-05-19 22:52:22.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:52:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:22.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:22.951 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:52:22.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1248ms +2024-05-19 22:52:37.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:52:37.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:37.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:37.952 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:52:37.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.013ms +2024-05-19 22:52:52.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:52:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:52.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:52:52.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:52:52.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4531ms +2024-05-19 22:53:07.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:07.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:07.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:07.951 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:07.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9034ms +2024-05-19 22:53:22.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:22.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:22.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:22.949 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:22.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3283ms +2024-05-19 22:53:46.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:46.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:46.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:46.542 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:46.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8761ms +2024-05-19 22:53:46.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:46.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:46.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:46.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:46.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6317ms +2024-05-19 22:53:49.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:49.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:49.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:49.229 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:49.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7122ms +2024-05-19 22:53:49.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:49.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:49.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:49.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6244ms +2024-05-19 22:53:51.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:51.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:51.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:51.304 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:51.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9254ms +2024-05-19 22:53:51.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:53:51.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:51.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:53:51.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:53:51.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7854ms +2024-05-19 22:54:01.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:01.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:01.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:01.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:01.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8263ms +2024-05-19 22:54:04.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:04.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:04.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:04.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:04.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0261ms +2024-05-19 22:54:06.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:06.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:06.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:06.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.6126ms +2024-05-19 22:54:16.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:16.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:16.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:16.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:16.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5675ms +2024-05-19 22:54:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:19.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:19.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:19.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.312ms +2024-05-19 22:54:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:21.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:21.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5035ms +2024-05-19 22:54:31.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:31.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:31.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:31.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:31.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8648ms +2024-05-19 22:54:34.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:34.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:34.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:34.261 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:34.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7605ms +2024-05-19 22:54:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:36.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:36.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:36.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2925ms +2024-05-19 22:54:46.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:46.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:46.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:46.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:46.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9245ms +2024-05-19 22:54:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:49.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:49.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:49.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5974ms +2024-05-19 22:54:51.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:54:51.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:51.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:54:51.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:54:51.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9793ms +2024-05-19 22:55:01.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:01.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:01.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:01.593 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:01.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.2765ms +2024-05-19 22:55:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:04.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:04.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:04.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:04.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3417ms +2024-05-19 22:55:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:06.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:06.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.4703ms +2024-05-19 22:55:16.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:16.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:16.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:16.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:16.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4126ms +2024-05-19 22:55:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:19.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:19.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3226ms +2024-05-19 22:55:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:21.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2034ms +2024-05-19 22:55:31.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:31.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:31.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:31.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.696ms +2024-05-19 22:55:34.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:34.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:34.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:34.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2579ms +2024-05-19 22:55:36.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:36.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:36.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7094ms +2024-05-19 22:55:46.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:46.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:46.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:46.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:46.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4762ms +2024-05-19 22:55:49.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:49.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:49.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:49.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.551ms +2024-05-19 22:55:51.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:55:51.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:51.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:55:51.355 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:55:51.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3378ms +2024-05-19 22:56:01.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:01.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:01.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:01.587 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:01.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4376ms +2024-05-19 22:56:04.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:04.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:04.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:04.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:04.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2961ms +2024-05-19 22:56:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2472ms +2024-05-19 22:56:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:16.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:16.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:16.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1156ms +2024-05-19 22:56:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:19.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:19.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:19.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0523ms +2024-05-19 22:56:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:21.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:21.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2943ms +2024-05-19 22:56:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:31.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:31.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4555ms +2024-05-19 22:56:34.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:34.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:34.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:34.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.897ms +2024-05-19 22:56:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:36.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:36.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7171ms +2024-05-19 22:56:46.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:46.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:46.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:46.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:46.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8879ms +2024-05-19 22:56:49.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:49.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:49.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:49.276 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:49.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.3204ms +2024-05-19 22:56:51.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:56:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:51.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:56:51.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:56:51.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8774ms +2024-05-19 22:57:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:01.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:01.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:01.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:01.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0141ms +2024-05-19 22:57:04.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:04.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:04.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:04.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1818ms +2024-05-19 22:57:06.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:06.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:06.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:06.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1637ms +2024-05-19 22:57:16.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:16.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:16.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:16.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:16.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5952ms +2024-05-19 22:57:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:19.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:19.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:19.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:19.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.397ms +2024-05-19 22:57:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:21.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:21.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:21.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9712ms +2024-05-19 22:57:31.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:31.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:31.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:31.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:31.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2434ms +2024-05-19 22:57:34.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:34.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:34.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:34.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6462ms +2024-05-19 22:57:36.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:36.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:36.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:36.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:36.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3582ms +2024-05-19 22:57:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:46.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:46.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:46.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:46.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7623ms +2024-05-19 22:57:49.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:49.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:49.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:49.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:49.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4588ms +2024-05-19 22:57:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:57:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:51.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:57:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:57:51.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1212ms +2024-05-19 22:58:01.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:01.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:01.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:01.588 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:01.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7908ms +2024-05-19 22:58:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:04.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:04.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:04.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4314ms +2024-05-19 22:58:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:06.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1668ms +2024-05-19 22:58:16.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:16.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:16.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:16.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4524ms +2024-05-19 22:58:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:19.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:19.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:19.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8158ms +2024-05-19 22:58:21.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:21.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:21.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:21.358 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:21.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8453ms +2024-05-19 22:58:31.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:31.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:31.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:31.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8401ms +2024-05-19 22:58:34.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:34.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:34.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:34.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3434ms +2024-05-19 22:58:36.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:36.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:36.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:36.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.16ms +2024-05-19 22:58:46.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:46.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:46.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:46.588 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:46.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6263ms +2024-05-19 22:58:49.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:49.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:49.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:49.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:49.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1532ms +2024-05-19 22:58:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:58:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:58:51.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:58:51.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1932ms +2024-05-19 22:59:01.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:01.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:01.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:01.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:01.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1885ms +2024-05-19 22:59:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:04.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:04.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:04.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:04.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5557ms +2024-05-19 22:59:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:06.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:06.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.916ms +2024-05-19 22:59:16.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:16.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:16.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:16.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:16.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0629ms +2024-05-19 22:59:19.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:19.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:19.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:19.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0182ms +2024-05-19 22:59:21.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:21.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:21.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:21.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7289ms +2024-05-19 22:59:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:31.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:31.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:31.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3565ms +2024-05-19 22:59:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:34.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:34.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.1463ms +2024-05-19 22:59:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:36.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:36.361 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:36.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 47.5339ms +2024-05-19 22:59:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:46.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:46.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:46.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:46.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3088ms +2024-05-19 22:59:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:49.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:49.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:49.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:49.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0364ms +2024-05-19 22:59:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 22:59:51.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:51.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 22:59:51.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 22:59:51.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1049ms +2024-05-19 23:00:01.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:01.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:01.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:01.792 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:01.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 242.8847ms +2024-05-19 23:00:04.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:04.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:04.680 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:04.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 440.7482ms +2024-05-19 23:00:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:06.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:06.406 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:06.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 94.1218ms +2024-05-19 23:00:16.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:16.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:16.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:16.588 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:16.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.7461ms +2024-05-19 23:00:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:19.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:19.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:19.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2293ms +2024-05-19 23:00:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:21.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8933ms +2024-05-19 23:00:31.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:31.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:31.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:31.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1921ms +2024-05-19 23:00:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:34.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0774ms +2024-05-19 23:00:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:36.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:36.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:36.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:36.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1951ms +2024-05-19 23:00:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:46.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:46.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:46.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:46.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8821ms +2024-05-19 23:00:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:49.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:49.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:49.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:49.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9128ms +2024-05-19 23:00:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:00:51.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:51.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:00:51.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:00:51.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3628ms +2024-05-19 23:01:01.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:01.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:01.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:01.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:01.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1269ms +2024-05-19 23:01:04.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:04.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:04.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:04.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:04.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4242ms +2024-05-19 23:01:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:06.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2296ms +2024-05-19 23:01:16.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:16.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:16.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:16.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:16.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9411ms +2024-05-19 23:01:19.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:19.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:19.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:19.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:19.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2519ms +2024-05-19 23:01:21.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:21.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:21.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:21.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:21.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7735ms +2024-05-19 23:01:31.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:31.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:31.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:31.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:31.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0526ms +2024-05-19 23:01:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:34.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:34.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:34.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:34.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7964ms +2024-05-19 23:01:36.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:36.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:36.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:36.337 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:36.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5676ms +2024-05-19 23:01:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:46.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:46.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:46.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4673ms +2024-05-19 23:01:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:49.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:49.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:49.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:49.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7016ms +2024-05-19 23:01:51.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:01:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:01:51.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:01:51.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.6713ms +2024-05-19 23:02:01.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:01.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:01.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:01.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:01.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4662ms +2024-05-19 23:02:04.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:04.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:04.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:04.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:04.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1435ms +2024-05-19 23:02:06.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:06.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:06.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:06.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:06.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7008ms +2024-05-19 23:02:16.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:16.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:16.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:16.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:16.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7578ms +2024-05-19 23:02:19.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:19.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:19.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:19.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:19.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6659ms +2024-05-19 23:02:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:21.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:21.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:21.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6479ms +2024-05-19 23:02:31.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:31.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:31.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:31.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5546ms +2024-05-19 23:02:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:34.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4521ms +2024-05-19 23:02:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:36.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:36.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4811ms +2024-05-19 23:02:46.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:46.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:46.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:46.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:46.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4975ms +2024-05-19 23:02:49.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:49.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:49.260 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:49.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3553ms +2024-05-19 23:02:51.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:02:51.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:51.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:02:51.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:02:51.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1356ms +2024-05-19 23:03:01.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:01.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:01.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:01.589 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:01.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.4382ms +2024-05-19 23:03:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:04.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:04.280 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:04.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.2912ms +2024-05-19 23:03:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:06.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:06.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:06.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3419ms +2024-05-19 23:03:16.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:16.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:17.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:17.390 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:17.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 844.5437ms +2024-05-19 23:03:19.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:19.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:19.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:19.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:19.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0072ms +2024-05-19 23:03:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:21.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:21.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:21.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:21.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2104ms +2024-05-19 23:03:31.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:31.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:31.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:31.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:31.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3646ms +2024-05-19 23:03:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:34.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:34.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8433ms +2024-05-19 23:03:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:36.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:36.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:36.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:36.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3805ms +2024-05-19 23:03:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:46.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:46.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:46.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:46.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9192ms +2024-05-19 23:03:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:49.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:49.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:49.383 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:49.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 146.3527ms +2024-05-19 23:03:51.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:03:51.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:51.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:03:51.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:03:51.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3773ms +2024-05-19 23:04:01.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:01.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:01.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:01.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:01.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5916ms +2024-05-19 23:04:04.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:04.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:04.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:04.262 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:04.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8652ms +2024-05-19 23:04:06.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:06.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:06.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3827ms +2024-05-19 23:04:16.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:16.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:16.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:16.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7821ms +2024-05-19 23:04:19.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:19.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:19.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:19.261 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:19.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1104ms +2024-05-19 23:04:21.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:21.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:21.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:21.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:21.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.101ms +2024-05-19 23:04:31.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:31.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:31.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:31.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:31.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6457ms +2024-05-19 23:04:34.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:34.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:34.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3381ms +2024-05-19 23:04:36.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:36.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:36.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:36.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0383ms +2024-05-19 23:04:46.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:46.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:46.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:46.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:46.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.614ms +2024-05-19 23:04:49.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:49.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:49.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:49.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9906ms +2024-05-19 23:04:51.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:04:51.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:51.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:04:51.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:04:51.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9792ms +2024-05-19 23:05:01.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:01.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:01.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:01.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:01.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9852ms +2024-05-19 23:05:04.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:04.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:04.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:04.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:04.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6374ms +2024-05-19 23:05:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:06.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:06.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:06.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:06.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8914ms +2024-05-19 23:05:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:16.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:16.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:16.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0627ms +2024-05-19 23:05:19.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:19.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:19.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:19.260 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:19.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0283ms +2024-05-19 23:05:21.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:21.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:21.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:21.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0952ms +2024-05-19 23:05:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:31.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:31.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:31.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8906ms +2024-05-19 23:05:34.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:34.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:34.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:34.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:34.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6713ms +2024-05-19 23:05:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:36.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:36.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:36.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.8896ms +2024-05-19 23:05:46.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:46.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:46.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:46.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 52.8386ms +2024-05-19 23:05:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:49.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:49.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:49.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9491ms +2024-05-19 23:05:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:05:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:51.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:05:51.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:05:51.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9749ms +2024-05-19 23:06:01.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:01.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:01.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:01.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:01.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3339ms +2024-05-19 23:06:04.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:04.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:04.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:04.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:04.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7375ms +2024-05-19 23:06:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:06.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:06.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:06.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:06.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8039ms +2024-05-19 23:06:16.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:16.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:16.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2309ms +2024-05-19 23:06:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:19.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:19.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:19.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9323ms +2024-05-19 23:06:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:21.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:21.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:21.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5255ms +2024-05-19 23:06:31.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:31.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:31.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:31.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:31.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7956ms +2024-05-19 23:06:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:34.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:34.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:34.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:34.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7879ms +2024-05-19 23:06:36.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:36.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:36.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:36.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:36.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9458ms +2024-05-19 23:06:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:46.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:46.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:46.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:46.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9891ms +2024-05-19 23:06:49.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:49.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:49.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:49.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:49.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1553ms +2024-05-19 23:06:51.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:06:51.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:51.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:06:51.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:06:51.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1768ms +2024-05-19 23:07:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:01.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:01.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:01.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:01.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7852ms +2024-05-19 23:07:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:04.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:04.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:04.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9947ms +2024-05-19 23:07:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4276ms +2024-05-19 23:07:16.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:16.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:16.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:16.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:16.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.873ms +2024-05-19 23:07:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:19.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:19.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:19.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1408ms +2024-05-19 23:07:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:21.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:21.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0262ms +2024-05-19 23:07:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:31.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:31.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:31.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5052ms +2024-05-19 23:07:34.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:34.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:34.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:34.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4098ms +2024-05-19 23:07:36.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:36.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:36.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:36.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3961ms +2024-05-19 23:07:46.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:46.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:46.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:46.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:46.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6627ms +2024-05-19 23:07:49.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:49.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:49.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:49.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:49.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6083ms +2024-05-19 23:07:51.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:07:51.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:07:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:07:51.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.8324ms +2024-05-19 23:08:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:01.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:01.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:01.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:01.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5405ms +2024-05-19 23:08:04.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:04.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:04.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:04.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9261ms +2024-05-19 23:08:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:06.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6515ms +2024-05-19 23:08:16.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:16.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:16.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:16.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3821ms +2024-05-19 23:08:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:19.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:19.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:19.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:19.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.871ms +2024-05-19 23:08:21.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:21.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:21.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.2349ms +2024-05-19 23:08:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:31.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:31.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:31.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0189ms +2024-05-19 23:08:34.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:34.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:34.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:34.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1751ms +2024-05-19 23:08:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:36.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:36.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:36.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.5042ms +2024-05-19 23:08:37.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:37.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:37.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:37.933 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:37.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3409ms +2024-05-19 23:08:37.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:37.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:37.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:37.970 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:37.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2681ms +2024-05-19 23:08:46.555 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:46.556 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:46.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:46.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:46.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.17ms +2024-05-19 23:08:49.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:49.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:49.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:49.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0699ms +2024-05-19 23:08:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:51.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8486ms +2024-05-19 23:08:52.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:08:52.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:52.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:08:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:08:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9334ms +2024-05-19 23:09:01.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:01.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:01.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:01.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:01.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0755ms +2024-05-19 23:09:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:04.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:04.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:04.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8141ms +2024-05-19 23:09:06.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:06.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:06.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:06.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2176ms +2024-05-19 23:09:07.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:07.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:07.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:07.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:07.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5912ms +2024-05-19 23:09:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:16.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:16.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:16.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8606ms +2024-05-19 23:09:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:19.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:19.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:19.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9491ms +2024-05-19 23:09:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:21.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:21.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:21.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9615ms +2024-05-19 23:09:22.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:22.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:22.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:22.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:22.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1119ms +2024-05-19 23:09:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:31.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:31.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:31.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9545ms +2024-05-19 23:09:34.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:34.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:34.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9875ms +2024-05-19 23:09:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:36.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4136ms +2024-05-19 23:09:37.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:37.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:37.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:37.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:37.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0335ms +2024-05-19 23:09:46.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:46.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:46.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:46.587 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:46.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9079ms +2024-05-19 23:09:49.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:49.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:49.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:49.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9214ms +2024-05-19 23:09:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:51.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:51.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:51.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1313ms +2024-05-19 23:09:52.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:09:52.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:52.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:09:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:09:52.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2084ms +2024-05-19 23:10:01.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:01.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:01.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:01.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:01.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6219ms +2024-05-19 23:10:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:04.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:04.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:04.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9204ms +2024-05-19 23:10:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5126ms +2024-05-19 23:10:07.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:07.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:07.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:07.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9335ms +2024-05-19 23:10:16.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:16.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:16.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:16.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:16.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9913ms +2024-05-19 23:10:19.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:19.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:19.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:19.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9926ms +2024-05-19 23:10:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:21.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2387ms +2024-05-19 23:10:22.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:22.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:22.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:22.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:22.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8861ms +2024-05-19 23:10:31.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:31.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:31.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:31.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:31.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4107ms +2024-05-19 23:10:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:34.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:34.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:34.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.735ms +2024-05-19 23:10:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:36.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:36.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7284ms +2024-05-19 23:10:37.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:37.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:37.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:37.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:37.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3928ms +2024-05-19 23:10:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:46.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:46.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:46.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:46.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7528ms +2024-05-19 23:10:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:49.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:49.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:49.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:49.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.386ms +2024-05-19 23:10:51.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:51.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:51.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:51.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:51.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2626ms +2024-05-19 23:10:52.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:10:52.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:52.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:10:52.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:10:52.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1703ms +2024-05-19 23:11:01.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:01.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:01.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:01.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:01.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.651ms +2024-05-19 23:11:04.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:04.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:04.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:04.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:04.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6655ms +2024-05-19 23:11:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:06.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0838ms +2024-05-19 23:11:07.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:07.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:07.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:07.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0873ms +2024-05-19 23:11:16.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:16.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:16.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:16.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:16.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5597ms +2024-05-19 23:11:19.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:19.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:19.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:19.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:19.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0114ms +2024-05-19 23:11:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:21.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:21.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:21.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1988ms +2024-05-19 23:11:22.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:22.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:22.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:22.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:22.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9384ms +2024-05-19 23:11:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:31.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:31.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:31.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3081ms +2024-05-19 23:11:34.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:34.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:34.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:34.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0283ms +2024-05-19 23:11:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:36.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:36.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:36.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:36.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.139ms +2024-05-19 23:11:37.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:37.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:37.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:37.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:37.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6681ms +2024-05-19 23:11:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:46.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:46.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:46.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:46.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0819ms +2024-05-19 23:11:49.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:49.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:49.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:49.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7359ms +2024-05-19 23:11:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:51.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:51.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:51.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:51.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1715ms +2024-05-19 23:11:52.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:11:52.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:52.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:11:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:11:52.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.706ms +2024-05-19 23:12:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:01.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:01.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:01.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:01.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2517ms +2024-05-19 23:12:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:04.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:04.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:04.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:04.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0212ms +2024-05-19 23:12:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:06.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:06.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:06.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:06.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6582ms +2024-05-19 23:12:07.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:07.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:07.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:07.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:07.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0161ms +2024-05-19 23:12:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:16.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:16.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:16.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6175ms +2024-05-19 23:12:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:19.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:19.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:19.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0716ms +2024-05-19 23:12:21.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:21.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:21.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:21.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7657ms +2024-05-19 23:12:22.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:22.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:22.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:22.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:22.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0542ms +2024-05-19 23:12:31.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:31.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:31.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:31.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8803ms +2024-05-19 23:12:34.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:34.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:34.279 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:34.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.2316ms +2024-05-19 23:12:36.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:36.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:36.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:36.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7971ms +2024-05-19 23:12:37.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:37.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:37.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:37.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:37.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2729ms +2024-05-19 23:12:46.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:46.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:46.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:46.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:46.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2922ms +2024-05-19 23:12:49.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:49.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:49.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:49.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:49.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3654ms +2024-05-19 23:12:51.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:51.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:51.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:51.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:51.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5065ms +2024-05-19 23:12:52.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:12:52.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:52.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:12:52.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:12:52.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9172ms +2024-05-19 23:13:01.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:01.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:01.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:01.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:01.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1369ms +2024-05-19 23:13:04.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:04.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:04.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:04.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:04.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8787ms +2024-05-19 23:13:06.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:06.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:06.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.9703ms +2024-05-19 23:13:07.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:07.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:07.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:07.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2876ms +2024-05-19 23:13:16.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:16.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:16.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:16.571 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:16.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.772ms +2024-05-19 23:13:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:19.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:19.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2176ms +2024-05-19 23:13:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:21.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:21.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:21.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8122ms +2024-05-19 23:13:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:22.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:22.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:22.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:22.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.138ms +2024-05-19 23:13:31.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:31.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:31.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:31.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:31.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7464ms +2024-05-19 23:13:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:34.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:34.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9855ms +2024-05-19 23:13:40.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:40.200 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:40.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:40.230 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:40.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8528ms +2024-05-19 23:13:42.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:42.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:42.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:42.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:42.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7152ms +2024-05-19 23:13:46.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:46.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:46.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:46.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4484ms +2024-05-19 23:13:49.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:49.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:49.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:49.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3132ms +2024-05-19 23:13:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:51.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:51.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:51.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4397ms +2024-05-19 23:13:52.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:13:52.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:13:52.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:13:52.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4009ms +2024-05-19 23:14:01.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:01.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:01.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:01.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:01.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2909ms +2024-05-19 23:14:04.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:04.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:04.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:04.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1782ms +2024-05-19 23:14:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:06.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:06.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:06.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7873ms +2024-05-19 23:14:07.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:07.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:07.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:07.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:07.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1144ms +2024-05-19 23:14:16.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:16.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:16.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:16.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:16.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1075ms +2024-05-19 23:14:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:19.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:19.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:19.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9593ms +2024-05-19 23:14:21.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:21.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:21.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:21.342 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:21.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8458ms +2024-05-19 23:14:22.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:22.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:22.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:22.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:22.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1822ms +2024-05-19 23:14:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:31.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:31.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:31.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:31.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9868ms +2024-05-19 23:14:34.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:34.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:34.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:34.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:34.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2337ms +2024-05-19 23:14:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:36.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:36.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9676ms +2024-05-19 23:14:37.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:37.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:37.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:37.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:37.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3369ms +2024-05-19 23:14:46.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:46.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:46.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:46.588 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:46.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.6444ms +2024-05-19 23:14:49.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:49.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:49.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:49.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0201ms +2024-05-19 23:14:51.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:51.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:51.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:51.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:51.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0262ms +2024-05-19 23:14:52.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:14:52.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:52.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:14:52.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:14:52.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2861ms +2024-05-19 23:15:01.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:01.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:01.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:01.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:01.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4322ms +2024-05-19 23:15:04.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:04.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:04.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:04.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:04.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9334ms +2024-05-19 23:15:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:06.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:06.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:06.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7214ms +2024-05-19 23:15:07.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:07.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:07.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:07.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:07.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.629ms +2024-05-19 23:15:16.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:16.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:16.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:16.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:16.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5957ms +2024-05-19 23:15:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:19.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:19.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:19.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7302ms +2024-05-19 23:15:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:21.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:21.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:21.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:21.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7105ms +2024-05-19 23:15:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:22.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:22.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:22.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:22.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3143ms +2024-05-19 23:15:31.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:31.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:31.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:31.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:31.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4118ms +2024-05-19 23:15:34.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:34.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:34.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:34.275 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:34.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.243ms +2024-05-19 23:15:36.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:36.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:36.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:36.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:36.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0625ms +2024-05-19 23:15:37.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:37.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:37.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:37.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:37.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5765ms +2024-05-19 23:15:46.555 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:46.556 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:46.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:46.587 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:46.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0207ms +2024-05-19 23:15:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:49.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:49.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:49.274 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:49.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.6773ms +2024-05-19 23:15:51.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:51.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:51.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1283ms +2024-05-19 23:15:52.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:15:52.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:53.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:15:53.424 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:15:53.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 482.7397ms +2024-05-19 23:16:01.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:01.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:01.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:01.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:01.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7819ms +2024-05-19 23:16:04.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:04.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:04.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:04.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:04.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6103ms +2024-05-19 23:16:06.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:06.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:06.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:06.336 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:06.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8999ms +2024-05-19 23:16:07.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:07.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:07.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:07.970 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:07.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1786ms +2024-05-19 23:16:16.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:16.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:16.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:16.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:16.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5524ms +2024-05-19 23:16:19.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:19.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:19.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:19.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1136ms +2024-05-19 23:16:21.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:21.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:21.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:21.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8299ms +2024-05-19 23:16:22.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:22.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:22.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:22.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:22.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.8186ms +2024-05-19 23:16:31.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:31.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:31.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:31.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:31.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0949ms +2024-05-19 23:16:34.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:34.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:34.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:34.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:34.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1238ms +2024-05-19 23:16:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:36.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:36.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:36.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:36.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3971ms +2024-05-19 23:16:37.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:37.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:37.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:37.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:37.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3733ms +2024-05-19 23:16:46.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:46.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:46.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:46.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:46.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8089ms +2024-05-19 23:16:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:49.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:49.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:49.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:49.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.576ms +2024-05-19 23:16:51.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:51.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:51.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:51.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:51.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8026ms +2024-05-19 23:16:52.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:16:52.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:16:52.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:16:52.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9437ms +2024-05-19 23:17:01.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:01.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:01.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:01.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:01.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0154ms +2024-05-19 23:17:04.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:04.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:04.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:04.259 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:04.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.552ms +2024-05-19 23:17:06.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:06.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:06.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5366ms +2024-05-19 23:17:07.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:07.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:07.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:07.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:07.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6923ms +2024-05-19 23:17:16.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:16.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:16.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:16.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:16.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.6915ms +2024-05-19 23:17:19.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:19.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:19.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:19.262 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:19.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0146ms +2024-05-19 23:17:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:21.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7939ms +2024-05-19 23:17:22.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:22.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:22.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:22.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:22.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3682ms +2024-05-19 23:17:31.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:31.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:31.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:31.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:31.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.7987ms +2024-05-19 23:17:34.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:34.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:34.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:34.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:34.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8684ms +2024-05-19 23:17:36.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:36.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:36.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:36.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8532ms +2024-05-19 23:17:37.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:37.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:37.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:37.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:37.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9368ms +2024-05-19 23:17:46.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:46.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:46.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:46.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:46.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3943ms +2024-05-19 23:17:49.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:49.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:49.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:49.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:49.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4094ms +2024-05-19 23:17:51.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:51.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:51.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:51.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9509ms +2024-05-19 23:17:52.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:17:52.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:17:52.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:17:52.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5802ms +2024-05-19 23:18:01.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:01.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:01.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:01.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:01.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6581ms +2024-05-19 23:18:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:04.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:04.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:04.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:04.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.9766ms +2024-05-19 23:18:06.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:06.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:06.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:06.337 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:06.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4057ms +2024-05-19 23:18:07.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:07.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:07.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:07.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:07.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.722ms +2024-05-19 23:18:16.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:16.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:16.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:16.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:16.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9502ms +2024-05-19 23:18:19.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:19.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:19.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:19.261 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:19.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.5063ms +2024-05-19 23:18:21.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7641ms +2024-05-19 23:18:22.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:22.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:22.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:22.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:22.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0181ms +2024-05-19 23:18:31.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:31.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:31.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:31.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:31.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5403ms +2024-05-19 23:18:34.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:34.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:34.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:34.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:34.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0963ms +2024-05-19 23:18:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:36.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:36.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3738ms +2024-05-19 23:18:37.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:37.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:37.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:37.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:37.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2293ms +2024-05-19 23:18:46.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:46.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:46.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:46.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:46.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.905ms +2024-05-19 23:18:49.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:49.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:49.262 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:49.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2685ms +2024-05-19 23:18:51.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:51.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:51.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:51.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:51.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.5589ms +2024-05-19 23:18:52.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:18:52.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:18:52.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:18:52.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3845ms +2024-05-19 23:19:01.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:01.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:01.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:01.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:01.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3425ms +2024-05-19 23:19:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:04.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:04.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:04.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1647ms +2024-05-19 23:19:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.0126ms +2024-05-19 23:19:07.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:07.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:07.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:07.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:07.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2338ms +2024-05-19 23:19:16.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:16.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:16.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:16.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7719ms +2024-05-19 23:19:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:19.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:19.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:19.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7012ms +2024-05-19 23:19:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:21.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:21.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9044ms +2024-05-19 23:19:22.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:22.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:22.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:22.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:22.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.659ms +2024-05-19 23:19:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:31.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:31.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:31.587 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:31.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.2596ms +2024-05-19 23:19:34.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:34.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:34.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:34.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0715ms +2024-05-19 23:19:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:36.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.1458ms +2024-05-19 23:19:37.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:37.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:37.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:37.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:37.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 46.5358ms +2024-05-19 23:19:46.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:46.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:46.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:46.583 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:46.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6717ms +2024-05-19 23:19:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:49.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:49.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:49.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8255ms +2024-05-19 23:19:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:51.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:51.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:51.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4204ms +2024-05-19 23:19:52.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:19:52.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:52.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:19:52.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:19:52.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1448ms +2024-05-19 23:20:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:01.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:01.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:01.588 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:01.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5523ms +2024-05-19 23:20:04.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:04.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:04.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:04.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:04.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7047ms +2024-05-19 23:20:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:06.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9349ms +2024-05-19 23:20:07.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:07.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:07.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:07.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8042ms +2024-05-19 23:20:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:16.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:16.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4285ms +2024-05-19 23:20:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:19.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:19.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:19.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8078ms +2024-05-19 23:20:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:21.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:21.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:21.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:21.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8453ms +2024-05-19 23:20:22.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:22.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:22.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:22.968 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:22.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3304ms +2024-05-19 23:20:31.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:31.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:31.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:31.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:31.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7719ms +2024-05-19 23:20:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:34.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:34.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:34.268 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:34.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4057ms +2024-05-19 23:20:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:36.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:36.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0421ms +2024-05-19 23:20:37.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:37.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:37.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:37.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:37.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.959ms +2024-05-19 23:20:46.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:46.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:46.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:46.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:46.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9981ms +2024-05-19 23:20:49.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:49.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:49.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:49.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4615ms +2024-05-19 23:20:51.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:51.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:51.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3419ms +2024-05-19 23:20:52.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:20:52.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:20:52.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:20:52.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7458ms +2024-05-19 23:21:01.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:01.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:01.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:01.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:01.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6202ms +2024-05-19 23:21:04.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:04.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:04.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:04.278 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:04.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3852ms +2024-05-19 23:21:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:06.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:06.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 50.5577ms +2024-05-19 23:21:07.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:07.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:07.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:07.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:07.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1883ms +2024-05-19 23:21:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:16.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:16.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7586ms +2024-05-19 23:21:19.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:19.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:19.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:19.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:19.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9831ms +2024-05-19 23:21:21.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:21.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8913ms +2024-05-19 23:21:22.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:22.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:22.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:22.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:22.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2371ms +2024-05-19 23:21:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:31.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:31.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:31.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.5367ms +2024-05-19 23:21:34.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:34.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:34.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:34.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:34.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4604ms +2024-05-19 23:21:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:36.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:36.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5548ms +2024-05-19 23:21:37.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:37.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:37.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:37.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:37.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4293ms +2024-05-19 23:21:46.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:46.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:46.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:46.586 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:46.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4137ms +2024-05-19 23:21:49.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:49.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:49.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:49.271 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:49.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0948ms +2024-05-19 23:21:51.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:51.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:51.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9196ms +2024-05-19 23:21:52.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:21:52.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:52.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:21:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:21:52.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7678ms +2024-05-19 23:22:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:01.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:01.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:01.582 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:01.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7562ms +2024-05-19 23:22:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:04.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:04.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:04.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4709ms +2024-05-19 23:22:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:06.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:06.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0378ms +2024-05-19 23:22:07.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:07.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:07.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:07.976 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:07.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3982ms +2024-05-19 23:22:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:16.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:16.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5786ms +2024-05-19 23:22:19.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:19.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:19.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:19.283 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:19.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.975ms +2024-05-19 23:22:21.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:21.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:21.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.224ms +2024-05-19 23:22:22.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:22.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:22.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:22.970 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:22.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9677ms +2024-05-19 23:22:31.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:31.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:31.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:31.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6995ms +2024-05-19 23:22:34.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:34.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:34.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:34.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:34.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8429ms +2024-05-19 23:22:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:36.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:36.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1421ms +2024-05-19 23:22:37.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:37.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:37.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:37.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:37.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8204ms +2024-05-19 23:22:46.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:46.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:46.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:46.578 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:46.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2088ms +2024-05-19 23:22:49.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:49.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:49.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:49.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:49.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9742ms +2024-05-19 23:22:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:51.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:51.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:51.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0018ms +2024-05-19 23:22:52.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:22:52.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:22:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:22:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1364ms +2024-05-19 23:23:01.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:01.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:01.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:01.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:01.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0633ms +2024-05-19 23:23:04.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:04.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:04.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:04.270 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:04.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6354ms +2024-05-19 23:23:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:06.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:06.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:06.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5881ms +2024-05-19 23:23:07.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:07.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:07.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:07.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4705ms +2024-05-19 23:23:16.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:16.554 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:16.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:16.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:16.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1781ms +2024-05-19 23:23:19.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:19.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:19.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:19.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:19.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.0527ms +2024-05-19 23:23:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:21.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:21.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8696ms +2024-05-19 23:23:22.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:22.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:22.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:22.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:22.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1776ms +2024-05-19 23:23:31.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:31.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:31.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:31.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:31.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7688ms +2024-05-19 23:23:34.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:34.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:34.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:34.274 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:34.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9115ms +2024-05-19 23:23:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:36.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2674ms +2024-05-19 23:23:37.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:37.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:37.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:37.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:37.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6487ms +2024-05-19 23:23:46.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:46.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:46.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:46.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:46.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7414ms +2024-05-19 23:23:49.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:49.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:49.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:49.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:49.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.596ms +2024-05-19 23:23:51.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:51.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:51.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:51.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.1746ms +2024-05-19 23:23:52.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:23:52.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:52.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:23:52.996 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:23:52.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 51.484ms +2024-05-19 23:24:01.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:01.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:01.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:01.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:01.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6915ms +2024-05-19 23:24:04.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:04.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:04.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:04.272 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:04.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2866ms +2024-05-19 23:24:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6889ms +2024-05-19 23:24:07.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:07.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:07.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:07.970 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:07.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1253ms +2024-05-19 23:24:16.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:16.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:16.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:16.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:16.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6283ms +2024-05-19 23:24:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:19.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:19.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:19.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:19.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5664ms +2024-05-19 23:24:21.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:21.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:21.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6935ms +2024-05-19 23:24:22.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:22.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:22.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:22.977 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:22.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7603ms +2024-05-19 23:24:31.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:31.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:31.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:31.593 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:31.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.477ms +2024-05-19 23:24:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:34.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:34.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:34.266 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:34.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0912ms +2024-05-19 23:24:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:36.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:36.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:36.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:36.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0499ms +2024-05-19 23:24:37.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:37.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:37.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:37.981 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:37.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.6541ms +2024-05-19 23:24:46.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:46.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:46.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:46.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:46.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.536ms +2024-05-19 23:24:49.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:49.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:49.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:49.267 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:49.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8588ms +2024-05-19 23:24:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:51.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:51.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:51.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:51.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0954ms +2024-05-19 23:24:52.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:52.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:52.973 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9465ms +2024-05-19 23:24:58.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:58.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:58.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:58.936 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:58.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.5227ms +2024-05-19 23:24:58.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:24:58.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:58.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:24:58.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:24:58.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2053ms +2024-05-19 23:25:01.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:01.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:01.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:01.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:01.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2823ms +2024-05-19 23:25:04.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:04.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:04.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:04.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:04.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0377ms +2024-05-19 23:25:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:06.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:06.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:06.339 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:06.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2552ms +2024-05-19 23:25:13.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:13.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:13.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:13.974 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:13.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2076ms +2024-05-19 23:25:16.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:16.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:16.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:16.584 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:16.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.8428ms +2024-05-19 23:25:17.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:17.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:17.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:17.362 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:17.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7115ms +2024-05-19 23:25:17.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:17.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:17.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:17.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:17.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.4457ms +2024-05-19 23:25:19.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:19.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:19.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:19.265 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:19.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4403ms +2024-05-19 23:25:21.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:21.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:21.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:21.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9947ms +2024-05-19 23:25:22.094 +02:00 [INF] Received a message with ID: 'bbec707bd3d647fa864e46b49deb6379', Correlation ID: '123d792da4324c71bdbb0ba820d7b083', timestamp: 1716153922, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:25:22.094 +02:00 [INF] Received a message with ID: '2b75832e22314a97916e3a60b8f7fcb8', Correlation ID: '5f0748ace05e4abb957250d8d20b9106', timestamp: 1716153922, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:25:22.116 +02:00 [INF] Handling a message: friend_request_sent with ID: 2b75832e22314a97916e3a60b8f7fcb8, Correlation ID: 5f0748ace05e4abb957250d8d20b9106, retry: 0 +2024-05-19 23:25:22.116 +02:00 [INF] Handling a message: friend_invited with ID: bbec707bd3d647fa864e46b49deb6379, Correlation ID: 123d792da4324c71bdbb0ba820d7b083, retry: 0 +2024-05-19 23:25:22.169 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:25:22.169 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:25:22.169 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:25:22.201 +02:00 [INF] Received HTTP response headers after 31.5832ms - 200 +2024-05-19 23:25:22.201 +02:00 [INF] End processing HTTP request after 32.0186ms - 200 +2024-05-19 23:25:22.201 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:25:22.354 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:25:22.356 +02:00 [INF] Handled a message: friend_request_sent with ID: 2b75832e22314a97916e3a60b8f7fcb8, Correlation ID: 5f0748ace05e4abb957250d8d20b9106, retry: 0 +2024-05-19 23:25:22.411 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:25:22.411 +02:00 [INF] Handled a message: friend_invited with ID: bbec707bd3d647fa864e46b49deb6379, Correlation ID: 123d792da4324c71bdbb0ba820d7b083, retry: 0 +2024-05-19 23:25:31.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:31.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:31.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:31.580 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:31.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.5653ms +2024-05-19 23:25:32.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:32.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:32.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:32.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:32.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.759ms +2024-05-19 23:25:34.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:34.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:34.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:34.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5867ms +2024-05-19 23:25:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:36.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:36.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:36.338 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:36.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2568ms +2024-05-19 23:25:46.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:46.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:46.581 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:46.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5532ms +2024-05-19 23:25:47.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:47.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:47.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:47.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:47.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3129ms +2024-05-19 23:25:49.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:49.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:49.260 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:49.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2323ms +2024-05-19 23:25:51.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:25:51.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:51.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:25:51.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:25:51.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2123ms +2024-05-19 23:26:01.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:01.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:01.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:01.585 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:01.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5739ms +2024-05-19 23:26:02.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:02.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:02.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:02.397 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:02.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5762ms +2024-05-19 23:26:04.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:04.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:04.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:04.276 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:04.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.279ms +2024-05-19 23:26:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:06.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:06.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:06.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.737ms +2024-05-19 23:26:16.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:16.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:16.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:16.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:16.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0703ms +2024-05-19 23:26:17.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:17.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:17.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:17.401 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:17.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3937ms +2024-05-19 23:26:19.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:19.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:19.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:19.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:19.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0243ms +2024-05-19 23:26:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:21.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:21.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:21.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:21.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2794ms +2024-05-19 23:26:31.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:31.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:31.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:31.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:31.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1263ms +2024-05-19 23:26:32.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:32.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:32.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:32.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:32.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.1867ms +2024-05-19 23:26:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:34.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:34.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:34.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:34.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0282ms +2024-05-19 23:26:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:36.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:36.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2337ms +2024-05-19 23:26:46.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:46.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:46.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:46.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 55.3873ms +2024-05-19 23:26:47.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:47.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:47.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:47.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:47.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5089ms +2024-05-19 23:26:49.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:49.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:49.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:49.273 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:49.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.3494ms +2024-05-19 23:26:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:26:51.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:51.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:26:51.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:26:51.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.0663ms +2024-05-19 23:27:01.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:01.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:01.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:01.591 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:01.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 45.9846ms +2024-05-19 23:27:02.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:02.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:02.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:02.402 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:02.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6353ms +2024-05-19 23:27:04.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:04.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:04.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:04.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:04.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9941ms +2024-05-19 23:27:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:06.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:06.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:06.337 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:06.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.7069ms +2024-05-19 23:27:16.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:16.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:16.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:16.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:16.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2246ms +2024-05-19 23:27:17.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:17.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:17.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:17.395 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:17.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5488ms +2024-05-19 23:27:19.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:19.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:19.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:19.280 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:19.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 44.0002ms +2024-05-19 23:27:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:21.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:21.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:21.343 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4894ms +2024-05-19 23:27:31.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:31.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:31.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:31.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:31.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3544ms +2024-05-19 23:27:32.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:32.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:32.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:32.393 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:32.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8524ms +2024-05-19 23:27:34.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:34.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:34.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:34.278 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:34.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.121ms +2024-05-19 23:27:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:36.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:36.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:36.341 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:36.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4677ms +2024-05-19 23:27:46.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:46.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:46.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:46.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:46.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8776ms +2024-05-19 23:27:47.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:47.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:47.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:47.394 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:47.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9889ms +2024-05-19 23:27:49.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:49.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:49.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:49.269 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:49.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.9752ms +2024-05-19 23:27:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:27:51.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:51.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:27:51.344 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:27:51.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3859ms +2024-05-19 23:28:01.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:01.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:01.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:01.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:01.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.35ms +2024-05-19 23:28:02.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:02.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:02.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:02.409 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:02.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.4209ms +2024-05-19 23:28:04.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:04.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:04.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:04.263 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:04.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.361ms +2024-05-19 23:28:06.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:06.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.9735ms +2024-05-19 23:28:16.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:16.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:16.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:16.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:16.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3555ms +2024-05-19 23:28:17.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:17.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:17.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:17.400 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:17.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6362ms +2024-05-19 23:28:19.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:19.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:19.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:19.260 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:19.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.1935ms +2024-05-19 23:28:21.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:21.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:21.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:21.340 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:21.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.929ms +2024-05-19 23:28:31.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:31.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:31.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:31.575 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:31.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.462ms +2024-05-19 23:28:32.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:32.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:32.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:32.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:32.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9797ms +2024-05-19 23:28:34.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:34.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:34.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:34.264 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:34.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5823ms +2024-05-19 23:28:36.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:36.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:36.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:36.336 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:36.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5878ms +2024-05-19 23:28:42.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:42.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:43.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:43.023 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:43.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.284ms +2024-05-19 23:28:43.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:43.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:43.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:43.054 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:43.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3954ms +2024-05-19 23:28:47.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:47.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:47.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:47.403 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:47.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7267ms +2024-05-19 23:28:58.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:28:58.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:58.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:28:58.062 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:28:58.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7721ms +2024-05-19 23:29:02.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:02.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:02.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:02.405 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:02.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5874ms +2024-05-19 23:29:10.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:10.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:10.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:10.975 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:10.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3641ms +2024-05-19 23:29:11.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:11.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:11.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:11.379 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:11.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4064ms +2024-05-19 23:29:13.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:13.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:13.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:13.059 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:13.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5091ms +2024-05-19 23:29:16.454 +02:00 [INF] Received a message with ID: '8b0835bef85d4305b8a2a8b63a5d2739', Correlation ID: '47ad121d1b024222869cc3710d447de0', timestamp: 1716154156, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:29:16.455 +02:00 [INF] Received a message with ID: 'fbf0e3ee55ce44ae8e02ffe5aaf969e8', Correlation ID: '8ef07d73ff4d416c99eabac51e2b2ffc', timestamp: 1716154156, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:29:16.456 +02:00 [INF] Handling a message: friend_request_sent with ID: fbf0e3ee55ce44ae8e02ffe5aaf969e8, Correlation ID: 8ef07d73ff4d416c99eabac51e2b2ffc, retry: 0 +2024-05-19 23:29:16.456 +02:00 [INF] Handling a message: friend_invited with ID: 8b0835bef85d4305b8a2a8b63a5d2739, Correlation ID: 47ad121d1b024222869cc3710d447de0, retry: 0 +2024-05-19 23:29:16.487 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:29:16.487 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:29:16.488 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:29:16.521 +02:00 [INF] Received HTTP response headers after 33.5365ms - 200 +2024-05-19 23:29:16.522 +02:00 [INF] End processing HTTP request after 34.5314ms - 200 +2024-05-19 23:29:16.522 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:29:16.584 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:29:16.585 +02:00 [INF] Handled a message: friend_request_sent with ID: fbf0e3ee55ce44ae8e02ffe5aaf969e8, Correlation ID: 8ef07d73ff4d416c99eabac51e2b2ffc, retry: 0 +2024-05-19 23:29:16.714 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:29:16.715 +02:00 [INF] Handled a message: friend_invited with ID: 8b0835bef85d4305b8a2a8b63a5d2739, Correlation ID: 47ad121d1b024222869cc3710d447de0, retry: 0 +2024-05-19 23:29:25.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:26.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:26.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:26.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.9092ms +2024-05-19 23:29:28.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:28.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:28.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:28.056 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:28.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.814ms +2024-05-19 23:29:40.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:40.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:41.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:41.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:41.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.687ms +2024-05-19 23:29:43.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:43.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:43.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:43.059 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:43.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8809ms +2024-05-19 23:29:55.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:55.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:56.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:56.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:56.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3022ms +2024-05-19 23:29:57.217 +02:00 [INF] Received a message with ID: '95e7373df75941af82f8ee1766635e0f', Correlation ID: '4d85d22efa584629b0bb9b5c980cd7fb', timestamp: 1716154197, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:29:57.217 +02:00 [INF] Received a message with ID: '23b63cc6a28f418788d7967adac61a14', Correlation ID: '9d0976c087af48319f6b76d4042428f4', timestamp: 1716154197, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:29:57.217 +02:00 [INF] Handling a message: friend_invited with ID: 95e7373df75941af82f8ee1766635e0f, Correlation ID: 4d85d22efa584629b0bb9b5c980cd7fb, retry: 0 +2024-05-19 23:29:57.217 +02:00 [INF] Handling a message: friend_request_sent with ID: 23b63cc6a28f418788d7967adac61a14, Correlation ID: 9d0976c087af48319f6b76d4042428f4, retry: 0 +2024-05-19 23:29:57.246 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:29:57.247 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:29:57.247 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:29:57.278 +02:00 [INF] Received HTTP response headers after 30.7906ms - 200 +2024-05-19 23:29:57.278 +02:00 [INF] End processing HTTP request after 31.1772ms - 200 +2024-05-19 23:29:57.278 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:29:57.340 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:29:57.340 +02:00 [INF] Handled a message: friend_request_sent with ID: 23b63cc6a28f418788d7967adac61a14, Correlation ID: 9d0976c087af48319f6b76d4042428f4, retry: 0 +2024-05-19 23:29:57.500 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:29:57.500 +02:00 [INF] Handled a message: friend_invited with ID: 95e7373df75941af82f8ee1766635e0f, Correlation ID: 4d85d22efa584629b0bb9b5c980cd7fb, retry: 0 +2024-05-19 23:29:58.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:29:58.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:58.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:29:58.069 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:29:58.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.8038ms +2024-05-19 23:30:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:11.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:11.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:11.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2563ms +2024-05-19 23:30:13.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:13.031 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:13.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:13.076 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:13.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 48.1035ms +2024-05-19 23:30:25.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:25.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:26.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:26.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:26.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.109ms +2024-05-19 23:30:28.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:28.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:28.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:28.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:28.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7313ms +2024-05-19 23:30:40.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:41.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:41.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:41.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4372ms +2024-05-19 23:30:43.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:43.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:43.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:43.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:43.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8234ms +2024-05-19 23:30:55.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:55.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:56.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:56.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:56.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8712ms +2024-05-19 23:30:58.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:30:58.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:58.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:30:58.626 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:30:58.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 597.7777ms +2024-05-19 23:31:10.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:10.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:11.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:11.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:11.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3424ms +2024-05-19 23:31:13.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:13.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:13.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:13.064 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:13.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2845ms +2024-05-19 23:31:25.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:25.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:26.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:26.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:26.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7899ms +2024-05-19 23:31:28.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:28.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:28.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:28.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:28.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1572ms +2024-05-19 23:31:36.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:36.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:36.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:36.316 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:36.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4417ms +2024-05-19 23:31:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:36.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:36.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:36.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3825ms +2024-05-19 23:31:37.873 +02:00 [INF] Received a message with ID: '8e11e06cd0204ec2acd51888b6d93407', Correlation ID: '02c254eacf0f478d933c8830c02337c7', timestamp: 1716154297, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:31:37.873 +02:00 [INF] Received a message with ID: '58f2d3aef9f84cadb623379c94f02ed0', Correlation ID: '77fa79d96bb7474d93ad12cbb307421d', timestamp: 1716154297, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:31:37.873 +02:00 [INF] Handling a message: friend_request_sent with ID: 58f2d3aef9f84cadb623379c94f02ed0, Correlation ID: 77fa79d96bb7474d93ad12cbb307421d, retry: 0 +2024-05-19 23:31:37.873 +02:00 [INF] Handling a message: friend_invited with ID: 8e11e06cd0204ec2acd51888b6d93407, Correlation ID: 02c254eacf0f478d933c8830c02337c7, retry: 0 +2024-05-19 23:31:37.908 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:31:37.909 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:31:37.909 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:31:37.939 +02:00 [INF] Received HTTP response headers after 29.8112ms - 200 +2024-05-19 23:31:37.940 +02:00 [INF] End processing HTTP request after 30.9304ms - 200 +2024-05-19 23:31:37.940 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:31:38.009 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:31:38.010 +02:00 [INF] Handled a message: friend_request_sent with ID: 58f2d3aef9f84cadb623379c94f02ed0, Correlation ID: 77fa79d96bb7474d93ad12cbb307421d, retry: 0 +2024-05-19 23:31:38.099 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:31:38.099 +02:00 [INF] Handled a message: friend_invited with ID: 8e11e06cd0204ec2acd51888b6d93407, Correlation ID: 02c254eacf0f478d933c8830c02337c7, retry: 0 +2024-05-19 23:31:40.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:41.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:41.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:41.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.643ms +2024-05-19 23:31:43.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:43.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:43.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:43.070 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:43.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.103ms +2024-05-19 23:31:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:51.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:51.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:51.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3356ms +2024-05-19 23:31:55.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:55.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:56.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:56.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:56.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9958ms +2024-05-19 23:31:58.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:31:58.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:58.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:31:58.058 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:31:58.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5035ms +2024-05-19 23:32:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:06.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:06.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:06.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:06.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8177ms +2024-05-19 23:32:10.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:10.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:11.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:11.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:11.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9281ms +2024-05-19 23:32:13.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:13.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:13.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:13.070 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:13.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.1034ms +2024-05-19 23:32:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:21.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:21.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:21.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3395ms +2024-05-19 23:32:25.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:25.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:26.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:26.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:26.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.155ms +2024-05-19 23:32:28.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:28.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:28.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:28.061 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:28.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4957ms +2024-05-19 23:32:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:36.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:36.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7615ms +2024-05-19 23:32:40.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:40.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:41.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:41.022 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:41.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7709ms +2024-05-19 23:32:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:43.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:43.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:43.062 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:43.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9505ms +2024-05-19 23:32:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:51.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:51.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:51.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:51.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.0137ms +2024-05-19 23:32:55.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:55.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:56.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:56.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:56.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.745ms +2024-05-19 23:32:58.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:32:58.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:58.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:32:58.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:32:58.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3882ms +2024-05-19 23:33:06.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7295ms +2024-05-19 23:33:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:10.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:11.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:11.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:11.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.374ms +2024-05-19 23:33:13.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:13.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:13.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:13.062 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:13.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6496ms +2024-05-19 23:33:21.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:21.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:21.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:21.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:21.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4049ms +2024-05-19 23:33:25.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:25.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:26.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:26.024 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:26.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.269ms +2024-05-19 23:33:28.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:28.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:28.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:28.063 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:28.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8476ms +2024-05-19 23:33:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:36.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8357ms +2024-05-19 23:33:40.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:40.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:41.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:41.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:41.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1547ms +2024-05-19 23:33:43.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:43.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:43.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:43.069 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:43.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.0038ms +2024-05-19 23:33:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:51.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:51.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.261ms +2024-05-19 23:33:55.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:55.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:56.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:56.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:56.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6454ms +2024-05-19 23:33:58.033 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:33:58.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:58.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:33:58.064 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:33:58.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6273ms +2024-05-19 23:34:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:06.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4605ms +2024-05-19 23:34:10.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:10.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:11.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:11.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:11.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3158ms +2024-05-19 23:34:13.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:13.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:13.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:13.058 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:13.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.9799ms +2024-05-19 23:34:21.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:21.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:21.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:21.359 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:21.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4913ms +2024-05-19 23:34:25.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:25.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:26.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:26.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:26.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2306ms +2024-05-19 23:34:28.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:28.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:28.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:28.058 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:28.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0837ms +2024-05-19 23:34:36.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:36.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:36.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:36.355 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:36.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9984ms +2024-05-19 23:34:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:40.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:41.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:41.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:41.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3805ms +2024-05-19 23:34:43.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:43.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:43.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:43.061 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:43.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8736ms +2024-05-19 23:34:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:51.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:51.359 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:51.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.2079ms +2024-05-19 23:34:55.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:55.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:56.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:56.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:56.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.12ms +2024-05-19 23:34:58.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:34:58.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:58.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:34:58.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:34:58.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8362ms +2024-05-19 23:35:00.611 +02:00 [INF] Received a message with ID: '5f3d97196259449988ebf520f477ab84', Correlation ID: 'd76e72b22ab0419da5d6ce383a4a68ea', timestamp: 1716154500, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:35:00.611 +02:00 [INF] Handling a message: friend_invited with ID: 5f3d97196259449988ebf520f477ab84, Correlation ID: d76e72b22ab0419da5d6ce383a4a68ea, retry: 0 +2024-05-19 23:35:00.611 +02:00 [INF] Received a message with ID: 'f55228e7f139477992d407f39bfcc90f', Correlation ID: 'ad172e23445c479e802591b40c064860', timestamp: 1716154500, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:35:00.612 +02:00 [INF] Handling a message: friend_request_sent with ID: f55228e7f139477992d407f39bfcc90f, Correlation ID: ad172e23445c479e802591b40c064860, retry: 0 +2024-05-19 23:35:00.638 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:35:00.638 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:00.638 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:00.667 +02:00 [INF] Received HTTP response headers after 28.4678ms - 200 +2024-05-19 23:35:00.667 +02:00 [INF] End processing HTTP request after 28.8452ms - 200 +2024-05-19 23:35:00.667 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:35:00.736 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:35:00.737 +02:00 [INF] Handled a message: friend_request_sent with ID: f55228e7f139477992d407f39bfcc90f, Correlation ID: ad172e23445c479e802591b40c064860, retry: 0 +2024-05-19 23:35:01.018 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:35:01.018 +02:00 [INF] Handled a message: friend_invited with ID: 5f3d97196259449988ebf520f477ab84, Correlation ID: d76e72b22ab0419da5d6ce383a4a68ea, retry: 0 +2024-05-19 23:35:06.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:06.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:06.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:06.356 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:06.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5366ms +2024-05-19 23:35:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:10.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:11.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:11.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:11.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3617ms +2024-05-19 23:35:13.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:13.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:13.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:13.058 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:13.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2755ms +2024-05-19 23:35:21.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:21.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:21.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:21.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:21.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.9638ms +2024-05-19 23:35:25.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:25.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:26.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:26.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:26.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8179ms +2024-05-19 23:35:28.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:28.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:28.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:28.056 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:28.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8955ms +2024-05-19 23:35:36.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:36.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:36.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:36.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0529ms +2024-05-19 23:35:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:41.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:41.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:41.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.8795ms +2024-05-19 23:35:43.031 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:43.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:43.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:43.060 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:43.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4874ms +2024-05-19 23:35:51.144 +02:00 [INF] Received a message with ID: '3bcb4cfd3d624529b7dc0fd0d89a5dba', Correlation ID: '46329c33e8ed4981b899abb41cb871d6', timestamp: 1716154551, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:35:51.144 +02:00 [INF] Handling a message: friend_invited with ID: 3bcb4cfd3d624529b7dc0fd0d89a5dba, Correlation ID: 46329c33e8ed4981b899abb41cb871d6, retry: 0 +2024-05-19 23:35:51.148 +02:00 [INF] Received a message with ID: 'd73ecf6be8df40c9a7e11bd5c2d6b58b', Correlation ID: '78d0902d161a471fa4a16148b86196df', timestamp: 1716154551, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:35:51.148 +02:00 [INF] Handling a message: friend_request_sent with ID: d73ecf6be8df40c9a7e11bd5c2d6b58b, Correlation ID: 78d0902d161a471fa4a16148b86196df, retry: 0 +2024-05-19 23:35:51.173 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:35:51.173 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:51.173 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:51.202 +02:00 [INF] Received HTTP response headers after 28.7564ms - 200 +2024-05-19 23:35:51.202 +02:00 [INF] End processing HTTP request after 29.3507ms - 200 +2024-05-19 23:35:51.203 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:35:51.285 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:35:51.285 +02:00 [INF] Handled a message: friend_request_sent with ID: d73ecf6be8df40c9a7e11bd5c2d6b58b, Correlation ID: 78d0902d161a471fa4a16148b86196df, retry: 0 +2024-05-19 23:35:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:51.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:51.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.823ms +2024-05-19 23:35:51.353 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:35:51.353 +02:00 [INF] Handled a message: friend_invited with ID: 3bcb4cfd3d624529b7dc0fd0d89a5dba, Correlation ID: 46329c33e8ed4981b899abb41cb871d6, retry: 0 +2024-05-19 23:35:52.594 +02:00 [INF] Received a message with ID: '6446a929207b4b489da77ba1c2dba140', Correlation ID: 'ace5c569a19541a3b70f5d19a33b816a', timestamp: 1716154552, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:35:52.594 +02:00 [INF] Handling a message: friend_invited with ID: 6446a929207b4b489da77ba1c2dba140, Correlation ID: ace5c569a19541a3b70f5d19a33b816a, retry: 0 +2024-05-19 23:35:52.595 +02:00 [INF] Received a message with ID: 'e78b192812cc4afdb93ce4df7e62d326', Correlation ID: '9a9554d7f13746d2844c6f2e10041510', timestamp: 1716154552, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:35:52.595 +02:00 [INF] Handling a message: friend_request_sent with ID: e78b192812cc4afdb93ce4df7e62d326, Correlation ID: 9a9554d7f13746d2844c6f2e10041510, retry: 0 +2024-05-19 23:35:52.621 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:35:52.621 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:52.622 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:35:52.651 +02:00 [INF] Received HTTP response headers after 29.2653ms - 200 +2024-05-19 23:35:52.651 +02:00 [INF] End processing HTTP request after 29.752ms - 200 +2024-05-19 23:35:52.651 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:35:52.716 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:35:52.717 +02:00 [INF] Handled a message: friend_request_sent with ID: e78b192812cc4afdb93ce4df7e62d326, Correlation ID: 9a9554d7f13746d2844c6f2e10041510, retry: 0 +2024-05-19 23:35:53.156 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:35:53.157 +02:00 [INF] Handled a message: friend_invited with ID: 6446a929207b4b489da77ba1c2dba140, Correlation ID: ace5c569a19541a3b70f5d19a33b816a, retry: 0 +2024-05-19 23:35:55.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:55.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:56.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:56.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:56.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8381ms +2024-05-19 23:35:58.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:35:58.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:58.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:35:58.055 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:35:58.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.2103ms +2024-05-19 23:36:06.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:06.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:06.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:06.356 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:06.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4885ms +2024-05-19 23:36:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:10.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:11.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:11.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:11.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2013ms +2024-05-19 23:36:13.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:13.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:13.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:13.063 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:13.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4529ms +2024-05-19 23:36:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:21.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:21.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:21.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.4021ms +2024-05-19 23:36:25.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:25.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:26.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:26.025 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:26.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5031ms +2024-05-19 23:36:28.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:28.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:28.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:28.057 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:28.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4033ms +2024-05-19 23:36:36.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:36.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:36.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:36.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:36.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.835ms +2024-05-19 23:36:40.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:41.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:41.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:41.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4878ms +2024-05-19 23:36:43.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:43.031 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:43.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:43.061 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:43.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.9339ms +2024-05-19 23:36:49.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:49.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:49.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:49.871 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:49.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.6168ms +2024-05-19 23:36:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:51.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2787ms +2024-05-19 23:36:51.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:51.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.928 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:51.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8612ms +2024-05-19 23:36:51.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:51.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:51.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:51.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 26.8067ms +2024-05-19 23:36:55.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:36:55.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:56.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:36:56.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:36:56.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0272ms +2024-05-19 23:37:04.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:04.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:04.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:04.853 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:04.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.5652ms +2024-05-19 23:37:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:06.347 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:06.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0951ms +2024-05-19 23:37:06.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:06.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:06.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:06.979 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:06.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.2613ms +2024-05-19 23:37:10.068 +02:00 [INF] Received a message with ID: 'f209c59306394651aec5f27d1eebe92f', Correlation ID: '11d48d8dfa884452a97adf53477c98e3', timestamp: 1716154630, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:37:10.069 +02:00 [INF] Handling a message: friend_invited with ID: f209c59306394651aec5f27d1eebe92f, Correlation ID: 11d48d8dfa884452a97adf53477c98e3, retry: 0 +2024-05-19 23:37:10.071 +02:00 [INF] Received a message with ID: 'b54380d1c555421280f5424c8117671e', Correlation ID: '7b9d318618ff4bdd875b1b834d574bd0', timestamp: 1716154630, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:37:10.072 +02:00 [INF] Handling a message: friend_request_sent with ID: b54380d1c555421280f5424c8117671e, Correlation ID: 7b9d318618ff4bdd875b1b834d574bd0, retry: 0 +2024-05-19 23:37:10.096 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:37:10.097 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:10.097 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:10.129 +02:00 [INF] Received HTTP response headers after 32.1651ms - 200 +2024-05-19 23:37:10.129 +02:00 [INF] End processing HTTP request after 32.6268ms - 200 +2024-05-19 23:37:10.129 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:37:10.207 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:37:10.208 +02:00 [INF] Handled a message: friend_request_sent with ID: b54380d1c555421280f5424c8117671e, Correlation ID: 7b9d318618ff4bdd875b1b834d574bd0, retry: 0 +2024-05-19 23:37:10.730 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:37:10.730 +02:00 [INF] Handled a message: friend_invited with ID: f209c59306394651aec5f27d1eebe92f, Correlation ID: 11d48d8dfa884452a97adf53477c98e3, retry: 0 +2024-05-19 23:37:10.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:10.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:11.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:11.022 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:11.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.2968ms +2024-05-19 23:37:19.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:19.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:19.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:19.852 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:19.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4552ms +2024-05-19 23:37:21.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:21.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:21.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:21.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:21.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.029ms +2024-05-19 23:37:21.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:21.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:21.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:21.969 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:21.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.8171ms +2024-05-19 23:37:25.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:25.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:26.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:26.015 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:26.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.0593ms +2024-05-19 23:37:34.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:34.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:34.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:34.844 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:34.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.4938ms +2024-05-19 23:37:36.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:36.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:36.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:36.358 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:36.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.9626ms +2024-05-19 23:37:36.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:36.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:36.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:36.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:36.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2571ms +2024-05-19 23:37:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:41.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:41.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8393ms +2024-05-19 23:37:49.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:49.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:49.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:49.849 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:49.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.3345ms +2024-05-19 23:37:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:51.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:51.361 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:51.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.6184ms +2024-05-19 23:37:51.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:51.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:51.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:51.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:51.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.579ms +2024-05-19 23:37:53.432 +02:00 [INF] Received a message with ID: '873f59b820ad4854870e5932fd7225f5', Correlation ID: '412261aca9b64969ac9fbbdc1555fcd0', timestamp: 1716154673, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:37:53.432 +02:00 [INF] Received a message with ID: 'e27846a6361c4da0a94a96a8d967e5f0', Correlation ID: 'c04152bed38b42fd8ef7773a7e149df4', timestamp: 1716154673, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:37:53.432 +02:00 [INF] Handling a message: friend_request_sent with ID: 873f59b820ad4854870e5932fd7225f5, Correlation ID: 412261aca9b64969ac9fbbdc1555fcd0, retry: 0 +2024-05-19 23:37:53.432 +02:00 [INF] Handling a message: friend_invited with ID: e27846a6361c4da0a94a96a8d967e5f0, Correlation ID: c04152bed38b42fd8ef7773a7e149df4, retry: 0 +2024-05-19 23:37:53.459 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:37:53.460 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:53.460 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:53.490 +02:00 [INF] Received HTTP response headers after 29.6928ms - 200 +2024-05-19 23:37:53.490 +02:00 [INF] End processing HTTP request after 30.288ms - 200 +2024-05-19 23:37:53.490 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:37:53.554 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:37:53.554 +02:00 [INF] Handled a message: friend_request_sent with ID: 873f59b820ad4854870e5932fd7225f5, Correlation ID: 412261aca9b64969ac9fbbdc1555fcd0, retry: 0 +2024-05-19 23:37:54.365 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:37:54.365 +02:00 [INF] Handled a message: friend_invited with ID: e27846a6361c4da0a94a96a8d967e5f0, Correlation ID: c04152bed38b42fd8ef7773a7e149df4, retry: 0 +2024-05-19 23:37:55.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:37:55.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:56.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:37:56.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:37:56.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.6368ms +2024-05-19 23:37:56.098 +02:00 [INF] Received a message with ID: 'a5fddc0d99c94920b70623d292ad1145', Correlation ID: '40469311b96445ccb28c49ea014734c8', timestamp: 1716154676, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:37:56.104 +02:00 [INF] Handling a message: friend_invited with ID: a5fddc0d99c94920b70623d292ad1145, Correlation ID: 40469311b96445ccb28c49ea014734c8, retry: 0 +2024-05-19 23:37:56.099 +02:00 [INF] Received a message with ID: '7905382ce59345019b8fac40b66aca5d', Correlation ID: '89bef5e57efa4dd09d4ff05261a48584', timestamp: 1716154676, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:37:56.105 +02:00 [INF] Handling a message: friend_request_sent with ID: 7905382ce59345019b8fac40b66aca5d, Correlation ID: 89bef5e57efa4dd09d4ff05261a48584, retry: 0 +2024-05-19 23:37:56.133 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:37:56.133 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:56.133 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:37:56.161 +02:00 [INF] Received HTTP response headers after 28.1652ms - 200 +2024-05-19 23:37:56.161 +02:00 [INF] End processing HTTP request after 28.5444ms - 200 +2024-05-19 23:37:56.161 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:37:56.233 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:37:56.234 +02:00 [INF] Handled a message: friend_request_sent with ID: 7905382ce59345019b8fac40b66aca5d, Correlation ID: 89bef5e57efa4dd09d4ff05261a48584, retry: 0 +2024-05-19 23:37:56.316 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:37:56.316 +02:00 [INF] Handled a message: friend_invited with ID: a5fddc0d99c94920b70623d292ad1145, Correlation ID: 40469311b96445ccb28c49ea014734c8, retry: 0 +2024-05-19 23:38:04.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:04.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:04.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:04.847 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:04.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6797ms +2024-05-19 23:38:06.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:06.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:06.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5184ms +2024-05-19 23:38:06.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:06.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:06.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:06.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:06.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9271ms +2024-05-19 23:38:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:11.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:11.028 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:11.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 43.9562ms +2024-05-19 23:38:12.259 +02:00 [INF] Received a message with ID: 'a26181666d73476bae52edd76e34b580', Correlation ID: 'eec9987c6840456591686f593e070e15', timestamp: 1716154692, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:38:12.260 +02:00 [INF] Received a message with ID: '8ada3e244c1c436183ff9732e8692250', Correlation ID: '6ecb0f22a4de47008828f2df25bb80a3', timestamp: 1716154692, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:38:12.263 +02:00 [INF] Handling a message: friend_request_sent with ID: 8ada3e244c1c436183ff9732e8692250, Correlation ID: 6ecb0f22a4de47008828f2df25bb80a3, retry: 0 +2024-05-19 23:38:12.264 +02:00 [INF] Handling a message: friend_invited with ID: a26181666d73476bae52edd76e34b580, Correlation ID: eec9987c6840456591686f593e070e15, retry: 0 +2024-05-19 23:38:12.294 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:38:12.294 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:38:12.294 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:38:12.324 +02:00 [INF] Received HTTP response headers after 29.6002ms - 200 +2024-05-19 23:38:12.324 +02:00 [INF] End processing HTTP request after 29.9822ms - 200 +2024-05-19 23:38:12.324 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:38:12.384 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:38:12.384 +02:00 [INF] Handled a message: friend_request_sent with ID: 8ada3e244c1c436183ff9732e8692250, Correlation ID: 6ecb0f22a4de47008828f2df25bb80a3, retry: 0 +2024-05-19 23:38:12.477 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:38:12.477 +02:00 [INF] Handled a message: friend_invited with ID: a26181666d73476bae52edd76e34b580, Correlation ID: eec9987c6840456591686f593e070e15, retry: 0 +2024-05-19 23:38:19.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:19.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:19.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:19.847 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:19.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.723ms +2024-05-19 23:38:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:21.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:21.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7934ms +2024-05-19 23:38:21.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:21.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:21.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:21.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:21.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6546ms +2024-05-19 23:38:25.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:25.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:26.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:26.018 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:26.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8277ms +2024-05-19 23:38:34.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:34.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:34.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:34.855 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:34.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.5658ms +2024-05-19 23:38:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:36.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:36.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:36.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7603ms +2024-05-19 23:38:36.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:36.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:36.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:36.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:36.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.108ms +2024-05-19 23:38:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:41.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:41.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:41.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.5329ms +2024-05-19 23:38:49.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:49.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:49.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:49.845 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:49.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.2923ms +2024-05-19 23:38:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:51.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:51.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:51.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5082ms +2024-05-19 23:38:51.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:51.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:51.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:51.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:51.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.0484ms +2024-05-19 23:38:55.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:38:55.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:56.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:38:56.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:38:56.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.6544ms +2024-05-19 23:39:04.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:04.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:04.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:04.953 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:04.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 138.3743ms +2024-05-19 23:39:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:06.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:06.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:06.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:06.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4733ms +2024-05-19 23:39:06.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:06.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:06.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:06.967 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:06.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 39.0886ms +2024-05-19 23:39:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:11.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:11.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:11.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.449ms +2024-05-19 23:39:19.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:19.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:19.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:19.854 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:19.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3028ms +2024-05-19 23:39:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:21.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:21.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:21.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:21.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6155ms +2024-05-19 23:39:21.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:21.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:21.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:21.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:21.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.843ms +2024-05-19 23:39:25.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:26.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:26.010 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:26.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.9973ms +2024-05-19 23:39:34.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:34.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:34.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:34.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:34.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.0317ms +2024-05-19 23:39:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:36.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:36.383 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:36.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 64.9875ms +2024-05-19 23:39:36.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:36.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:36.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:36.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:36.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.4938ms +2024-05-19 23:39:40.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:40.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:41.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:41.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:41.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4159ms +2024-05-19 23:39:49.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:49.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:49.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:49.858 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:49.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 41.1072ms +2024-05-19 23:39:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:51.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:51.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:51.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:51.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1269ms +2024-05-19 23:39:51.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:51.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:51.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:51.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:51.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7062ms +2024-05-19 23:39:55.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:39:55.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:56.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:39:56.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:39:56.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.9382ms +2024-05-19 23:40:04.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:04.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:04.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:04.849 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:04.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.9569ms +2024-05-19 23:40:06.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:06.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:06.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1707ms +2024-05-19 23:40:06.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:06.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:06.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:06.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:06.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.7497ms +2024-05-19 23:40:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:11.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:11.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:11.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.8439ms +2024-05-19 23:40:19.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:19.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:19.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:19.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:19.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.3794ms +2024-05-19 23:40:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:21.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:21.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:21.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6688ms +2024-05-19 23:40:21.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:21.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:21.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:21.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:21.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.3886ms +2024-05-19 23:40:25.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:25.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:26.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:26.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:26.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.6947ms +2024-05-19 23:40:34.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:34.822 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:34.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:34.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1948ms +2024-05-19 23:40:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:36.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:36.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3966ms +2024-05-19 23:40:36.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:36.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:36.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:36.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:36.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1835ms +2024-05-19 23:40:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:41.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:41.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:41.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0831ms +2024-05-19 23:40:49.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:49.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:49.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:49.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:49.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.041ms +2024-05-19 23:40:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:51.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:51.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.7665ms +2024-05-19 23:40:51.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:51.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:51.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:51.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:51.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.8993ms +2024-05-19 23:40:55.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:40:55.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:56.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:40:56.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:40:56.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.8845ms +2024-05-19 23:41:04.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:04.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:04.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:04.846 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:04.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7144ms +2024-05-19 23:41:06.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0316ms +2024-05-19 23:41:06.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:06.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:06.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:06.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:06.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7725ms +2024-05-19 23:41:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:11.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:11.019 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:11.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2887ms +2024-05-19 23:41:19.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:19.822 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:19.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:19.850 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:19.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.614ms +2024-05-19 23:41:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:21.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:21.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:21.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.2722ms +2024-05-19 23:41:21.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:21.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:21.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:21.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:21.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.3655ms +2024-05-19 23:41:25.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:25.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:26.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:26.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:26.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.1233ms +2024-05-19 23:41:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:36.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.7835ms +2024-05-19 23:41:37.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:37.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:37.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:37.687 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:37.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.3406ms +2024-05-19 23:41:38.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:38.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:38.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:38.082 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:38.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.8161ms +2024-05-19 23:41:40.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:40.136 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:40.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:40.170 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:40.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.0947ms +2024-05-19 23:41:40.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:41.018 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:41.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.3602ms +2024-05-19 23:41:46.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:46.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:46.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:46.920 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:46.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6837ms +2024-05-19 23:41:47.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:47.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:47.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:47.327 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:47.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5666ms +2024-05-19 23:41:51.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:51.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:51.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:51.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:51.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4533ms +2024-05-19 23:41:55.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:41:55.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:56.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:41:56.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:41:56.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7253ms +2024-05-19 23:42:01.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:01.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:01.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:01.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:01.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6527ms +2024-05-19 23:42:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:06.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:06.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.0321ms +2024-05-19 23:42:10.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:10.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:11.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:11.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:11.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 38.4912ms +2024-05-19 23:42:16.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:16.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:16.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:16.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:16.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5313ms +2024-05-19 23:42:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:21.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:21.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6628ms +2024-05-19 23:42:25.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:25.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:26.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:26.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:26.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.8014ms +2024-05-19 23:42:31.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:31.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:31.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:31.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:31.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.6937ms +2024-05-19 23:42:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:36.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:36.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7137ms +2024-05-19 23:42:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:41.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:41.018 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:41.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.6846ms +2024-05-19 23:42:46.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:46.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:46.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:46.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:46.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.4928ms +2024-05-19 23:42:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:51.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:51.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:51.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.5637ms +2024-05-19 23:42:55.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:42:55.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:56.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:42:56.009 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:42:56.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.5739ms +2024-05-19 23:43:01.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:01.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:01.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:01.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:01.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.8884ms +2024-05-19 23:43:06.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:06.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.3517ms +2024-05-19 23:43:10.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:10.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:11.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:11.012 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:11.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.668ms +2024-05-19 23:43:16.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:16.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:16.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:16.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:16.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.6297ms +2024-05-19 23:43:21.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:21.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:21.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:21.354 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:21.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 36.066ms +2024-05-19 23:43:25.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:25.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:26.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:26.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:26.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.4356ms +2024-05-19 23:43:31.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:31.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:31.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:31.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:31.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9356ms +2024-05-19 23:43:36.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:36.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:36.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:36.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:36.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9857ms +2024-05-19 23:43:40.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:40.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:41.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:41.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.7762ms +2024-05-19 23:43:46.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:46.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:46.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:46.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:46.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.8764ms +2024-05-19 23:43:51.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:51.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:51.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:51.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:51.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2801ms +2024-05-19 23:43:55.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:43:55.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:56.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:43:56.009 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:43:56.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.0654ms +2024-05-19 23:44:01.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:01.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:01.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:01.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:01.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.9334ms +2024-05-19 23:44:06.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:06.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:06.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:06.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.3738ms +2024-05-19 23:44:10.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:10.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:11.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:11.011 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:11.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.0946ms +2024-05-19 23:44:16.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:16.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:16.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:16.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:16.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.363ms +2024-05-19 23:44:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:21.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:21.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:21.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:21.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7798ms +2024-05-19 23:44:25.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:25.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:26.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:26.023 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:26.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 40.751ms +2024-05-19 23:44:31.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:31.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:31.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:31.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:31.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1816ms +2024-05-19 23:44:36.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:36.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:36.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:36.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.9994ms +2024-05-19 23:44:40.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:40.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:41.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:41.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:41.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.6486ms +2024-05-19 23:44:46.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:46.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:46.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:46.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:46.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2761ms +2024-05-19 23:44:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:51.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:51.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.2208ms +2024-05-19 23:44:55.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:44:55.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:56.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:44:56.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:44:56.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.7701ms +2024-05-19 23:44:57.857 +02:00 [INF] Received a message with ID: '7ddf13b6b6474cdc89ca037c61bcc01e', Correlation ID: '4321db34e96a4f54b4b74f0ba799ba18', timestamp: 1716155097, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:44:57.857 +02:00 [INF] Handling a message: friend_invited with ID: 7ddf13b6b6474cdc89ca037c61bcc01e, Correlation ID: 4321db34e96a4f54b4b74f0ba799ba18, retry: 0 +2024-05-19 23:44:57.859 +02:00 [INF] Received a message with ID: '1d05305873e04d6fa7dbbff6877ac11a', Correlation ID: '856bb8a4e4ed4a6780d992077d227d82', timestamp: 1716155097, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:44:57.860 +02:00 [INF] Handling a message: friend_request_sent with ID: 1d05305873e04d6fa7dbbff6877ac11a, Correlation ID: 856bb8a4e4ed4a6780d992077d227d82, retry: 0 +2024-05-19 23:44:57.885 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:44:57.885 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:44:57.886 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:44:57.915 +02:00 [INF] Received HTTP response headers after 29.2541ms - 200 +2024-05-19 23:44:57.915 +02:00 [INF] End processing HTTP request after 29.9779ms - 200 +2024-05-19 23:44:57.916 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:44:57.980 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:44:57.980 +02:00 [INF] Handled a message: friend_request_sent with ID: 1d05305873e04d6fa7dbbff6877ac11a, Correlation ID: 856bb8a4e4ed4a6780d992077d227d82, retry: 0 +2024-05-19 23:44:59.257 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:44:59.257 +02:00 [INF] Handled a message: friend_invited with ID: 7ddf13b6b6474cdc89ca037c61bcc01e, Correlation ID: 4321db34e96a4f54b4b74f0ba799ba18, retry: 0 +2024-05-19 23:45:01.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:01.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:01.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:01.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:01.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.4499ms +2024-05-19 23:45:02.273 +02:00 [INF] Received a message with ID: '6d9b7ae57fd047c48ef90734cbf8a51e', Correlation ID: '3bad46eaff0644d3a6f08ef5045cf4bd', timestamp: 1716155102, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:45:02.274 +02:00 [INF] Handling a message: friend_invited with ID: 6d9b7ae57fd047c48ef90734cbf8a51e, Correlation ID: 3bad46eaff0644d3a6f08ef5045cf4bd, retry: 0 +2024-05-19 23:45:02.278 +02:00 [INF] Received a message with ID: '5803848ae6c847908035542313822669', Correlation ID: 'dc55ef84cd6840948f0a458d43501473', timestamp: 1716155102, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:45:02.279 +02:00 [INF] Handling a message: friend_request_sent with ID: 5803848ae6c847908035542313822669, Correlation ID: dc55ef84cd6840948f0a458d43501473, retry: 0 +2024-05-19 23:45:02.319 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:45:02.319 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:45:02.319 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:45:02.363 +02:00 [INF] Received HTTP response headers after 43.0091ms - 200 +2024-05-19 23:45:02.363 +02:00 [INF] End processing HTTP request after 43.4643ms - 200 +2024-05-19 23:45:02.363 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:45:02.444 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:45:02.445 +02:00 [INF] Handled a message: friend_request_sent with ID: 5803848ae6c847908035542313822669, Correlation ID: dc55ef84cd6840948f0a458d43501473, retry: 0 +2024-05-19 23:45:02.524 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:45:02.524 +02:00 [INF] Handled a message: friend_invited with ID: 6d9b7ae57fd047c48ef90734cbf8a51e, Correlation ID: 3bad46eaff0644d3a6f08ef5045cf4bd, retry: 0 +2024-05-19 23:45:06.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:06.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:06.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:06.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7316ms +2024-05-19 23:45:06.957 +02:00 [INF] Received a message with ID: 'e7d4da7d4a624cd5be01183153dcd3fa', Correlation ID: 'c0c559f01b8d41a7a39dccdb843a4cdd', timestamp: 1716155106, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:45:06.957 +02:00 [INF] Received a message with ID: '8d182e88000349b49694940c9afdfb0d', Correlation ID: '61d2a2dd3ad045dbb49d5f8d72b26635', timestamp: 1716155106, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:45:06.958 +02:00 [INF] Handling a message: friend_invited with ID: e7d4da7d4a624cd5be01183153dcd3fa, Correlation ID: c0c559f01b8d41a7a39dccdb843a4cdd, retry: 0 +2024-05-19 23:45:06.958 +02:00 [INF] Handling a message: friend_request_sent with ID: 8d182e88000349b49694940c9afdfb0d, Correlation ID: 61d2a2dd3ad045dbb49d5f8d72b26635, retry: 0 +2024-05-19 23:45:06.986 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:45:06.986 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:45:06.986 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:45:07.015 +02:00 [INF] Received HTTP response headers after 29.0407ms - 200 +2024-05-19 23:45:07.015 +02:00 [INF] End processing HTTP request after 29.6439ms - 200 +2024-05-19 23:45:07.015 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:45:07.081 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:45:07.081 +02:00 [INF] Handled a message: friend_request_sent with ID: 8d182e88000349b49694940c9afdfb0d, Correlation ID: 61d2a2dd3ad045dbb49d5f8d72b26635, retry: 0 +2024-05-19 23:45:07.165 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:45:07.165 +02:00 [INF] Handled a message: friend_invited with ID: e7d4da7d4a624cd5be01183153dcd3fa, Correlation ID: c0c559f01b8d41a7a39dccdb843a4cdd, retry: 0 +2024-05-19 23:45:10.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:10.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:11.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:11.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:11.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7083ms +2024-05-19 23:45:16.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:16.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:16.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:16.958 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:16.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.2678ms +2024-05-19 23:45:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:21.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:21.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:21.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:21.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.5915ms +2024-05-19 23:45:25.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:25.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:26.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:26.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:26.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7718ms +2024-05-19 23:45:31.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:31.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:31.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:31.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:31.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.0801ms +2024-05-19 23:45:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:36.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:36.346 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:36.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.7969ms +2024-05-19 23:45:40.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:40.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:41.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:41.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:41.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6974ms +2024-05-19 23:45:46.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:46.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:46.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:46.956 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:46.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 27.2887ms +2024-05-19 23:45:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:51.350 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5804ms +2024-05-19 23:45:55.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:45:55.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:56.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:45:56.132 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:45:56.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 146.4296ms +2024-05-19 23:46:01.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:01.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:01.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:01.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:01.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.1565ms +2024-05-19 23:46:06.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:06.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.101ms +2024-05-19 23:46:10.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:10.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:11.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:11.020 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:11.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.1376ms +2024-05-19 23:46:16.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:16.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:16.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:16.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:16.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 28.794ms +2024-05-19 23:46:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:21.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:21.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.6245ms +2024-05-19 23:46:25.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:25.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:26.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:26.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:26.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7103ms +2024-05-19 23:46:31.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:31.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:31.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:31.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:31.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.1677ms +2024-05-19 23:46:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:36.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:36.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 35.4397ms +2024-05-19 23:46:40.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:40.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:41.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:41.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.1582ms +2024-05-19 23:46:46.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:46.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:46.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:46.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:46.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.3398ms +2024-05-19 23:46:51.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:51.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:51.353 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:51.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.5697ms +2024-05-19 23:46:55.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:46:55.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:56.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:46:56.017 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:46:56.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.5734ms +2024-05-19 23:47:01.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:01.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:01.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:01.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:01.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 37.7606ms +2024-05-19 23:47:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:06.345 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4589ms +2024-05-19 23:47:10.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:10.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:11.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:11.018 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:11.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.0358ms +2024-05-19 23:47:16.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:16.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:16.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:16.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:16.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2874ms +2024-05-19 23:47:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:21.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 32.2685ms +2024-05-19 23:47:21.544 +02:00 [INF] Received a message with ID: 'd11700bd6c0c40f991fdb4b96192dfee', Correlation ID: '15dd81c74dd949d4b724b07dd527e439', timestamp: 1716155241, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:47:21.545 +02:00 [INF] Handling a message: friend_invited with ID: d11700bd6c0c40f991fdb4b96192dfee, Correlation ID: 15dd81c74dd949d4b724b07dd527e439, retry: 0 +2024-05-19 23:47:21.547 +02:00 [INF] Received a message with ID: '1a80e74c1bec4ad0b22eece6e3ce15fc', Correlation ID: '75f67da7444b4f129f1653ac798d8694', timestamp: 1716155241, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:47:21.547 +02:00 [INF] Handling a message: friend_request_sent with ID: 1a80e74c1bec4ad0b22eece6e3ce15fc, Correlation ID: 75f67da7444b4f129f1653ac798d8694, retry: 0 +2024-05-19 23:47:21.575 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:47:21.575 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:47:21.575 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:47:21.605 +02:00 [INF] Received HTTP response headers after 29.8936ms - 200 +2024-05-19 23:47:21.606 +02:00 [INF] End processing HTTP request after 30.5066ms - 200 +2024-05-19 23:47:21.606 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:47:21.674 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:47:21.675 +02:00 [INF] Handled a message: friend_request_sent with ID: 1a80e74c1bec4ad0b22eece6e3ce15fc, Correlation ID: 75f67da7444b4f129f1653ac798d8694, retry: 0 +2024-05-19 23:47:21.759 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:47:21.759 +02:00 [INF] Handled a message: friend_invited with ID: d11700bd6c0c40f991fdb4b96192dfee, Correlation ID: 15dd81c74dd949d4b724b07dd527e439, retry: 0 +2024-05-19 23:47:22.456 +02:00 [INF] Received a message with ID: '7f7c0b403ebf481487727117d513f160', Correlation ID: '0ba36d55c64d456181a037764bed9351', timestamp: 1716155242, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:47:22.457 +02:00 [INF] Handling a message: friend_invited with ID: 7f7c0b403ebf481487727117d513f160, Correlation ID: 0ba36d55c64d456181a037764bed9351, retry: 0 +2024-05-19 23:47:22.460 +02:00 [INF] Received a message with ID: '6dd6ab81c80d4ac093a4714fcef94e89', Correlation ID: 'af6979cfe31846e3bfef89ccfb26481c', timestamp: 1716155242, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:47:22.461 +02:00 [INF] Handling a message: friend_request_sent with ID: 6dd6ab81c80d4ac093a4714fcef94e89, Correlation ID: af6979cfe31846e3bfef89ccfb26481c, retry: 0 +2024-05-19 23:47:22.487 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:47:22.487 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:47:22.488 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:47:22.519 +02:00 [INF] Received HTTP response headers after 31.0765ms - 200 +2024-05-19 23:47:22.520 +02:00 [INF] End processing HTTP request after 32.4721ms - 200 +2024-05-19 23:47:22.520 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:47:22.583 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:47:22.583 +02:00 [INF] Handled a message: friend_request_sent with ID: 6dd6ab81c80d4ac093a4714fcef94e89, Correlation ID: af6979cfe31846e3bfef89ccfb26481c, retry: 0 +2024-05-19 23:47:22.676 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:47:22.677 +02:00 [INF] Handled a message: friend_invited with ID: 7f7c0b403ebf481487727117d513f160, Correlation ID: 0ba36d55c64d456181a037764bed9351, retry: 0 +2024-05-19 23:47:25.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:25.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:26.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:26.016 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:26.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2305ms +2024-05-19 23:47:31.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:31.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:31.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:31.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:31.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.657ms +2024-05-19 23:47:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:36.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:36.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:36.351 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:36.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.9687ms +2024-05-19 23:47:40.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:41.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:41.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:41.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.6117ms +2024-05-19 23:47:46.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:46.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:46.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:46.957 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:46.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.7706ms +2024-05-19 23:47:51.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:51.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:51.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:51.348 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:51.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 31.3977ms +2024-05-19 23:47:55.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:47:55.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:56.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:47:56.014 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:47:56.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 30.7686ms +2024-05-19 23:48:01.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:01.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:01.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:01.978 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:01.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 49.4866ms +2024-05-19 23:48:06.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:06.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:06.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:06.349 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.2118ms +2024-05-19 23:48:10.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:10.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:11.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:11.021 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:11.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.3563ms +2024-05-19 23:48:16.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:16.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:16.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:16.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:16.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 33.2833ms +2024-05-19 23:48:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:21.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:21.352 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:21.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 34.4125ms +2024-05-19 23:48:25.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:25.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:26.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:26.013 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:26.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 29.4269ms +2024-05-19 23:48:31.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:31.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:31.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:31.972 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-19 23:48:31.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 400 null application/json 42.5881ms +2024-05-19 23:48:34.520 +02:00 [INF] Received a message with ID: '20fa123c07054012906c5c44a98c7fe9', Correlation ID: '68982b6e38a34cf7a79eacc45351ad25', timestamp: 1716155314, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:48:34.521 +02:00 [INF] Handling a message: friend_invited with ID: 20fa123c07054012906c5c44a98c7fe9, Correlation ID: 68982b6e38a34cf7a79eacc45351ad25, retry: 0 +2024-05-19 23:48:34.522 +02:00 [INF] Received a message with ID: 'd6f64e05924441c5a4bddf28c562e849', Correlation ID: 'f5277fd7fce44741a5b22c6ecc587507', timestamp: 1716155314, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:48:34.522 +02:00 [INF] Handling a message: friend_request_sent with ID: d6f64e05924441c5a4bddf28c562e849, Correlation ID: f5277fd7fce44741a5b22c6ecc587507, retry: 0 +2024-05-19 23:48:34.549 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:48:34.550 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:48:34.550 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:48:34.579 +02:00 [INF] Received HTTP response headers after 29.5951ms - 200 +2024-05-19 23:48:34.580 +02:00 [INF] End processing HTTP request after 29.9177ms - 200 +2024-05-19 23:48:34.580 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:48:34.642 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:48:34.643 +02:00 [INF] Handled a message: friend_request_sent with ID: d6f64e05924441c5a4bddf28c562e849, Correlation ID: f5277fd7fce44741a5b22c6ecc587507, retry: 0 +2024-05-19 23:48:34.727 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:48:34.727 +02:00 [INF] Handled a message: friend_invited with ID: 20fa123c07054012906c5c44a98c7fe9, Correlation ID: 68982b6e38a34cf7a79eacc45351ad25, retry: 0 +2024-05-19 23:48:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:36.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:36.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:36.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.8295ms +2024-05-19 23:48:40.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:40.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:41.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:41.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6376ms +2024-05-19 23:48:45.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:45.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:45.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:45.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5132ms +2024-05-19 23:48:45.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:45.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:45.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:45.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7821ms +2024-05-19 23:48:46.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:46.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:46.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:46.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.5579ms +2024-05-19 23:48:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:48:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:51.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:48:51.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.8645ms +2024-05-19 23:48:59.648 +02:00 [INF] Received a message with ID: 'd849cc9ff5db48a99cce6be52a487dcd', Correlation ID: 'c7753fbeb2694d96ae36d7043192cdbb', timestamp: 1716155339, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:48:59.648 +02:00 [INF] Received a message with ID: '781053069d8a47db89c3da59170757c4', Correlation ID: 'd6017512ebf7442d80634b644301f71a', timestamp: 1716155339, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:48:59.654 +02:00 [INF] Handling a message: friend_request_sent with ID: 781053069d8a47db89c3da59170757c4, Correlation ID: d6017512ebf7442d80634b644301f71a, retry: 0 +2024-05-19 23:48:59.649 +02:00 [INF] Handling a message: friend_invited with ID: d849cc9ff5db48a99cce6be52a487dcd, Correlation ID: c7753fbeb2694d96ae36d7043192cdbb, retry: 0 +2024-05-19 23:48:59.682 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:48:59.683 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:48:59.683 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:48:59.720 +02:00 [INF] Received HTTP response headers after 37.121ms - 200 +2024-05-19 23:48:59.720 +02:00 [INF] End processing HTTP request after 37.5568ms - 200 +2024-05-19 23:48:59.720 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:48:59.790 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:48:59.791 +02:00 [INF] Handled a message: friend_request_sent with ID: 781053069d8a47db89c3da59170757c4, Correlation ID: d6017512ebf7442d80634b644301f71a, retry: 0 +2024-05-19 23:49:00.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:00.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:00.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:00.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4936ms +2024-05-19 23:49:01.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:01.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:01.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:01.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2034ms +2024-05-19 23:49:02.257 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:49:02.258 +02:00 [INF] Handled a message: friend_invited with ID: d849cc9ff5db48a99cce6be52a487dcd, Correlation ID: c7753fbeb2694d96ae36d7043192cdbb, retry: 0 +2024-05-19 23:49:06.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:06.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:06.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:06.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0669ms +2024-05-19 23:49:14.318 +02:00 [INF] Received a message with ID: 'd46659cbab0e434585c89c08e78c3aa8', Correlation ID: 'c3ec6e1049cb411c951ae709b8f1dac3', timestamp: 1716155354, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:14.318 +02:00 [INF] Received a message with ID: '3fba91be63a74f0db4518a445c4cacff', Correlation ID: 'bad71cf72325473dbe6524ebddb62731', timestamp: 1716155354, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:14.319 +02:00 [INF] Handling a message: friend_invited with ID: d46659cbab0e434585c89c08e78c3aa8, Correlation ID: c3ec6e1049cb411c951ae709b8f1dac3, retry: 0 +2024-05-19 23:49:14.320 +02:00 [INF] Handling a message: friend_request_sent with ID: 3fba91be63a74f0db4518a445c4cacff, Correlation ID: bad71cf72325473dbe6524ebddb62731, retry: 0 +2024-05-19 23:49:14.349 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:14.349 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:14.350 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:14.380 +02:00 [INF] Received HTTP response headers after 29.9161ms - 200 +2024-05-19 23:49:14.380 +02:00 [INF] End processing HTTP request after 30.7741ms - 200 +2024-05-19 23:49:14.380 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:14.449 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:49:14.449 +02:00 [INF] Handled a message: friend_request_sent with ID: 3fba91be63a74f0db4518a445c4cacff, Correlation ID: bad71cf72325473dbe6524ebddb62731, retry: 0 +2024-05-19 23:49:15.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:15.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:15.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:15.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 25.973ms +2024-05-19 23:49:16.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:16.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:16.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:16.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6293ms +2024-05-19 23:49:19.323 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:49:19.323 +02:00 [INF] Handled a message: friend_invited with ID: d46659cbab0e434585c89c08e78c3aa8, Correlation ID: c3ec6e1049cb411c951ae709b8f1dac3, retry: 0 +2024-05-19 23:49:19.611 +02:00 [INF] Received a message with ID: 'e22feef77b7d41609f81ad3c27ff1466', Correlation ID: '574b3c3923c14ce4a13f67ce77d669b5', timestamp: 1716155359, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:19.610 +02:00 [INF] Received a message with ID: 'e959b05ef04646d0ab7371ab956bf68e', Correlation ID: '3453a133e2924fda8be5ee1f14d92ae5', timestamp: 1716155359, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:19.611 +02:00 [INF] Handling a message: friend_request_sent with ID: e22feef77b7d41609f81ad3c27ff1466, Correlation ID: 574b3c3923c14ce4a13f67ce77d669b5, retry: 0 +2024-05-19 23:49:19.611 +02:00 [INF] Handling a message: friend_invited with ID: e959b05ef04646d0ab7371ab956bf68e, Correlation ID: 3453a133e2924fda8be5ee1f14d92ae5, retry: 0 +2024-05-19 23:49:19.754 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:49:19.755 +02:00 [INF] Handled a message: friend_request_sent with ID: e22feef77b7d41609f81ad3c27ff1466, Correlation ID: 574b3c3923c14ce4a13f67ce77d669b5, retry: 0 +2024-05-19 23:49:19.909 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:19.909 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:19.909 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:19.936 +02:00 [INF] Received HTTP response headers after 26.3456ms - 200 +2024-05-19 23:49:19.936 +02:00 [INF] End processing HTTP request after 26.8822ms - 200 +2024-05-19 23:49:19.936 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:20.435 +02:00 [INF] Received a message with ID: 'c80ba550c9234b1db210e897ea3270f4', Correlation ID: '3bac9bf0db6647f08654b4620c8a6a17', timestamp: 1716155360, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:20.435 +02:00 [INF] Handling a message: friend_request_sent with ID: c80ba550c9234b1db210e897ea3270f4, Correlation ID: 3bac9bf0db6647f08654b4620c8a6a17, retry: 0 +2024-05-19 23:49:20.569 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:49:20.569 +02:00 [INF] Handled a message: friend_request_sent with ID: c80ba550c9234b1db210e897ea3270f4, Correlation ID: 3bac9bf0db6647f08654b4620c8a6a17, retry: 0 +2024-05-19 23:49:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:21.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:21.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.1325ms +2024-05-19 23:49:22.169 +02:00 [INF] Received a message with ID: '0c8ee944668b45b29352e85af1ff8bb5', Correlation ID: '9c6b19ba13d44725bd4458ea5d1a1e2c', timestamp: 1716155362, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:22.171 +02:00 [INF] Handling a message: friend_request_sent with ID: 0c8ee944668b45b29352e85af1ff8bb5, Correlation ID: 9c6b19ba13d44725bd4458ea5d1a1e2c, retry: 0 +2024-05-19 23:49:22.291 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:49:22.292 +02:00 [INF] Handled a message: friend_request_sent with ID: 0c8ee944668b45b29352e85af1ff8bb5, Correlation ID: 9c6b19ba13d44725bd4458ea5d1a1e2c, retry: 0 +2024-05-19 23:49:23.929 +02:00 [INF] Received a message with ID: 'cd8a66dcd00a4e8d882c3f2f20e68a4c', Correlation ID: 'c1651e1f598a4c9385717e2c3c086326', timestamp: 1716155363, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:23.931 +02:00 [INF] Handling a message: friend_request_sent with ID: cd8a66dcd00a4e8d882c3f2f20e68a4c, Correlation ID: c1651e1f598a4c9385717e2c3c086326, retry: 0 +2024-05-19 23:49:24.059 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:49:24.060 +02:00 [INF] Handled a message: friend_request_sent with ID: cd8a66dcd00a4e8d882c3f2f20e68a4c, Correlation ID: c1651e1f598a4c9385717e2c3c086326, retry: 0 +2024-05-19 23:49:24.833 +02:00 [INF] Received a message with ID: '46e2991e3f474c2ab4837a8c35cedbe8', Correlation ID: 'acc1583adee64f87b4b0cb6abe5646ad', timestamp: 1716155364, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:24.834 +02:00 [INF] Handling a message: friend_request_sent with ID: 46e2991e3f474c2ab4837a8c35cedbe8, Correlation ID: acc1583adee64f87b4b0cb6abe5646ad, retry: 0 +2024-05-19 23:49:24.946 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to c4819385-2bdf-41c3-a21c-5a9e0f195fda. +2024-05-19 23:49:24.946 +02:00 [INF] Handled a message: friend_request_sent with ID: 46e2991e3f474c2ab4837a8c35cedbe8, Correlation ID: acc1583adee64f87b4b0cb6abe5646ad, retry: 0 +2024-05-19 23:49:29.199 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:49:29.199 +02:00 [INF] Handled a message: friend_invited with ID: e959b05ef04646d0ab7371ab956bf68e, Correlation ID: 3453a133e2924fda8be5ee1f14d92ae5, retry: 0 +2024-05-19 23:49:29.204 +02:00 [INF] Received a message with ID: '97defc023f564030a4db08e340453a13', Correlation ID: '51a02dc364ad45ec843ca74499f01efd', timestamp: 1716155360, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:29.204 +02:00 [INF] Handling a message: friend_invited with ID: 97defc023f564030a4db08e340453a13, Correlation ID: 51a02dc364ad45ec843ca74499f01efd, retry: 0 +2024-05-19 23:49:29.232 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:29.233 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.233 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.266 +02:00 [INF] Received HTTP response headers after 32.4746ms - 200 +2024-05-19 23:49:29.266 +02:00 [INF] End processing HTTP request after 33.5834ms - 200 +2024-05-19 23:49:29.267 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:29.430 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-19 23:49:29.431 +02:00 [INF] Handled a message: friend_invited with ID: 97defc023f564030a4db08e340453a13, Correlation ID: 51a02dc364ad45ec843ca74499f01efd, retry: 0 +2024-05-19 23:49:29.434 +02:00 [INF] Received a message with ID: '8a7385a60a4e45d2adf0d9b227e94b1e', Correlation ID: '4d32a773963d4753ba99b7956bdd7a27', timestamp: 1716155362, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:29.434 +02:00 [INF] Handling a message: friend_invited with ID: 8a7385a60a4e45d2adf0d9b227e94b1e, Correlation ID: 4d32a773963d4753ba99b7956bdd7a27, retry: 0 +2024-05-19 23:49:29.464 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:29.464 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.464 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.494 +02:00 [INF] Received HTTP response headers after 29.9645ms - 200 +2024-05-19 23:49:29.495 +02:00 [INF] End processing HTTP request after 30.7293ms - 200 +2024-05-19 23:49:29.495 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:29.656 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:49:29.656 +02:00 [INF] Handled a message: friend_invited with ID: 8a7385a60a4e45d2adf0d9b227e94b1e, Correlation ID: 4d32a773963d4753ba99b7956bdd7a27, retry: 0 +2024-05-19 23:49:29.659 +02:00 [INF] Received a message with ID: '3957999df64f4bdab927b41d5182e535', Correlation ID: 'bac6b9182c8749a2a9e29a5aaa0db78a', timestamp: 1716155363, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:29.659 +02:00 [INF] Handling a message: friend_invited with ID: 3957999df64f4bdab927b41d5182e535, Correlation ID: bac6b9182c8749a2a9e29a5aaa0db78a, retry: 0 +2024-05-19 23:49:29.689 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:29.689 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.689 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.719 +02:00 [INF] Received HTTP response headers after 29.4948ms - 200 +2024-05-19 23:49:29.720 +02:00 [INF] End processing HTTP request after 30.4453ms - 200 +2024-05-19 23:49:29.720 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:29.881 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:49:29.881 +02:00 [INF] Handled a message: friend_invited with ID: 3957999df64f4bdab927b41d5182e535, Correlation ID: bac6b9182c8749a2a9e29a5aaa0db78a, retry: 0 +2024-05-19 23:49:29.883 +02:00 [INF] Received a message with ID: '230d7bd3e59446c9a3b2d250a6ef52a2', Correlation ID: 'ccf84633608b45af87fb49945053b0f7', timestamp: 1716155364, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:29.884 +02:00 [INF] Handling a message: friend_invited with ID: 230d7bd3e59446c9a3b2d250a6ef52a2, Correlation ID: ccf84633608b45af87fb49945053b0f7, retry: 0 +2024-05-19 23:49:29.911 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:29.912 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.912 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:29.947 +02:00 [INF] Received HTTP response headers after 34.645ms - 200 +2024-05-19 23:49:29.948 +02:00 [INF] End processing HTTP request after 35.7285ms - 200 +2024-05-19 23:49:29.948 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:30.108 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to c4819385-2bdf-41c3-a21c-5a9e0f195fda. +2024-05-19 23:49:30.108 +02:00 [INF] Handled a message: friend_invited with ID: 230d7bd3e59446c9a3b2d250a6ef52a2, Correlation ID: ccf84633608b45af87fb49945053b0f7, retry: 0 +2024-05-19 23:49:30.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:30.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:30.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:30.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.927ms +2024-05-19 23:49:31.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:31.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:31.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:31.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.1404ms +2024-05-19 23:49:35.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:35.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:35.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:35.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.4165ms +2024-05-19 23:49:35.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:35.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:35.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:35.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9548ms +2024-05-19 23:49:36.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:36.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:36.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:36.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5505ms +2024-05-19 23:49:46.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:46.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:46.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:46.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.1748ms +2024-05-19 23:49:50.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:50.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:50.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:50.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.2603ms +2024-05-19 23:49:51.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:49:51.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:51.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:49:51.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3973ms +2024-05-19 23:49:56.432 +02:00 [INF] Received a message with ID: 'fc4866178c3f4b9ab8e751133b6276e0', Correlation ID: '9f8b01190404413fa3a210eaf64c88ff', timestamp: 1716155396, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:49:56.432 +02:00 [INF] Received a message with ID: '6acadd4de2c94a2fbee2fc6238b272d2', Correlation ID: '77b7f91cd0454abf9d0a06c2a72f9313', timestamp: 1716155396, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:49:56.433 +02:00 [INF] Handling a message: friend_invited with ID: fc4866178c3f4b9ab8e751133b6276e0, Correlation ID: 9f8b01190404413fa3a210eaf64c88ff, retry: 0 +2024-05-19 23:49:56.433 +02:00 [INF] Handling a message: friend_request_sent with ID: 6acadd4de2c94a2fbee2fc6238b272d2, Correlation ID: 77b7f91cd0454abf9d0a06c2a72f9313, retry: 0 +2024-05-19 23:49:56.464 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:49:56.464 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:56.464 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:49:56.497 +02:00 [INF] Received HTTP response headers after 32.3212ms - 200 +2024-05-19 23:49:56.497 +02:00 [INF] End processing HTTP request after 32.6533ms - 200 +2024-05-19 23:49:56.497 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:49:56.554 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:49:56.554 +02:00 [INF] Handled a message: friend_request_sent with ID: 6acadd4de2c94a2fbee2fc6238b272d2, Correlation ID: 77b7f91cd0454abf9d0a06c2a72f9313, retry: 0 +2024-05-19 23:49:56.649 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-19 23:49:56.649 +02:00 [INF] Handled a message: friend_invited with ID: fc4866178c3f4b9ab8e751133b6276e0, Correlation ID: 9f8b01190404413fa3a210eaf64c88ff, retry: 0 +2024-05-19 23:50:01.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:01.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:01.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:01.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.0755ms +2024-05-19 23:50:05.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:05.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:05.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:05.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9783ms +2024-05-19 23:50:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:06.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.08ms +2024-05-19 23:50:16.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:16.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:16.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:16.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.7841ms +2024-05-19 23:50:20.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:20.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:20.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:20.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4529ms +2024-05-19 23:50:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:21.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:21.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9127ms +2024-05-19 23:50:31.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:31.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:31.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:31.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.8444ms +2024-05-19 23:50:35.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:35.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:35.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:35.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7359ms +2024-05-19 23:50:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:36.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.15ms +2024-05-19 23:50:46.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:46.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:46.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:46.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6403ms +2024-05-19 23:50:50.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:50.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:50.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:50.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5253ms +2024-05-19 23:50:51.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:50:51.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:51.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:50:51.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.6079ms +2024-05-19 23:51:01.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:01.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:01.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:01.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.2413ms +2024-05-19 23:51:05.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:05.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:05.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:05.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6048ms +2024-05-19 23:51:06.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:06.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:06.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:06.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.4203ms +2024-05-19 23:51:16.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:16.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:16.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:16.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3741ms +2024-05-19 23:51:20.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:20.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:20.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:20.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1365ms +2024-05-19 23:51:21.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:21.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:21.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:21.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6766ms +2024-05-19 23:51:31.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:31.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:31.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:31.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2869ms +2024-05-19 23:51:35.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:35.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:35.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:35.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7807ms +2024-05-19 23:51:36.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:36.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:36.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:36.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.0912ms +2024-05-19 23:51:46.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:46.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:46.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:46.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.32ms +2024-05-19 23:51:50.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:50.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:50.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:50.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.6553ms +2024-05-19 23:51:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:51:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:51.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:51:51.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.5714ms +2024-05-19 23:52:01.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:01.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:01.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:01.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1144ms +2024-05-19 23:52:05.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:05.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:05.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:05.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8604ms +2024-05-19 23:52:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:06.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:06.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:06.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.8478ms +2024-05-19 23:52:16.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:16.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:16.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:16.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5041ms +2024-05-19 23:52:20.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:20.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:20.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:20.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3856ms +2024-05-19 23:52:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:21.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:21.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.3588ms +2024-05-19 23:52:31.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:31.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:31.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:31.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.6117ms +2024-05-19 23:52:35.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:35.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:35.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:35.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1798ms +2024-05-19 23:52:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:36.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:36.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0781ms +2024-05-19 23:52:46.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:46.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:46.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:46.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0315ms +2024-05-19 23:52:50.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:50.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:50.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:50.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2047ms +2024-05-19 23:52:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:52:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:51.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:52:51.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.9951ms +2024-05-19 23:53:01.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:01.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:01.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:01.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.4689ms +2024-05-19 23:53:05.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:05.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:05.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:05.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.4154ms +2024-05-19 23:53:06.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:06.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:06.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.6283ms +2024-05-19 23:53:16.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:16.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:16.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:16.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7316ms +2024-05-19 23:53:20.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:20.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:20.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:20.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.4301ms +2024-05-19 23:53:21.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:21.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:21.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:21.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.2191ms +2024-05-19 23:53:31.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:31.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:31.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:31.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.4231ms +2024-05-19 23:53:35.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:35.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:35.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:35.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 45.0469ms +2024-05-19 23:53:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:53:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:53:36.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3939ms +2024-05-19 23:56:37.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:56:37.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:37.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:37.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0718ms +2024-05-19 23:56:37.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:56:37.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:37.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:37.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.6941ms +2024-05-19 23:56:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:56:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:51.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:51.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.9173ms +2024-05-19 23:56:52.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:56:52.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:52.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:56:52.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5711ms +2024-05-19 23:57:06.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:06.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:06.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:06.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.0225ms +2024-05-19 23:57:07.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:07.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:07.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:07.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 92.1944ms +2024-05-19 23:57:10.232 +02:00 [INF] Received a message with ID: '8dcb15bfa86241689ae1a9e4d4964bc3', Correlation ID: 'b1180f8f92244ef6a6d15d3118d59810', timestamp: 1716155830, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:57:10.232 +02:00 [INF] Handling a message: friend_invited with ID: 8dcb15bfa86241689ae1a9e4d4964bc3, Correlation ID: b1180f8f92244ef6a6d15d3118d59810, retry: 0 +2024-05-19 23:57:10.232 +02:00 [INF] Received a message with ID: '903163ec44914788ac46fd635a6ee6b1', Correlation ID: 'ede813eaff5544c89129301d000b0926', timestamp: 1716155830, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:57:10.233 +02:00 [INF] Handling a message: friend_request_sent with ID: 903163ec44914788ac46fd635a6ee6b1, Correlation ID: ede813eaff5544c89129301d000b0926, retry: 0 +2024-05-19 23:57:10.262 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:57:10.262 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:10.262 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:10.290 +02:00 [INF] Received HTTP response headers after 27.575ms - 200 +2024-05-19 23:57:10.290 +02:00 [INF] End processing HTTP request after 27.9663ms - 200 +2024-05-19 23:57:10.290 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:57:10.355 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-19 23:57:10.355 +02:00 [INF] Handled a message: friend_request_sent with ID: 903163ec44914788ac46fd635a6ee6b1, Correlation ID: ede813eaff5544c89129301d000b0926, retry: 0 +2024-05-19 23:57:21.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:21.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:21.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:21.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 53.0702ms +2024-05-19 23:57:22.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:22.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:22.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:22.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.0797ms +2024-05-19 23:57:28.473 +02:00 [ERR] There was an error when processing a message with id: '8dcb15bfa86241689ae1a9e4d4964bc3'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-19 23:57:28.476 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-19 23:57:28.478 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8dcb15bfa86241689ae1a9e4d4964bc3', Correlation ID: 'b1180f8f92244ef6a6d15d3118d59810', retry 1/3... +2024-05-19 23:57:30.481 +02:00 [INF] Handling a message: friend_invited with ID: 8dcb15bfa86241689ae1a9e4d4964bc3, Correlation ID: b1180f8f92244ef6a6d15d3118d59810, retry: 1 +2024-05-19 23:57:30.510 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:57:30.510 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:30.510 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:30.538 +02:00 [INF] Received HTTP response headers after 27.3681ms - 200 +2024-05-19 23:57:30.538 +02:00 [INF] End processing HTTP request after 28.161ms - 200 +2024-05-19 23:57:30.538 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:57:36.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:36.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:36.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:36.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.9655ms +2024-05-19 23:57:37.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:37.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:37.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:37.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2568ms +2024-05-19 23:57:48.646 +02:00 [ERR] There was an error when processing a message with id: '8dcb15bfa86241689ae1a9e4d4964bc3'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-19 23:57:48.647 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-19 23:57:48.648 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8dcb15bfa86241689ae1a9e4d4964bc3', Correlation ID: 'b1180f8f92244ef6a6d15d3118d59810', retry 2/3... +2024-05-19 23:57:50.649 +02:00 [INF] Handling a message: friend_invited with ID: 8dcb15bfa86241689ae1a9e4d4964bc3, Correlation ID: b1180f8f92244ef6a6d15d3118d59810, retry: 2 +2024-05-19 23:57:50.692 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:57:50.692 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:50.693 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:57:50.726 +02:00 [INF] Received HTTP response headers after 32.7993ms - 200 +2024-05-19 23:57:50.726 +02:00 [INF] End processing HTTP request after 33.4483ms - 200 +2024-05-19 23:57:50.726 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:57:51.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:51.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:51.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9386ms +2024-05-19 23:57:52.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:57:52.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:52.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:57:52.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8992ms +2024-05-19 23:58:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:06.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:06.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:06.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 45.9726ms +2024-05-19 23:58:07.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:07.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:07.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:07.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2425ms +2024-05-19 23:58:08.678 +02:00 [ERR] There was an error when processing a message with id: '8dcb15bfa86241689ae1a9e4d4964bc3'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-19 23:58:08.682 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-19 23:58:08.685 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8dcb15bfa86241689ae1a9e4d4964bc3', Correlation ID: 'b1180f8f92244ef6a6d15d3118d59810', retry 3/3... +2024-05-19 23:58:10.687 +02:00 [INF] Handling a message: friend_invited with ID: 8dcb15bfa86241689ae1a9e4d4964bc3, Correlation ID: b1180f8f92244ef6a6d15d3118d59810, retry: 3 +2024-05-19 23:58:10.714 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:58:10.714 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:58:10.715 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:58:10.746 +02:00 [INF] Received HTTP response headers after 30.7643ms - 200 +2024-05-19 23:58:10.746 +02:00 [INF] End processing HTTP request after 31.9059ms - 200 +2024-05-19 23:58:10.746 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:58:21.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:21.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.4853ms +2024-05-19 23:58:21.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:21.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.9588ms +2024-05-19 23:58:21.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:21.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:21.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3211ms +2024-05-19 23:58:22.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:22.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:22.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:22.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4916ms +2024-05-19 23:58:28.223 +02:00 [ERR] There was an error when processing a message with id: '8dcb15bfa86241689ae1a9e4d4964bc3'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-19 23:58:28.225 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-19 23:58:28.226 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8dcb15bfa86241689ae1a9e4d4964bc3', Correlation ID: 'b1180f8f92244ef6a6d15d3118d59810', retry 4/3... +2024-05-19 23:58:28.227 +02:00 [ERR] Handling a message: friend_invited with ID: 8dcb15bfa86241689ae1a9e4d4964bc3, Correlation ID: b1180f8f92244ef6a6d15d3118d59810 failed +2024-05-19 23:58:30.949 +02:00 [INF] Received a message with ID: 'ad5210f0524d4b03a1da1bbd114b9e3b', Correlation ID: '91a2f30cce6f491e950731f1fcf48861', timestamp: 1716155910, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-19 23:58:30.949 +02:00 [INF] Received a message with ID: '50a1828d64664f699d37aefb539d7247', Correlation ID: '34ef6b89b739404a885a7ec0e33d3150', timestamp: 1716155910, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-19 23:58:30.951 +02:00 [INF] Handling a message: friend_request_sent with ID: ad5210f0524d4b03a1da1bbd114b9e3b, Correlation ID: 91a2f30cce6f491e950731f1fcf48861, retry: 0 +2024-05-19 23:58:30.951 +02:00 [INF] Handling a message: friend_invited with ID: 50a1828d64664f699d37aefb539d7247, Correlation ID: 34ef6b89b739404a885a7ec0e33d3150, retry: 0 +2024-05-19 23:58:31.131 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-19 23:58:31.131 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:58:31.131 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-19 23:58:31.162 +02:00 [INF] Received HTTP response headers after 31.2312ms - 200 +2024-05-19 23:58:31.162 +02:00 [INF] End processing HTTP request after 31.6411ms - 200 +2024-05-19 23:58:31.163 +02:00 [INF] End processing HTTP request - "OK" +2024-05-19 23:58:31.220 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:58:31.220 +02:00 [INF] Handled a message: friend_request_sent with ID: ad5210f0524d4b03a1da1bbd114b9e3b, Correlation ID: 91a2f30cce6f491e950731f1fcf48861, retry: 0 +2024-05-19 23:58:31.330 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-19 23:58:31.330 +02:00 [INF] Handled a message: friend_invited with ID: 50a1828d64664f699d37aefb539d7247, Correlation ID: 34ef6b89b739404a885a7ec0e33d3150, retry: 0 +2024-05-19 23:58:36.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:36.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:36.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.1732ms +2024-05-19 23:58:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:36.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:36.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.3832ms +2024-05-19 23:58:37.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:37.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:37.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:37.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 53.7302ms +2024-05-19 23:58:51.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:51.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:51.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9469ms +2024-05-19 23:58:51.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:51.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:51.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:51.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7119ms +2024-05-19 23:58:52.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:58:52.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:52.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:58:52.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.793ms +2024-05-19 23:59:06.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:06.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:06.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:06.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3356ms +2024-05-19 23:59:06.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:06.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:06.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:06.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.6738ms +2024-05-19 23:59:07.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:07.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:07.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:07.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6738ms +2024-05-19 23:59:21.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:21.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5633ms +2024-05-19 23:59:21.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:21.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:21.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:21.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2248ms +2024-05-19 23:59:22.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:22.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:22.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:22.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6916ms +2024-05-19 23:59:48.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:48.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:48.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:48.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9984ms +2024-05-19 23:59:48.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-19 23:59:48.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:48.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-19 23:59:48.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9318ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240520.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240520.txt new file mode 100644 index 000000000..0222be642 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240520.txt @@ -0,0 +1,4860 @@ +2024-05-20 00:00:03.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:00:03.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:03.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:03.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 328.9049ms +2024-05-20 00:00:08.453 +02:00 [INF] Received a message with ID: '74901e2401214b0295ccd6c2c67ede7f', Correlation ID: '5bbeacc0a7764ed3b9e4a7c01431e010', timestamp: 1716156008, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-20 00:00:08.454 +02:00 [INF] Handling a message: friend_invited with ID: 74901e2401214b0295ccd6c2c67ede7f, Correlation ID: 5bbeacc0a7764ed3b9e4a7c01431e010, retry: 0 +2024-05-20 00:00:08.454 +02:00 [INF] Received a message with ID: 'a18f26ef621248ab965aaee897f8ddbd', Correlation ID: '87996d46303246e2b2903f59905b4315', timestamp: 1716156008, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-20 00:00:08.455 +02:00 [INF] Handling a message: friend_request_sent with ID: a18f26ef621248ab965aaee897f8ddbd, Correlation ID: 87996d46303246e2b2903f59905b4315, retry: 0 +2024-05-20 00:00:08.697 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:00:08.697 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:08.697 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:09.252 +02:00 [INF] Received HTTP response headers after 554.1776ms - 200 +2024-05-20 00:00:09.252 +02:00 [INF] End processing HTTP request after 554.7095ms - 200 +2024-05-20 00:00:09.252 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:00:10.079 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-20 00:00:10.080 +02:00 [INF] Handled a message: friend_request_sent with ID: a18f26ef621248ab965aaee897f8ddbd, Correlation ID: 87996d46303246e2b2903f59905b4315, retry: 0 +2024-05-20 00:00:15.241 +02:00 [INF] Received a message with ID: '1078b6f2a4d644158dd95fc91058d269', Correlation ID: '514bc07f7b6e41bd98b2ca39a3ea85b8', timestamp: 1716156015, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-20 00:00:15.241 +02:00 [INF] Handling a message: friend_request_sent with ID: 1078b6f2a4d644158dd95fc91058d269, Correlation ID: 514bc07f7b6e41bd98b2ca39a3ea85b8, retry: 0 +2024-05-20 00:00:15.386 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-20 00:00:15.386 +02:00 [INF] Handled a message: friend_request_sent with ID: 1078b6f2a4d644158dd95fc91058d269, Correlation ID: 514bc07f7b6e41bd98b2ca39a3ea85b8, retry: 0 +2024-05-20 00:00:18.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:00:18.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:18.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:18.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.2671ms +2024-05-20 00:00:26.905 +02:00 [INF] Received a message with ID: '239241d7d05047c8808c1a72d8e3748d', Correlation ID: 'f7ca0f63f58b4d3d8ba103a854fbf305', timestamp: 1716156026, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-20 00:00:26.905 +02:00 [INF] Handling a message: friend_request_sent with ID: 239241d7d05047c8808c1a72d8e3748d, Correlation ID: f7ca0f63f58b4d3d8ba103a854fbf305, retry: 0 +2024-05-20 00:00:27.032 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-20 00:00:27.033 +02:00 [INF] Handled a message: friend_request_sent with ID: 239241d7d05047c8808c1a72d8e3748d, Correlation ID: f7ca0f63f58b4d3d8ba103a854fbf305, retry: 0 +2024-05-20 00:00:32.176 +02:00 [ERR] There was an error when processing a message with id: '74901e2401214b0295ccd6c2c67ede7f'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:00:32.180 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:00:32.183 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '74901e2401214b0295ccd6c2c67ede7f', Correlation ID: '5bbeacc0a7764ed3b9e4a7c01431e010', retry 1/3... +2024-05-20 00:00:33.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:00:33.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:33.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:33.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5905ms +2024-05-20 00:00:34.184 +02:00 [INF] Handling a message: friend_invited with ID: 74901e2401214b0295ccd6c2c67ede7f, Correlation ID: 5bbeacc0a7764ed3b9e4a7c01431e010, retry: 1 +2024-05-20 00:00:34.220 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:00:34.221 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:34.221 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:34.254 +02:00 [INF] Received HTTP response headers after 32.6509ms - 200 +2024-05-20 00:00:34.254 +02:00 [INF] End processing HTTP request after 33.3634ms - 200 +2024-05-20 00:00:34.254 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:00:48.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:00:48.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:48.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:00:48.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.61ms +2024-05-20 00:00:54.496 +02:00 [ERR] There was an error when processing a message with id: '74901e2401214b0295ccd6c2c67ede7f'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:00:54.501 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:00:54.505 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '74901e2401214b0295ccd6c2c67ede7f', Correlation ID: '5bbeacc0a7764ed3b9e4a7c01431e010', retry 2/3... +2024-05-20 00:00:56.504 +02:00 [INF] Handling a message: friend_invited with ID: 74901e2401214b0295ccd6c2c67ede7f, Correlation ID: 5bbeacc0a7764ed3b9e4a7c01431e010, retry: 2 +2024-05-20 00:00:56.536 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:00:56.536 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:56.537 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:00:56.567 +02:00 [INF] Received HTTP response headers after 30.4346ms - 200 +2024-05-20 00:00:56.568 +02:00 [INF] End processing HTTP request after 31.4695ms - 200 +2024-05-20 00:00:56.568 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:01:03.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:01:03.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:03.595 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:03.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 526.3506ms +2024-05-20 00:01:15.508 +02:00 [ERR] There was an error when processing a message with id: '74901e2401214b0295ccd6c2c67ede7f'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:01:15.512 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:01:15.516 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '74901e2401214b0295ccd6c2c67ede7f', Correlation ID: '5bbeacc0a7764ed3b9e4a7c01431e010', retry 3/3... +2024-05-20 00:01:17.517 +02:00 [INF] Handling a message: friend_invited with ID: 74901e2401214b0295ccd6c2c67ede7f, Correlation ID: 5bbeacc0a7764ed3b9e4a7c01431e010, retry: 3 +2024-05-20 00:01:17.546 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:01:17.547 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:17.547 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:17.579 +02:00 [INF] Received HTTP response headers after 31.1406ms - 200 +2024-05-20 00:01:17.579 +02:00 [INF] End processing HTTP request after 32.5645ms - 200 +2024-05-20 00:01:17.580 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:01:18.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:01:18.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:18.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:18.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9203ms +2024-05-20 00:01:33.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:01:33.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:33.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:33.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.8895ms +2024-05-20 00:01:35.062 +02:00 [ERR] There was an error when processing a message with id: '74901e2401214b0295ccd6c2c67ede7f'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:01:35.066 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:01:35.069 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '74901e2401214b0295ccd6c2c67ede7f', Correlation ID: '5bbeacc0a7764ed3b9e4a7c01431e010', retry 4/3... +2024-05-20 00:01:35.070 +02:00 [ERR] Handling a message: friend_invited with ID: 74901e2401214b0295ccd6c2c67ede7f, Correlation ID: 5bbeacc0a7764ed3b9e4a7c01431e010 failed +2024-05-20 00:01:35.074 +02:00 [INF] Received a message with ID: 'd92dc52c3cc24910b824f7a0554233f5', Correlation ID: '0987af3033714745915dd8d77576fe3b', timestamp: 1716156015, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-20 00:01:35.074 +02:00 [INF] Handling a message: friend_invited with ID: d92dc52c3cc24910b824f7a0554233f5, Correlation ID: 0987af3033714745915dd8d77576fe3b, retry: 0 +2024-05-20 00:01:35.106 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:01:35.106 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:35.106 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:35.138 +02:00 [INF] Received HTTP response headers after 31.1496ms - 200 +2024-05-20 00:01:35.138 +02:00 [INF] End processing HTTP request after 32.1865ms - 200 +2024-05-20 00:01:35.138 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:01:35.406 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-20 00:01:35.406 +02:00 [INF] Handled a message: friend_invited with ID: d92dc52c3cc24910b824f7a0554233f5, Correlation ID: 0987af3033714745915dd8d77576fe3b, retry: 0 +2024-05-20 00:01:35.407 +02:00 [INF] Received a message with ID: '0c760710280c4b8fb649699225d71531', Correlation ID: '235232da546c4f9c8949a9ac4f173149', timestamp: 1716156026, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-20 00:01:35.408 +02:00 [INF] Handling a message: friend_invited with ID: 0c760710280c4b8fb649699225d71531, Correlation ID: 235232da546c4f9c8949a9ac4f173149, retry: 0 +2024-05-20 00:01:35.437 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-20 00:01:35.437 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:35.438 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-20 00:01:35.467 +02:00 [INF] Received HTTP response headers after 29.3315ms - 200 +2024-05-20 00:01:35.468 +02:00 [INF] End processing HTTP request after 30.1997ms - 200 +2024-05-20 00:01:35.468 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:01:35.635 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-20 00:01:35.636 +02:00 [INF] Handled a message: friend_invited with ID: 0c760710280c4b8fb649699225d71531, Correlation ID: 235232da546c4f9c8949a9ac4f173149, retry: 0 +2024-05-20 00:01:48.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:01:48.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:48.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:01:48.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0707ms +2024-05-20 00:02:03.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:02:03.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:03.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:03.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4824ms +2024-05-20 00:02:18.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:02:18.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:18.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:18.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6892ms +2024-05-20 00:02:33.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:02:33.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:33.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:33.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.376ms +2024-05-20 00:02:48.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:02:48.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:48.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:02:48.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.1049ms +2024-05-20 00:03:03.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:03:03.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:03.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:03.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3587ms +2024-05-20 00:03:18.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:03:18.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:18.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:18.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0185ms +2024-05-20 00:03:33.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:03:33.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:33.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:33.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8902ms +2024-05-20 00:03:48.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:03:48.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:48.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:03:48.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.4573ms +2024-05-20 00:04:03.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:04:03.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:03.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:03.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7063ms +2024-05-20 00:04:18.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 00:04:18.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:18.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:18.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3384ms +2024-05-20 00:04:31.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:04:31.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:44.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:44.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13050.6858ms +2024-05-20 00:04:47.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:04:47.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:04:59.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:04:59.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:00.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:00.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12988.2679ms +2024-05-20 00:05:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:12.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12743.5579ms +2024-05-20 00:05:14.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:14.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:15.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:15.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:22.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:22.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:26.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:26.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:27.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:27.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12569.6955ms +2024-05-20 00:05:28.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:28.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12920.9424ms +2024-05-20 00:05:29.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:29.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:35.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:35.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12912.1627ms +2024-05-20 00:05:35.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:35.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:39.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:39.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13085.3606ms +2024-05-20 00:05:42.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:42.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12718.067ms +2024-05-20 00:05:43.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:43.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:47.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:48.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:48.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12846.3671ms +2024-05-20 00:05:50.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:50.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:54.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:54.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:56.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:05:56.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13084.2707ms +2024-05-20 00:05:59.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:05:59.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:00.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:00.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13064.6021ms +2024-05-20 00:06:03.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:03.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12748.406ms +2024-05-20 00:06:05.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:05.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:07.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:07.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12755.9402ms +2024-05-20 00:06:09.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:09.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:12.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:12.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12693.1826ms +2024-05-20 00:06:14.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:14.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:18.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:18.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13172.3431ms +2024-05-20 00:06:20.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:20.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:22.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:22.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12875.6615ms +2024-05-20 00:06:24.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:24.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:27.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:27.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13036.1412ms +2024-05-20 00:06:29.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:29.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:33.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:33.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12997.1992ms +2024-05-20 00:06:35.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:35.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:37.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:37.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12854.5307ms +2024-05-20 00:06:39.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:39.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:42.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12858.0637ms +2024-05-20 00:06:44.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:44.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:48.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:48.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12787.7098ms +2024-05-20 00:06:50.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:50.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:52.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:52.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12807.4337ms +2024-05-20 00:06:54.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:54.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:57.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:06:57.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12693.3777ms +2024-05-20 00:06:59.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:06:59.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:03.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:03.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12775.0085ms +2024-05-20 00:07:05.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:05.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:07.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12947.0753ms +2024-05-20 00:07:09.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:09.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12844.6947ms +2024-05-20 00:07:14.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:14.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:18.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:18.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12739.7579ms +2024-05-20 00:07:20.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:20.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:22.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:22.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12735.3076ms +2024-05-20 00:07:24.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:24.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:27.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:27.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12680.4847ms +2024-05-20 00:07:29.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:29.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:33.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:33.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12724.9158ms +2024-05-20 00:07:35.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:35.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:37.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:37.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12766.0146ms +2024-05-20 00:07:39.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:39.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:42.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:42.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12852.714ms +2024-05-20 00:07:44.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:44.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:48.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:48.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12863.5829ms +2024-05-20 00:07:50.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:50.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:52.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:52.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12621.9018ms +2024-05-20 00:07:54.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:54.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:57.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:07:57.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12713.3032ms +2024-05-20 00:07:59.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:07:59.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:03.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:03.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12901.5735ms +2024-05-20 00:08:05.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:05.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:07.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:07.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12903.488ms +2024-05-20 00:08:09.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:09.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:12.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:12.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12876.4689ms +2024-05-20 00:08:14.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:14.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:18.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:18.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12722.8056ms +2024-05-20 00:08:20.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:20.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:22.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:22.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12907.554ms +2024-05-20 00:08:24.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:24.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:27.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:27.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13024.0433ms +2024-05-20 00:08:29.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:29.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:33.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:33.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12846.1221ms +2024-05-20 00:08:35.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:35.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:37.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:37.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12660.1282ms +2024-05-20 00:08:39.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:39.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:42.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:42.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12648.1237ms +2024-05-20 00:08:44.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:44.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:48.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:48.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12992.4579ms +2024-05-20 00:08:50.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:50.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:52.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:52.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12995.5385ms +2024-05-20 00:08:54.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:54.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:57.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:08:57.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12700.6915ms +2024-05-20 00:08:59.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:08:59.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:03.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:03.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12862.4594ms +2024-05-20 00:09:05.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:05.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:07.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:07.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12745.68ms +2024-05-20 00:09:09.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:09.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:12.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:12.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13012.8142ms +2024-05-20 00:09:14.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:14.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:18.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:18.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12977.9582ms +2024-05-20 00:09:20.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:20.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:23.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:23.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13382.1367ms +2024-05-20 00:09:24.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:24.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:27.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:27.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13074.1997ms +2024-05-20 00:09:29.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:29.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:34.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:34.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13722.6556ms +2024-05-20 00:09:35.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:35.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:38.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:38.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13865.7953ms +2024-05-20 00:09:39.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:39.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:43.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:43.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13201.5764ms +2024-05-20 00:09:44.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:44.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:48.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:48.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13350.5849ms +2024-05-20 00:09:50.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:50.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:53.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:53.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13279.3887ms +2024-05-20 00:09:54.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:54.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:58.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:09:58.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13387.4603ms +2024-05-20 00:09:59.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:09:59.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:03.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:03.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13391.085ms +2024-05-20 00:10:05.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:05.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:08.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:08.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13477.2046ms +2024-05-20 00:10:09.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:09.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:12.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:12.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12717.7877ms +2024-05-20 00:10:14.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:14.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:18.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:18.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13175.9174ms +2024-05-20 00:10:20.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:20.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:23.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:23.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13585.6418ms +2024-05-20 00:10:24.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:24.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:28.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:28.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13523.4785ms +2024-05-20 00:10:29.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:29.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:34.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:34.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13805.4967ms +2024-05-20 00:10:35.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:35.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:38.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:38.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13750.1576ms +2024-05-20 00:10:39.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:39.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:42.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:42.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13025.0332ms +2024-05-20 00:10:44.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:44.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:48.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:48.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13004.0415ms +2024-05-20 00:10:50.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:50.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:53.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:53.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13286.3596ms +2024-05-20 00:10:54.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:54.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:57.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:10:57.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12943.2922ms +2024-05-20 00:10:59.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:10:59.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:03.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:03.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12866.7286ms +2024-05-20 00:11:05.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:05.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:07.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:07.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13019.6407ms +2024-05-20 00:11:09.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:09.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:12.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:12.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13065.5156ms +2024-05-20 00:11:14.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:14.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:18.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:18.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13535.6757ms +2024-05-20 00:11:20.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:20.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:23.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:23.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13645.4556ms +2024-05-20 00:11:24.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:24.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:28.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:28.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13273.5532ms +2024-05-20 00:11:29.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:29.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:33.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:33.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13310.9068ms +2024-05-20 00:11:35.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:35.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:38.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:38.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13617.5487ms +2024-05-20 00:11:39.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:39.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:42.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:42.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13014.1523ms +2024-05-20 00:11:44.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:44.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:48.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:48.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13017.7932ms +2024-05-20 00:11:50.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:50.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:52.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:52.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12921.0351ms +2024-05-20 00:11:54.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:54.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:57.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:11:57.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12710.6008ms +2024-05-20 00:11:59.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:11:59.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:03.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:03.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12841.0899ms +2024-05-20 00:12:05.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:05.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:08.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:08.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13095.4447ms +2024-05-20 00:12:09.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:09.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:12.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:12.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12769.4583ms +2024-05-20 00:12:14.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:14.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:18.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:18.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13031.4169ms +2024-05-20 00:12:20.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:20.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:23.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:23.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13117.5293ms +2024-05-20 00:12:24.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:24.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:27.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:27.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13067.9817ms +2024-05-20 00:12:29.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:29.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:33.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:33.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12960.6018ms +2024-05-20 00:12:35.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:35.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:37.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:37.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12979.6076ms +2024-05-20 00:12:39.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:39.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:42.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:42.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12620.6075ms +2024-05-20 00:12:44.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:44.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:47.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:47.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12535.9436ms +2024-05-20 00:12:50.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:50.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:52.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:52.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13009.1773ms +2024-05-20 00:12:54.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:54.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:58.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:12:58.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13217.9866ms +2024-05-20 00:12:59.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:12:59.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:03.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:03.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13051.3313ms +2024-05-20 00:13:05.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:05.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:07.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:07.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13036.2763ms +2024-05-20 00:13:09.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:09.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:12.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:12.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12688.0721ms +2024-05-20 00:13:14.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:14.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:18.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:18.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12871.2077ms +2024-05-20 00:13:20.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:20.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:22.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:22.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12873.2749ms +2024-05-20 00:13:24.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:24.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:27.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:27.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12606.6456ms +2024-05-20 00:13:29.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:29.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:33.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:33.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12831.9189ms +2024-05-20 00:13:35.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:35.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:37.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:37.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13026.2259ms +2024-05-20 00:13:39.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:39.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:42.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:42.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12571.5239ms +2024-05-20 00:13:44.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:44.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:48.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:48.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12715.3376ms +2024-05-20 00:13:50.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:50.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:52.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:52.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12895.6158ms +2024-05-20 00:13:54.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:13:54.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:57.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:13:57.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12637.3984ms +2024-05-20 00:14:03.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:14:03.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12883.5743ms +2024-05-20 00:14:08.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:14:08.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13178.3422ms +2024-05-20 00:15:19.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:15:19.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:19.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:19.949 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:15:19.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.4172ms +2024-05-20 00:15:19.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:15:19.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:20.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:20.024 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:15:20.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 62.58ms +2024-05-20 00:15:34.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:15:34.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:35.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:35.002 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:15:35.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 38.8753ms +2024-05-20 00:15:49.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:15:49.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:50.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:15:50.004 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:15:50.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 38.6345ms +2024-05-20 00:16:06.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:16:06.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:06.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:06.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:16:06.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.9168ms +2024-05-20 00:16:06.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:16:06.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:06.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:06.986 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:16:06.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.7078ms +2024-05-20 00:16:40.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:16:40.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:40.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:40.922 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:16:40.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6161ms +2024-05-20 00:16:41.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:16:41.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:41.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:16:41.289 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:16:41.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.9912ms +2024-05-20 00:17:02.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:17:02.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:02.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:02.051 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:02.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8448ms +2024-05-20 00:17:02.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:17:02.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:02.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:02.083 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:02.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.635ms +2024-05-20 00:17:17.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:17:17.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:17.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:17.092 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:17.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.1375ms +2024-05-20 00:17:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:17:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:32.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:32.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:32.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.5515ms +2024-05-20 00:17:47.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:17:47.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:47.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:17:47.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:17:47.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0848ms +2024-05-20 00:18:02.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:18:02.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:02.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:02.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:18:02.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0774ms +2024-05-20 00:18:17.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:18:17.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:17.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:17.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:18:17.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8263ms +2024-05-20 00:18:32.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:18:32.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:32.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:32.092 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:18:32.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.2495ms +2024-05-20 00:18:47.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:18:47.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:47.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:18:47.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:18:47.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.0057ms +2024-05-20 00:19:02.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:19:02.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:02.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:02.103 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:19:02.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 45.8072ms +2024-05-20 00:19:17.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:19:17.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:17.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:17.082 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:19:17.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3448ms +2024-05-20 00:19:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:19:32.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:32.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:32.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:19:32.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.644ms +2024-05-20 00:19:47.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:19:47.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:47.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:19:47.084 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:19:47.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.4672ms +2024-05-20 00:20:02.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:20:02.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:02.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:02.105 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:20:02.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 45.8081ms +2024-05-20 00:20:17.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:20:17.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:17.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:17.091 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:20:17.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.531ms +2024-05-20 00:20:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:20:32.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:32.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:32.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:20:32.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.8913ms +2024-05-20 00:20:47.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:20:47.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:47.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:20:47.093 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:20:47.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.4492ms +2024-05-20 00:21:02.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:02.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:02.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:02.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:02.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0873ms +2024-05-20 00:21:12.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:12.504 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:12.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:12.533 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:12.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6503ms +2024-05-20 00:21:13.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:13.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:13.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:13.059 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:13.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6447ms +2024-05-20 00:21:17.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:17.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:17.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:17.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:17.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.3255ms +2024-05-20 00:21:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:27.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:27.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:27.567 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:27.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.7037ms +2024-05-20 00:21:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:32.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:32.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:32.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.2964ms +2024-05-20 00:21:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:42.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:42.569 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:42.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3206ms +2024-05-20 00:21:47.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:47.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:47.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:47.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:47.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.7398ms +2024-05-20 00:21:57.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:21:57.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:21:57.569 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:21:57.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.5856ms +2024-05-20 00:22:02.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:02.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:02.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:02.103 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:02.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7866ms +2024-05-20 00:22:12.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:12.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:12.564 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.2545ms +2024-05-20 00:22:17.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:17.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:17.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:17.092 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:17.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.7069ms +2024-05-20 00:22:27.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:27.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:27.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:27.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:27.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.6788ms +2024-05-20 00:22:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:32.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:32.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:32.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:32.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.3298ms +2024-05-20 00:22:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:42.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:42.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:42.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:42.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.8902ms +2024-05-20 00:22:47.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:47.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:47.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:47.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:47.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.1811ms +2024-05-20 00:22:57.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:22:57.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:57.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:22:57.568 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:22:57.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.4639ms +2024-05-20 00:23:02.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:02.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:02.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:02.085 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:02.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.74ms +2024-05-20 00:23:12.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:12.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:12.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6067ms +2024-05-20 00:23:17.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:17.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:17.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:17.092 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:17.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.4752ms +2024-05-20 00:23:27.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:27.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:27.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:27.574 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:27.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.0001ms +2024-05-20 00:23:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:32.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:32.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:32.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6541ms +2024-05-20 00:23:42.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:42.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:42.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:42.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:42.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.948ms +2024-05-20 00:23:47.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:47.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:47.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:47.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:47.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.1976ms +2024-05-20 00:23:57.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:23:57.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:57.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:23:57.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:23:57.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.1106ms +2024-05-20 00:24:02.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:02.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:02.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:02.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:02.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.8129ms +2024-05-20 00:24:12.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:12.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:12.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:12.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:12.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.846ms +2024-05-20 00:24:17.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:17.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:17.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:17.085 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:17.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.5268ms +2024-05-20 00:24:27.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:27.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:27.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:27.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:27.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8287ms +2024-05-20 00:24:32.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:32.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:32.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:32.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0372ms +2024-05-20 00:24:42.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:42.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:42.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:42.576 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:42.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 39.2751ms +2024-05-20 00:24:47.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:47.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:47.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:47.084 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:47.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.0505ms +2024-05-20 00:24:57.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:24:57.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:57.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:24:57.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:24:57.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.187ms +2024-05-20 00:25:02.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:02.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:02.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:02.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:02.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.6998ms +2024-05-20 00:25:12.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:12.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:12.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:12.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.0484ms +2024-05-20 00:25:17.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:17.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:17.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:17.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:17.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0228ms +2024-05-20 00:25:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:27.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:27.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:27.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:27.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.0111ms +2024-05-20 00:25:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:32.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:32.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:32.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.8788ms +2024-05-20 00:25:42.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:42.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:42.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:42.566 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.9974ms +2024-05-20 00:25:47.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:47.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:47.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:47.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:47.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.8004ms +2024-05-20 00:25:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:25:57.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:57.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:25:57.568 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:25:57.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6111ms +2024-05-20 00:26:02.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:02.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:02.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:02.092 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:02.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.0708ms +2024-05-20 00:26:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:12.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:12.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:12.569 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:12.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.7698ms +2024-05-20 00:26:17.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:17.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:17.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:17.094 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:17.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.0546ms +2024-05-20 00:26:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:27.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:27.568 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:27.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.067ms +2024-05-20 00:26:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:32.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:32.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:32.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1676ms +2024-05-20 00:26:42.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:42.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:42.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:42.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:42.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.7378ms +2024-05-20 00:26:47.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:47.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:47.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:47.091 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:47.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 38.5625ms +2024-05-20 00:26:57.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:26:57.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:26:57.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:26:57.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.7004ms +2024-05-20 00:27:02.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:02.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:02.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:02.095 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:02.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 40.0391ms +2024-05-20 00:27:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:12.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:12.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:12.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.3907ms +2024-05-20 00:27:17.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:17.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:17.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:17.084 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:17.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.7904ms +2024-05-20 00:27:27.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:27.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:27.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:27.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:27.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8128ms +2024-05-20 00:27:32.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:32.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:32.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:32.083 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:32.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9607ms +2024-05-20 00:27:42.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:42.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:42.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:42.567 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:42.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.4776ms +2024-05-20 00:27:47.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:47.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:47.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:47.083 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:47.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.3026ms +2024-05-20 00:27:57.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:27:57.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:27:57.567 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:27:57.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.4962ms +2024-05-20 00:28:02.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:02.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:02.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:02.090 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:02.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.917ms +2024-05-20 00:28:12.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:12.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:12.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:12.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.996ms +2024-05-20 00:28:17.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:17.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:17.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:17.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:17.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.5328ms +2024-05-20 00:28:27.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:27.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:27.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:27.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:27.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.0528ms +2024-05-20 00:28:32.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:32.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:32.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:32.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:32.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.2232ms +2024-05-20 00:28:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:42.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:42.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:42.569 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:42.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.5197ms +2024-05-20 00:28:47.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:47.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:47.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:47.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:47.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.912ms +2024-05-20 00:28:57.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:28:57.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:28:57.566 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:28:57.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.5031ms +2024-05-20 00:29:02.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:02.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:02.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:02.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:02.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.506ms +2024-05-20 00:29:12.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:12.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:12.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:12.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:12.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.547ms +2024-05-20 00:29:17.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:17.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:17.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:17.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:17.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.7067ms +2024-05-20 00:29:27.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:27.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:27.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:27.577 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:27.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.646ms +2024-05-20 00:29:32.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:32.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:32.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:32.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:32.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1175ms +2024-05-20 00:29:42.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:42.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:42.568 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:42.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3555ms +2024-05-20 00:29:47.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:47.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:47.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:47.081 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:47.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.2818ms +2024-05-20 00:29:57.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:29:57.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:29:57.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:29:57.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.263ms +2024-05-20 00:30:02.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:02.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:02.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:02.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:02.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6752ms +2024-05-20 00:30:12.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:12.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:12.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:12.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.5574ms +2024-05-20 00:30:17.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:17.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:17.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:17.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:17.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.5043ms +2024-05-20 00:30:27.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:27.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:27.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:27.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:27.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.8447ms +2024-05-20 00:30:32.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:32.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:32.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:32.083 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:32.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7216ms +2024-05-20 00:30:42.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:42.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:42.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:42.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4113ms +2024-05-20 00:30:47.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:47.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:47.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:47.086 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:47.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.1277ms +2024-05-20 00:30:57.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:30:57.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:57.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:30:57.572 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:30:57.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.1239ms +2024-05-20 00:31:02.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:02.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:02.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:02.082 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:02.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4306ms +2024-05-20 00:31:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:12.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:12.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:12.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:12.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6428ms +2024-05-20 00:31:17.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:17.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:17.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:17.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:17.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.9779ms +2024-05-20 00:31:27.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:27.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:27.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:27.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:27.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 45.7255ms +2024-05-20 00:31:32.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:32.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:32.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:32.081 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:32.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0005ms +2024-05-20 00:31:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:42.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:42.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:42.571 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:42.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.3474ms +2024-05-20 00:31:47.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:47.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:47.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:47.081 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:47.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.4291ms +2024-05-20 00:31:57.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:31:57.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:57.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:31:57.579 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:31:57.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 42.9071ms +2024-05-20 00:32:02.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:02.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:02.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:02.082 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:02.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4916ms +2024-05-20 00:32:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:12.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:12.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:12.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:12.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.2401ms +2024-05-20 00:32:17.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:17.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:17.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:17.083 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:17.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4265ms +2024-05-20 00:32:27.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:27.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:27.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:27.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:27.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.4766ms +2024-05-20 00:32:32.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:32.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:32.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:32.088 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:32.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.683ms +2024-05-20 00:32:42.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:42.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:42.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:42.567 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:42.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9809ms +2024-05-20 00:32:47.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:47.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:47.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:47.081 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:47.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.5377ms +2024-05-20 00:32:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:32:57.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:32:57.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:32:57.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.9511ms +2024-05-20 00:33:02.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:02.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:02.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:02.087 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:02.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.1089ms +2024-05-20 00:33:12.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:12.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:12.565 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:12.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.5265ms +2024-05-20 00:33:17.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:17.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:17.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:17.082 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:17.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.2792ms +2024-05-20 00:33:27.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:27.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:27.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:27.573 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:27.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.2126ms +2024-05-20 00:33:32.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:32.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:32.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:32.089 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:32.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.2454ms +2024-05-20 00:33:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:33:42.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:42.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:33:42.570 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:33:42.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.2418ms +2024-05-20 00:34:04.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:34:04.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:04.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:04.620 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:34:04.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.978ms +2024-05-20 00:34:04.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:34:04.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:04.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:04.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:34:04.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.8103ms +2024-05-20 00:34:19.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:34:19.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:19.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:19.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:34:19.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6959ms +2024-05-20 00:34:34.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:34:34.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:34.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:34.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:34:34.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.5574ms +2024-05-20 00:34:49.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:34:49.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:49.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:34:49.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:34:49.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.2497ms +2024-05-20 00:35:04.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:35:04.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:04.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:04.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:35:04.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.0011ms +2024-05-20 00:35:19.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:35:19.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:19.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:19.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:35:19.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6453ms +2024-05-20 00:35:34.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:35:34.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:34.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:34.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:35:34.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.4368ms +2024-05-20 00:35:49.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:35:49.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:49.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:35:49.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:35:49.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.2742ms +2024-05-20 00:36:04.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:36:04.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:04.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:04.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:36:04.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.8823ms +2024-05-20 00:36:19.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:36:19.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:19.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:19.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:36:19.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0068ms +2024-05-20 00:36:34.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:36:34.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:34.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:34.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:36:34.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.4077ms +2024-05-20 00:36:49.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:36:49.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:49.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:36:49.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:36:49.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.013ms +2024-05-20 00:37:04.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:37:04.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:04.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:04.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:37:04.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.4194ms +2024-05-20 00:37:09.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:37:09.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:09.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:09.378 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:37:09.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.1896ms +2024-05-20 00:37:09.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:37:09.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:09.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:09.415 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:37:09.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8993ms +2024-05-20 00:37:50.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:37:50.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:50.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:50.459 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:37:50.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 38.0727ms +2024-05-20 00:37:50.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-20 00:37:50.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:50.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:37:50.819 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-20 00:37:50.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.6133ms +2024-05-20 00:37:55.499 +02:00 [INF] Received a message with ID: '8ec3fd51857a471bb8883cae3b5dc8d6', Correlation ID: '9c668ba111f4405cbac092b8f045d2d9', timestamp: 1716158275, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-20 00:37:55.501 +02:00 [INF] Handling a message: friend_invited with ID: 8ec3fd51857a471bb8883cae3b5dc8d6, Correlation ID: 9c668ba111f4405cbac092b8f045d2d9, retry: 0 +2024-05-20 00:37:55.503 +02:00 [INF] Received a message with ID: '5302be79618f482e9ba6ec161cfa1373', Correlation ID: 'f8726f5dd27b4870bb2dbef0a961a212', timestamp: 1716158275, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-20 00:37:55.504 +02:00 [INF] Handling a message: friend_request_sent with ID: 5302be79618f482e9ba6ec161cfa1373, Correlation ID: f8726f5dd27b4870bb2dbef0a961a212, retry: 0 +2024-05-20 00:37:55.527 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-20 00:37:55.527 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:37:55.527 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:37:55.556 +02:00 [INF] Received HTTP response headers after 29.4403ms - 200 +2024-05-20 00:37:55.557 +02:00 [INF] End processing HTTP request after 29.7616ms - 200 +2024-05-20 00:37:55.557 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:37:55.933 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-20 00:37:55.933 +02:00 [INF] Handled a message: friend_request_sent with ID: 5302be79618f482e9ba6ec161cfa1373, Correlation ID: f8726f5dd27b4870bb2dbef0a961a212, retry: 0 +2024-05-20 00:37:56.050 +02:00 [INF] Received a message with ID: '7058633d05594b18a8f94b1a065d1ff8', Correlation ID: 'aa07ca84dcc142fca9155da80c8855de', timestamp: 1716158276, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-20 00:37:56.050 +02:00 [INF] Handling a message: friend_request_sent with ID: 7058633d05594b18a8f94b1a065d1ff8, Correlation ID: aa07ca84dcc142fca9155da80c8855de, retry: 0 +2024-05-20 00:37:56.171 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-20 00:37:56.171 +02:00 [INF] Handled a message: friend_request_sent with ID: 7058633d05594b18a8f94b1a065d1ff8, Correlation ID: aa07ca84dcc142fca9155da80c8855de, retry: 0 +2024-05-20 00:38:08.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:38:08.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:13.966 +02:00 [ERR] There was an error when processing a message with id: '8ec3fd51857a471bb8883cae3b5dc8d6'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:38:13.974 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:38:13.978 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8ec3fd51857a471bb8883cae3b5dc8d6', Correlation ID: '9c668ba111f4405cbac092b8f045d2d9', retry 1/3... +2024-05-20 00:38:15.979 +02:00 [INF] Handling a message: friend_invited with ID: 8ec3fd51857a471bb8883cae3b5dc8d6, Correlation ID: 9c668ba111f4405cbac092b8f045d2d9, retry: 1 +2024-05-20 00:38:16.009 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-20 00:38:16.009 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:16.010 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:16.042 +02:00 [INF] Received HTTP response headers after 31.9949ms - 200 +2024-05-20 00:38:16.042 +02:00 [INF] End processing HTTP request after 32.9742ms - 200 +2024-05-20 00:38:16.043 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:38:21.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:21.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12824.4237ms +2024-05-20 00:38:22.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:38:22.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:34.417 +02:00 [ERR] There was an error when processing a message with id: '8ec3fd51857a471bb8883cae3b5dc8d6'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:38:34.420 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:38:34.424 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8ec3fd51857a471bb8883cae3b5dc8d6', Correlation ID: '9c668ba111f4405cbac092b8f045d2d9', retry 2/3... +2024-05-20 00:38:35.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:35.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12705.4275ms +2024-05-20 00:38:36.426 +02:00 [INF] Handling a message: friend_invited with ID: 8ec3fd51857a471bb8883cae3b5dc8d6, Correlation ID: 9c668ba111f4405cbac092b8f045d2d9, retry: 2 +2024-05-20 00:38:36.454 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-20 00:38:36.454 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:36.454 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:36.484 +02:00 [INF] Received HTTP response headers after 29.9864ms - 200 +2024-05-20 00:38:36.485 +02:00 [INF] End processing HTTP request after 30.3202ms - 200 +2024-05-20 00:38:36.485 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:38:42.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:38:42.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:54.565 +02:00 [ERR] There was an error when processing a message with id: '8ec3fd51857a471bb8883cae3b5dc8d6'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:38:54.566 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:38:54.568 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8ec3fd51857a471bb8883cae3b5dc8d6', Correlation ID: '9c668ba111f4405cbac092b8f045d2d9', retry 3/3... +2024-05-20 00:38:54.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:38:54.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12584.113ms +2024-05-20 00:38:56.569 +02:00 [INF] Handling a message: friend_invited with ID: 8ec3fd51857a471bb8883cae3b5dc8d6, Correlation ID: 9c668ba111f4405cbac092b8f045d2d9, retry: 3 +2024-05-20 00:38:56.596 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-20 00:38:56.596 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:56.596 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:38:56.627 +02:00 [INF] Received HTTP response headers after 31.0285ms - 200 +2024-05-20 00:38:56.628 +02:00 [INF] End processing HTTP request after 31.9076ms - 200 +2024-05-20 00:38:56.628 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:39:16.261 +02:00 [ERR] There was an error when processing a message with id: '8ec3fd51857a471bb8883cae3b5dc8d6'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-20 00:39:16.263 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-20 00:39:16.264 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '8ec3fd51857a471bb8883cae3b5dc8d6', Correlation ID: '9c668ba111f4405cbac092b8f045d2d9', retry 4/3... +2024-05-20 00:39:16.264 +02:00 [ERR] Handling a message: friend_invited with ID: 8ec3fd51857a471bb8883cae3b5dc8d6, Correlation ID: 9c668ba111f4405cbac092b8f045d2d9 failed +2024-05-20 00:39:16.265 +02:00 [INF] Received a message with ID: 'b632d62228164ed2b8d422dfd551cd0e', Correlation ID: '407c5dcbc3b646efa2f56e8f42c1cd69', timestamp: 1716158276, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-20 00:39:16.265 +02:00 [INF] Handling a message: friend_invited with ID: b632d62228164ed2b8d422dfd551cd0e, Correlation ID: 407c5dcbc3b646efa2f56e8f42c1cd69, retry: 0 +2024-05-20 00:39:16.301 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-20 00:39:16.302 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:39:16.302 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-20 00:39:16.334 +02:00 [INF] Received HTTP response headers after 31.8915ms - 200 +2024-05-20 00:39:16.334 +02:00 [INF] End processing HTTP request after 32.2975ms - 200 +2024-05-20 00:39:16.334 +02:00 [INF] End processing HTTP request - "OK" +2024-05-20 00:39:16.508 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-20 00:39:16.508 +02:00 [INF] Handled a message: friend_invited with ID: b632d62228164ed2b8d422dfd551cd0e, Correlation ID: 407c5dcbc3b646efa2f56e8f42c1cd69, retry: 0 +2024-05-20 00:40:52.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:40:52.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:41:05.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:41:05.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12979.5715ms +2024-05-20 00:45:26.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:45:26.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:45:39.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:45:39.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12617.204ms +2024-05-20 00:45:43.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:45:43.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:45:54.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:45:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:45:55.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:45:55.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12705.9786ms +2024-05-20 00:46:07.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:07.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12804.3532ms +2024-05-20 00:46:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:46:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:22.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:22.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12589.6689ms +2024-05-20 00:46:24.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:46:24.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:38.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:38.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13173.6427ms +2024-05-20 00:46:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:46:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:52.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:46:52.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12798.594ms +2024-05-20 00:46:54.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:46:54.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:07.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:07.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12656.7969ms +2024-05-20 00:47:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:47:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:22.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:22.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12724.3315ms +2024-05-20 00:47:24.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:47:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:37.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:37.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12761.3738ms +2024-05-20 00:47:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:47:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:52.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:47:52.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12792.195ms +2024-05-20 00:47:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:47:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:07.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:07.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12708.349ms +2024-05-20 00:48:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:48:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:22.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:22.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12675.0508ms +2024-05-20 00:48:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:48:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:37.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:37.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12384.775ms +2024-05-20 00:48:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:48:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:52.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:48:52.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13020.1362ms +2024-05-20 00:48:54.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:48:54.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:07.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:07.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13054.345ms +2024-05-20 00:49:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:49:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:22.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:22.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12936.6794ms +2024-05-20 00:49:24.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:49:24.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:37.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:37.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12790.7586ms +2024-05-20 00:49:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:49:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:52.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:49:52.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12856.8472ms +2024-05-20 00:49:54.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:49:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:07.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:07.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12853.0833ms +2024-05-20 00:50:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:50:09.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:22.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:22.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12761.6618ms +2024-05-20 00:50:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:50:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:38.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:38.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13100.5873ms +2024-05-20 00:50:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:50:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:52.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:50:52.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12809.9929ms +2024-05-20 00:50:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:50:54.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:07.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:07.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12600.5437ms +2024-05-20 00:51:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:51:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:22.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:22.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12801.2086ms +2024-05-20 00:51:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:51:24.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:38.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:38.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13090.5494ms +2024-05-20 00:51:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:51:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:52.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:51:52.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12968.5222ms +2024-05-20 00:51:54.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:51:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:07.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:07.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12520.2476ms +2024-05-20 00:52:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:52:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:22.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:22.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12725.4183ms +2024-05-20 00:52:24.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:52:24.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:37.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:37.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12995.6184ms +2024-05-20 00:52:39.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:52:39.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:52.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:52:52.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12820.1622ms +2024-05-20 00:52:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:52:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:07.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:07.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12712.2627ms +2024-05-20 00:53:09.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:53:09.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:22.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:22.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12659.3723ms +2024-05-20 00:53:24.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:53:24.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:39.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:39.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14428.5478ms +2024-05-20 00:53:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:53:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:52.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:53:52.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12580.3513ms +2024-05-20 00:53:54.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:53:54.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:07.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:07.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12636.2676ms +2024-05-20 00:54:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:54:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:22.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:22.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12796.2967ms +2024-05-20 00:54:24.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:54:24.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:37.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:37.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13000.6719ms +2024-05-20 00:54:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:54:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:52.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:54:52.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12879.6129ms +2024-05-20 00:54:54.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:54:54.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:07.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:07.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12738.5453ms +2024-05-20 00:55:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:55:09.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:23.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:23.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13555.532ms +2024-05-20 00:55:24.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:55:24.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:37.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:37.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12785.603ms +2024-05-20 00:55:39.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:55:39.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:52.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:55:52.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12666.8722ms +2024-05-20 00:55:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:55:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:07.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:07.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12695.6423ms +2024-05-20 00:56:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:56:09.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:23.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:23.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13543.0763ms +2024-05-20 00:56:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:56:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:37.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:37.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12596.752ms +2024-05-20 00:56:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:56:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:52.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:56:52.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12790.4616ms +2024-05-20 00:56:54.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:56:54.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:07.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:07.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12488.6575ms +2024-05-20 00:57:09.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:57:09.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:22.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:22.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12323.2242ms +2024-05-20 00:57:24.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:57:24.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:37.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:37.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12836.3059ms +2024-05-20 00:57:39.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:57:39.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:52.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:57:52.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12474.5898ms +2024-05-20 00:57:54.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:57:54.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:07.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:07.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12574.6313ms +2024-05-20 00:58:09.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:58:09.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:22.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:22.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12852.7429ms +2024-05-20 00:58:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:58:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:37.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:37.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12644.8537ms +2024-05-20 00:58:39.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:58:39.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:52.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:58:52.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12947.7921ms +2024-05-20 00:58:54.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:58:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:07.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:07.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12413.4621ms +2024-05-20 00:59:09.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:59:09.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:22.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:22.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12580.7785ms +2024-05-20 00:59:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:59:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:37.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:37.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12590.0166ms +2024-05-20 00:59:39.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:59:39.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:52.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 00:59:52.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12847.8413ms +2024-05-20 00:59:54.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 00:59:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:08.176 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:08.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13252.0598ms +2024-05-20 01:00:09.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:00:09.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:22.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:22.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12932.7468ms +2024-05-20 01:00:24.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:00:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:39.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:00:39.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:40.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:40.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 15368.5315ms +2024-05-20 01:00:52.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:00:52.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12996.0223ms +2024-05-20 01:00:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:00:54.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:07.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:07.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12718.938ms +2024-05-20 01:01:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:01:09.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:23.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:23.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13181.3844ms +2024-05-20 01:01:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:01:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:37.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:37.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12951.4032ms +2024-05-20 01:01:39.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:01:39.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:52.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:01:52.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12699.7594ms +2024-05-20 01:01:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:01:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:07.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:07.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13014.5985ms +2024-05-20 01:02:09.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:02:09.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:22.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:22.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12631.4643ms +2024-05-20 01:02:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:02:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:37.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:37.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12746.0901ms +2024-05-20 01:02:40.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:02:40.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:53.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:02:53.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13071.3968ms +2024-05-20 01:02:54.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:02:54.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:07.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:07.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12653.9856ms +2024-05-20 01:03:09.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:03:09.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:22.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:22.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12794.5032ms +2024-05-20 01:03:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:03:24.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:37.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:37.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12779.3769ms +2024-05-20 01:03:39.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:03:39.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:52.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:03:52.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12742.8631ms +2024-05-20 01:03:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:03:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:07.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:07.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13035.9465ms +2024-05-20 01:04:09.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:04:09.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:22.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:22.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12704.8833ms +2024-05-20 01:04:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:04:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:37.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:37.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12766.813ms +2024-05-20 01:04:39.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:04:39.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:52.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:04:52.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12891.5432ms +2024-05-20 01:04:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:04:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:07.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:07.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12740.6999ms +2024-05-20 01:05:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:05:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:22.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:22.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12695.2034ms +2024-05-20 01:05:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:05:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:37.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:37.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12590.4756ms +2024-05-20 01:05:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:05:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:52.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:05:52.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12840.5265ms +2024-05-20 01:05:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:05:54.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:07.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:07.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12973.4547ms +2024-05-20 01:06:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:06:09.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:22.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:22.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12589.5552ms +2024-05-20 01:06:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:06:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:37.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:37.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12681.2685ms +2024-05-20 01:06:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:06:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:52.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:06:52.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12918.3014ms +2024-05-20 01:06:54.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:06:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:07.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:07.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12692.4941ms +2024-05-20 01:07:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:07:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:22.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:22.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12866.6594ms +2024-05-20 01:07:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:07:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:37.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:37.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12972.1583ms +2024-05-20 01:07:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:07:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:52.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:07:52.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12656.372ms +2024-05-20 01:07:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:07:54.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:07.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:07.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12714.9542ms +2024-05-20 01:08:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:08:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:22.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:22.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12270.872ms +2024-05-20 01:08:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:08:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:37.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:37.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12619.366ms +2024-05-20 01:08:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:08:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:52.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:08:52.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12531.9501ms +2024-05-20 01:08:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:08:54.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:07.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:07.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12381.7558ms +2024-05-20 01:09:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:09:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:22.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:22.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12436.0776ms +2024-05-20 01:09:24.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:09:24.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:37.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:37.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12625.7227ms +2024-05-20 01:09:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:09:39.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:52.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:09:52.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12450.9581ms +2024-05-20 01:09:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:09:54.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:07.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:07.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12485.8229ms +2024-05-20 01:10:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:10:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:22.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:22.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12245.8009ms +2024-05-20 01:10:24.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:10:24.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:37.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:37.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12309.3777ms +2024-05-20 01:10:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:10:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:52.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:10:52.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12472.9217ms +2024-05-20 01:10:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:10:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:07.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:07.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12540.7251ms +2024-05-20 01:11:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:11:09.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:22.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:22.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12266.6595ms +2024-05-20 01:11:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:11:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:37.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:37.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12421.4039ms +2024-05-20 01:11:39.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:11:39.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:52.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:11:52.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12339.6563ms +2024-05-20 01:11:54.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:11:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:07.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:07.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12600.4826ms +2024-05-20 01:12:09.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:12:09.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:22.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:22.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12436.6598ms +2024-05-20 01:12:24.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:12:24.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:37.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:37.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12522.1014ms +2024-05-20 01:12:39.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:12:39.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:52.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:12:52.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12370.7929ms +2024-05-20 01:12:54.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:12:54.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:07.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:07.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12461.4717ms +2024-05-20 01:13:09.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:13:09.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:22.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:22.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12445.0388ms +2024-05-20 01:13:24.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:13:24.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:37.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:37.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12661.1717ms +2024-05-20 01:13:39.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:13:39.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:52.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:13:52.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12406.4133ms +2024-05-20 01:13:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:13:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:07.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:07.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12286.0914ms +2024-05-20 01:14:09.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:14:09.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:22.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:22.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12361.5543ms +2024-05-20 01:14:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:14:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:37.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:37.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12449.7008ms +2024-05-20 01:14:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:14:39.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:52.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:14:52.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12734.208ms +2024-05-20 01:14:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:14:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:07.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:07.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12907.0117ms +2024-05-20 01:15:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:15:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:22.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:22.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12722.617ms +2024-05-20 01:15:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:15:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:37.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:37.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12311.2646ms +2024-05-20 01:15:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:15:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:52.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:15:52.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12333.307ms +2024-05-20 01:15:54.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:15:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:07.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:07.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12290.686ms +2024-05-20 01:16:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:16:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:22.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:22.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12324.9438ms +2024-05-20 01:16:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:16:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:37.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:37.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12359.2193ms +2024-05-20 01:16:39.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:16:39.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:52.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:16:52.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12679.6181ms +2024-05-20 01:16:54.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:16:54.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:07.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:07.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12490.5379ms +2024-05-20 01:17:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:17:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:22.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:22.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12545.678ms +2024-05-20 01:17:24.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:17:24.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:37.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:37.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12459.8626ms +2024-05-20 01:17:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:17:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:52.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:17:52.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12214.5378ms +2024-05-20 01:17:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:17:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:07.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:07.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12430.0344ms +2024-05-20 01:18:09.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:18:09.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:22.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:22.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12380.5346ms +2024-05-20 01:18:24.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:18:24.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:37.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:37.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12665.4337ms +2024-05-20 01:18:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:18:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:52.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:18:52.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12400.0439ms +2024-05-20 01:18:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:18:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:07.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:07.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12483.1623ms +2024-05-20 01:19:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:19:09.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:22.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:22.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12436.0809ms +2024-05-20 01:19:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:19:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:37.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:37.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12394.0853ms +2024-05-20 01:19:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:19:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:52.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:19:52.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12524.5254ms +2024-05-20 01:19:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:19:54.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:07.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:07.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12515.9807ms +2024-05-20 01:20:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:20:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:22.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:22.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12653.3121ms +2024-05-20 01:20:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:20:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:37.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:37.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12401.1428ms +2024-05-20 01:20:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:20:39.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:52.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:20:52.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12625.6722ms +2024-05-20 01:20:54.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:20:54.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:07.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:07.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12961.8033ms +2024-05-20 01:21:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:21:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:22.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:22.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12375.7273ms +2024-05-20 01:21:24.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:21:24.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:37.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:37.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12384.4328ms +2024-05-20 01:21:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:21:39.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:52.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:21:52.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12496.848ms +2024-05-20 01:21:54.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:21:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:07.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:07.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12356.451ms +2024-05-20 01:22:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:22:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:22.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:22.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12608.1785ms +2024-05-20 01:22:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:22:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:37.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:37.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12561.6564ms +2024-05-20 01:22:39.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:22:39.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:52.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:22:52.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12508.1674ms +2024-05-20 01:22:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:22:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:07.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:07.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12579.9191ms +2024-05-20 01:23:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:23:09.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:23.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:23.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13894.3357ms +2024-05-20 01:23:24.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:23:24.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:37.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:37.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12373.7575ms +2024-05-20 01:23:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:23:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:52.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:23:52.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12408.1318ms +2024-05-20 01:23:54.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:23:54.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:07.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:07.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12338.3507ms +2024-05-20 01:24:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:24:09.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:22.484 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:22.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12558.995ms +2024-05-20 01:24:24.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:24:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:37.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:37.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12602.0899ms +2024-05-20 01:24:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:24:39.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:52.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:24:52.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12411.8075ms +2024-05-20 01:24:54.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:24:54.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:07.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:07.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12367.5117ms +2024-05-20 01:25:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:25:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:22.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:22.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12582.9625ms +2024-05-20 01:25:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:25:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:37.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:37.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12449.3357ms +2024-05-20 01:25:39.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:25:39.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:52.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:25:52.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12591.4526ms +2024-05-20 01:25:54.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:25:54.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:07.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:07.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12598.0655ms +2024-05-20 01:26:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:26:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:22.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:22.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12469.3035ms +2024-05-20 01:26:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:26:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:37.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:37.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12405.2413ms +2024-05-20 01:26:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:26:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:52.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:26:52.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12436.0195ms +2024-05-20 01:26:54.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:26:54.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:07.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:07.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12591.5785ms +2024-05-20 01:27:09.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:27:09.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:22.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:22.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12298.0222ms +2024-05-20 01:27:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:27:24.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:37.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:37.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12535.5231ms +2024-05-20 01:27:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:27:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:52.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:27:52.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12116.0696ms +2024-05-20 01:27:54.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:27:54.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:07.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:07.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12578.3318ms +2024-05-20 01:28:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:28:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:22.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:22.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12520.0734ms +2024-05-20 01:28:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:28:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:37.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:37.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12309.2961ms +2024-05-20 01:28:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:28:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:52.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:28:52.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12348.0377ms +2024-05-20 01:28:54.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:28:54.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:07.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:07.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12601.6702ms +2024-05-20 01:29:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:29:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:22.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:22.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12445.4042ms +2024-05-20 01:29:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:29:24.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:37.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:37.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12615.4335ms +2024-05-20 01:29:39.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:29:39.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:52.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:29:52.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12392.0475ms +2024-05-20 01:29:54.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:29:54.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:07.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:07.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12415.9739ms +2024-05-20 01:30:09.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:30:09.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:22.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:22.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12328.9351ms +2024-05-20 01:30:24.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:30:24.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:37.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:37.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12438.6016ms +2024-05-20 01:30:39.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:30:39.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:52.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:30:52.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12471.2554ms +2024-05-20 01:30:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:30:54.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:07.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:07.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12519.852ms +2024-05-20 01:31:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:31:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:22.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:22.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12405.0169ms +2024-05-20 01:31:24.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:31:24.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:37.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:37.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12556.883ms +2024-05-20 01:31:39.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:31:39.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:52.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:31:52.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12623.9755ms +2024-05-20 01:31:54.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:31:54.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:07.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:07.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12631.6595ms +2024-05-20 01:32:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:32:09.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:22.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:22.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12455.3218ms +2024-05-20 01:32:24.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:32:24.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:37.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:37.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12715.6605ms +2024-05-20 01:32:39.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:32:39.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:52.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:32:52.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12764.0686ms +2024-05-20 01:32:54.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:32:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:07.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:07.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12521.4402ms +2024-05-20 01:33:09.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:33:09.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:22.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:22.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12553.7463ms +2024-05-20 01:33:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:33:24.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:37.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:37.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12330.5607ms +2024-05-20 01:33:39.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:33:39.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:52.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:33:52.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12575.0358ms +2024-05-20 01:33:54.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:33:54.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:07.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:07.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12654.5802ms +2024-05-20 01:34:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:34:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:22.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:22.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12421.8322ms +2024-05-20 01:34:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:34:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:37.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:37.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12770.6024ms +2024-05-20 01:34:39.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:34:39.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:52.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:34:52.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12740.2688ms +2024-05-20 01:34:54.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:34:54.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:07.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:07.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12694.267ms +2024-05-20 01:35:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:35:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:22.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:22.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12568.4849ms +2024-05-20 01:35:24.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:35:24.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:37.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:37.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12449.6068ms +2024-05-20 01:35:39.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:35:39.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:52.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:35:52.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12457.636ms +2024-05-20 01:35:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:35:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:07.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:07.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12622.1763ms +2024-05-20 01:36:09.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:36:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:22.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:22.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12431.305ms +2024-05-20 01:36:24.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:36:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:37.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:37.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12839.3161ms +2024-05-20 01:36:39.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:36:39.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:53.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:36:53.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13297.1405ms +2024-05-20 01:36:54.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:36:54.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:07.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:07.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12740.9268ms +2024-05-20 01:37:09.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:37:09.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:22.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:22.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12562.5316ms +2024-05-20 01:37:24.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:37:24.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:37.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:37.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12903.3967ms +2024-05-20 01:37:39.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:37:39.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:52.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:37:52.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12825.4523ms +2024-05-20 01:37:54.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-20 01:37:54.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:38:07.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 01:38:07.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 12837.4045ms +2024-05-20 08:35:05.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:35:05.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:05.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:05.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.5468ms +2024-05-20 08:35:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:35:05.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:06.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:06.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.0407ms +2024-05-20 08:35:20.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:35:20.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:21.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:21.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.729ms +2024-05-20 08:35:35.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:35:35.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:36.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:36.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.9223ms +2024-05-20 08:35:50.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:35:50.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:51.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:35:51.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9142ms +2024-05-20 08:36:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:36:05.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:06.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:06.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.2291ms +2024-05-20 08:36:20.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:36:20.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:21.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:21.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5494ms +2024-05-20 08:36:35.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:36:35.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:36.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:36.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0649ms +2024-05-20 08:36:50.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:36:50.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:51.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:36:51.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.9075ms +2024-05-20 08:37:05.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:37:05.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:06.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:06.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.378ms +2024-05-20 08:37:20.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:37:20.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:21.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:21.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0736ms +2024-05-20 08:37:35.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:37:35.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:36.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:36.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3267ms +2024-05-20 08:37:50.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:37:50.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:51.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:37:51.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7199ms +2024-05-20 08:38:05.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:38:05.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:06.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:06.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.6759ms +2024-05-20 08:38:20.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:38:20.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:21.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:21.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.2911ms +2024-05-20 08:38:35.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:38:35.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:36.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:36.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.2311ms +2024-05-20 08:38:50.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:38:50.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:51.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:38:51.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.8605ms +2024-05-20 08:39:05.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:39:05.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:06.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:06.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3043ms +2024-05-20 08:39:20.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:39:20.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:21.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:21.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.8191ms +2024-05-20 08:39:35.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:39:35.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:36.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:36.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5615ms +2024-05-20 08:39:50.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:39:50.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:51.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:39:51.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.038ms +2024-05-20 08:40:05.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:40:05.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:40:06.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:40:06.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7482ms +2024-05-20 08:40:20.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-20 08:40:20.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:40:21.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-20 08:40:21.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.8344ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240522.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240522.txt new file mode 100644 index 000000000..942771904 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240522.txt @@ -0,0 +1,9657 @@ +2024-05-22 11:00:02.101 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-22 11:00:02.137 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-22 11:00:02.207 +02:00 [INF] Registering a service [id: notifications-service:21a96c4197bd407ab867bae3b0e7d7bf] in Consul... +2024-05-22 11:00:02.229 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-22 11:00:02.232 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:00:02.233 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:00:02.241 +02:00 [INF] Received HTTP response headers after 5.1493ms - 200 +2024-05-22 11:00:02.242 +02:00 [INF] End processing HTTP request after 10.2448ms - 200 +2024-05-22 11:00:02.245 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 11:00:02.246 +02:00 [INF] Registered a service [id: notifications-service:21a96c4197bd407ab867bae3b0e7d7bf] in Consul. +2024-05-22 11:00:02.252 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-22 11:00:02.262 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-22 11:00:02.264 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-22 11:00:02.265 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-22 11:00:02.268 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-22 11:00:02.270 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-22 11:00:02.273 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-22 11:00:02.274 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-22 11:01:02.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:01:02.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:02.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:02.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 417.1401ms +2024-05-22 11:01:02.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:01:02.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:02.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:02.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.1782ms +2024-05-22 11:01:17.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:01:17.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:17.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:17.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.7945ms +2024-05-22 11:01:32.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:01:32.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:32.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:32.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.0115ms +2024-05-22 11:01:47.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:01:47.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:47.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:01:47.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.9473ms +2024-05-22 11:02:02.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:02:02.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:02.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:02.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.9267ms +2024-05-22 11:02:13.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:02:13.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:13.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:13.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2379ms +2024-05-22 11:02:13.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:02:13.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:13.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:02:13.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5833ms +2024-05-22 11:03:09.155 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:09.156 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:09.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:09.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3333ms +2024-05-22 11:03:09.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:09.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:09.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:09.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0544ms +2024-05-22 11:03:24.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:24.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:24.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:24.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.4179ms +2024-05-22 11:03:39.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:39.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:39.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:39.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.6934ms +2024-05-22 11:03:53.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:53.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:53.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:53.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5368ms +2024-05-22 11:03:53.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:03:53.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:53.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:03:53.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5478ms +2024-05-22 11:04:08.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:04:08.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:08.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:08.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.4219ms +2024-05-22 11:04:23.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:04:23.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:23.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:23.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3936ms +2024-05-22 11:04:38.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:04:38.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:38.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:38.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.6614ms +2024-05-22 11:04:53.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:04:53.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:53.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:04:53.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.6645ms +2024-05-22 11:05:08.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:05:08.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:08.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:08.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.4571ms +2024-05-22 11:05:23.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:05:23.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:23.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:23.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.0388ms +2024-05-22 11:05:38.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:05:38.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:38.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:38.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5149ms +2024-05-22 11:05:53.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:05:53.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:53.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:05:53.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.3129ms +2024-05-22 11:06:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:06:08.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:08.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:08.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5627ms +2024-05-22 11:06:23.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:06:23.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:23.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:23.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7564ms +2024-05-22 11:06:38.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:06:38.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:38.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:38.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.9448ms +2024-05-22 11:06:53.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:06:53.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:53.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:06:53.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.3343ms +2024-05-22 11:07:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:07:08.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:08.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:08.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.252ms +2024-05-22 11:07:23.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:07:23.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:23.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:23.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.008ms +2024-05-22 11:07:38.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:07:38.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:38.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:38.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.779ms +2024-05-22 11:07:53.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:07:53.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:07:53.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1988ms +2024-05-22 11:08:08.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:08:08.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:08.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:08.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.574ms +2024-05-22 11:08:23.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:08:23.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:23.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:23.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9356ms +2024-05-22 11:08:38.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:08:38.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:38.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:38.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.715ms +2024-05-22 11:08:53.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:08:53.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:53.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:08:53.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5575ms +2024-05-22 11:09:08.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:09:08.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:08.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:08.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1529ms +2024-05-22 11:09:23.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:09:23.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:23.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:23.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3521ms +2024-05-22 11:09:38.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:09:38.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:38.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:38.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7492ms +2024-05-22 11:09:53.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:09:53.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:53.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:09:53.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.694ms +2024-05-22 11:10:08.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:10:08.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:08.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:08.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.047ms +2024-05-22 11:10:23.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:10:23.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:23.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:23.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.1668ms +2024-05-22 11:10:38.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:10:38.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:38.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:38.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.2247ms +2024-05-22 11:10:53.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:10:53.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:53.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:10:53.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0631ms +2024-05-22 11:11:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:11:08.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:08.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:08.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.4038ms +2024-05-22 11:11:23.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:11:23.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:23.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:23.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3831ms +2024-05-22 11:11:38.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:11:38.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:38.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:38.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.8359ms +2024-05-22 11:11:53.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:11:53.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:11:53.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.4424ms +2024-05-22 11:12:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:12:08.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:08.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:08.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8094ms +2024-05-22 11:12:23.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:12:23.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:23.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:23.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3867ms +2024-05-22 11:12:38.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:12:38.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:38.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:38.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.1969ms +2024-05-22 11:12:53.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:12:53.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:12:53.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0772ms +2024-05-22 11:13:08.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:13:08.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:08.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:08.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.2492ms +2024-05-22 11:13:23.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:13:23.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:23.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:23.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.346ms +2024-05-22 11:13:38.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:13:38.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:38.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:38.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.0011ms +2024-05-22 11:13:53.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:13:53.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:53.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:13:53.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3865ms +2024-05-22 11:14:08.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:14:08.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:08.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:08.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.4867ms +2024-05-22 11:14:23.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:14:23.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:23.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:23.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0641ms +2024-05-22 11:14:38.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:14:38.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:38.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:38.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.3032ms +2024-05-22 11:14:53.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:14:53.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:14:53.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.852ms +2024-05-22 11:15:08.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:15:08.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:08.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:08.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.0873ms +2024-05-22 11:15:23.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:15:23.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:23.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:23.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.827ms +2024-05-22 11:15:38.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:15:38.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:38.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:38.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9593ms +2024-05-22 11:15:53.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:15:53.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:53.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:15:53.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.2739ms +2024-05-22 11:16:08.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:16:08.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:08.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:08.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.269ms +2024-05-22 11:16:23.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:16:23.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:23.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:23.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.181ms +2024-05-22 11:16:38.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:16:38.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:38.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:38.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2535ms +2024-05-22 11:16:53.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:16:53.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:53.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:16:53.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0607ms +2024-05-22 11:17:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:17:08.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:08.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:08.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.3528ms +2024-05-22 11:17:23.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:17:23.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:23.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:23.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3625ms +2024-05-22 11:17:38.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:17:38.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:38.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:38.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.2513ms +2024-05-22 11:17:53.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:17:53.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:53.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:17:53.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.051ms +2024-05-22 11:18:08.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:18:08.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:08.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:08.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9599ms +2024-05-22 11:18:23.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:18:23.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:23.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:23.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.439ms +2024-05-22 11:18:38.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:18:38.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:38.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:38.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3542ms +2024-05-22 11:18:53.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:18:53.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:53.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:18:53.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3132ms +2024-05-22 11:19:08.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:19:08.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:08.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:08.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5053ms +2024-05-22 11:19:23.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:19:23.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:23.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:23.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4139ms +2024-05-22 11:19:38.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:19:38.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:38.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:38.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0516ms +2024-05-22 11:19:53.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:19:53.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:53.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:19:53.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.4476ms +2024-05-22 11:20:34.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:20:34.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:20:34.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:20:34.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6915ms +2024-05-22 11:20:49.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:20:49.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:20:49.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:20:49.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.787ms +2024-05-22 11:21:04.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:21:04.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:04.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:04.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6872ms +2024-05-22 11:21:19.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:21:19.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:19.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:19.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5294ms +2024-05-22 11:21:34.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:21:34.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:34.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:34.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5869ms +2024-05-22 11:21:49.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:21:49.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:49.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:21:49.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9743ms +2024-05-22 11:22:04.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:22:04.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:04.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:04.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3811ms +2024-05-22 11:22:19.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:22:19.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:19.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:19.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.739ms +2024-05-22 11:22:34.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:22:34.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:34.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:34.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4731ms +2024-05-22 11:22:49.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:22:49.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:49.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:22:49.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0303ms +2024-05-22 11:23:04.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:23:04.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:04.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:04.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2981ms +2024-05-22 11:23:19.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:23:19.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:19.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:19.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0706ms +2024-05-22 11:23:34.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:23:34.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:34.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:34.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5172ms +2024-05-22 11:23:49.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:23:49.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:49.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:23:49.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3389ms +2024-05-22 11:24:04.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:24:04.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:04.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:04.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3654ms +2024-05-22 11:24:16.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:24:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3185ms +2024-05-22 11:24:16.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:24:16.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:16.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:16.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.4177ms +2024-05-22 11:24:31.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:24:31.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:31.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:31.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.2887ms +2024-05-22 11:24:46.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:24:46.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:46.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:24:46.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.9927ms +2024-05-22 11:25:01.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:25:01.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:01.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:01.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.7163ms +2024-05-22 11:25:16.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:25:16.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:16.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:16.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.9472ms +2024-05-22 11:25:31.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:25:31.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:31.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:31.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.6947ms +2024-05-22 11:25:46.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:25:46.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:46.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:25:46.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.536ms +2024-05-22 11:26:01.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:26:01.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:01.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:01.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.2194ms +2024-05-22 11:26:03.081 +02:00 [INF] Deregistering a service [id: notifications-service:21a96c4197bd407ab867bae3b0e7d7bf] from Consul... +2024-05-22 11:26:03.082 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:21a96c4197bd407ab867bae3b0e7d7bf" +2024-05-22 11:26:03.082 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:21a96c4197bd407ab867bae3b0e7d7bf +2024-05-22 11:26:03.083 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:21a96c4197bd407ab867bae3b0e7d7bf +2024-05-22 11:26:03.085 +02:00 [INF] Received HTTP response headers after 2.1473ms - 200 +2024-05-22 11:26:03.085 +02:00 [INF] End processing HTTP request after 2.5279ms - 200 +2024-05-22 11:26:03.085 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 11:26:03.086 +02:00 [INF] Deregistered a service [id: notifications-service:21a96c4197bd407ab867bae3b0e7d7bf] from Consul. +2024-05-22 11:26:12.715 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-22 11:26:12.754 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-22 11:26:12.815 +02:00 [INF] Registering a service [id: notifications-service:0a4b27260d174de8ae8b64c786a78359] in Consul... +2024-05-22 11:26:12.832 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-22 11:26:12.835 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:26:12.836 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-22 11:26:12.846 +02:00 [INF] Received HTTP response headers after 7.5192ms - 200 +2024-05-22 11:26:12.846 +02:00 [INF] End processing HTTP request after 11.624ms - 200 +2024-05-22 11:26:12.849 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 11:26:12.849 +02:00 [INF] Registered a service [id: notifications-service:0a4b27260d174de8ae8b64c786a78359] in Consul. +2024-05-22 11:26:12.855 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-22 11:26:12.866 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-22 11:26:12.869 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-22 11:26:12.871 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-22 11:26:12.873 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-22 11:26:12.875 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-22 11:26:12.877 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-22 11:26:12.879 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-22 11:26:16.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:26:17.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:17.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:17.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 135.2673ms +2024-05-22 11:26:31.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:26:31.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:31.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:31.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 51.0053ms +2024-05-22 11:26:46.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:26:46.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:46.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:26:46.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4181ms +2024-05-22 11:27:01.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:27:01.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:01.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:01.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.4311ms +2024-05-22 11:27:16.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:27:16.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:16.953 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:16.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.9884ms +2024-05-22 11:27:31.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:27:31.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:31.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:31.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2096ms +2024-05-22 11:27:46.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:27:46.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:46.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:27:46.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8673ms +2024-05-22 11:28:01.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:28:01.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:01.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:01.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.826ms +2024-05-22 11:28:16.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:28:16.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:16.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:16.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.5679ms +2024-05-22 11:28:31.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:28:31.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:31.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:31.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4617ms +2024-05-22 11:28:46.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:28:46.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:46.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:28:46.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.4582ms +2024-05-22 11:29:01.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:29:01.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:01.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:01.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.6889ms +2024-05-22 11:29:16.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 11:29:16.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:16.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:16.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0129ms +2024-05-22 11:29:27.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:29:27.561 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:27.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:27.600 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:29:27.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 58.8925ms +2024-05-22 11:29:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:29:27.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:29:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.0578ms +2024-05-22 11:29:42.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:29:42.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:42.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:42.649 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:29:42.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.1345ms +2024-05-22 11:29:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:29:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:29:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:29:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.0933ms +2024-05-22 11:30:12.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:30:12.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:12.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:30:12.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.3191ms +2024-05-22 11:30:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:30:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:30:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0761ms +2024-05-22 11:30:42.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:30:42.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:42.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:42.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:30:42.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7501ms +2024-05-22 11:30:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:30:57.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:30:57.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:30:57.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.5492ms +2024-05-22 11:31:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:31:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:12.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:31:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.5083ms +2024-05-22 11:31:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:31:27.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:31:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.9278ms +2024-05-22 11:31:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:31:42.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:42.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:31:42.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.3232ms +2024-05-22 11:31:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:31:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:57.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:31:57.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:31:57.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.9857ms +2024-05-22 11:32:12.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:32:12.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:32:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1564ms +2024-05-22 11:32:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:32:27.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:27.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:32:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0954ms +2024-05-22 11:32:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:32:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:42.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:42.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:32:42.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.381ms +2024-05-22 11:32:57.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:32:57.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:57.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:32:57.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:32:57.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0683ms +2024-05-22 11:33:12.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:33:12.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:12.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:12.651 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:33:12.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.2611ms +2024-05-22 11:33:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:33:27.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:33:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1863ms +2024-05-22 11:33:42.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:33:42.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:42.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:33:42.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.2134ms +2024-05-22 11:33:57.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:33:57.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:57.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:33:57.648 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:33:57.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.1421ms +2024-05-22 11:34:12.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:34:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:12.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:34:12.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6988ms +2024-05-22 11:34:27.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:34:27.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:27.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:27.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:34:27.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3087ms +2024-05-22 11:34:42.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:34:42.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:42.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:42.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:34:42.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.1942ms +2024-05-22 11:34:57.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:34:57.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:57.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:34:57.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:34:57.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.8388ms +2024-05-22 11:35:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:35:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:35:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3507ms +2024-05-22 11:35:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:35:27.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:27.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:35:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3373ms +2024-05-22 11:35:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:35:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:42.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:42.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:35:42.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0072ms +2024-05-22 11:35:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:35:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:57.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:35:57.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:35:57.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.2296ms +2024-05-22 11:36:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:36:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:12.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:36:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.5749ms +2024-05-22 11:36:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:36:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:27.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:27.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:36:27.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.0428ms +2024-05-22 11:36:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:36:42.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:42.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:42.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:36:42.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.548ms +2024-05-22 11:36:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:36:57.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:57.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:36:57.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:36:57.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.0411ms +2024-05-22 11:37:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:37:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:12.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:37:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.7972ms +2024-05-22 11:37:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:37:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:37:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.8344ms +2024-05-22 11:37:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:37:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:37:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.5001ms +2024-05-22 11:37:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:37:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:37:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:37:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6287ms +2024-05-22 11:38:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:38:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:38:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.7702ms +2024-05-22 11:38:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:38:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:38:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.0912ms +2024-05-22 11:38:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:38:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:42.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:38:42.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.2442ms +2024-05-22 11:38:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:38:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:57.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:38:57.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:38:57.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.4779ms +2024-05-22 11:39:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:39:12.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:39:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9068ms +2024-05-22 11:39:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:39:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:27.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:39:27.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7283ms +2024-05-22 11:39:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:39:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:42.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:42.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:39:42.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.6364ms +2024-05-22 11:39:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:39:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:39:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:39:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.8905ms +2024-05-22 11:40:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:40:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:40:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6064ms +2024-05-22 11:40:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:40:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:27.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:27.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:40:27.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.9115ms +2024-05-22 11:40:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:40:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:40:42.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0012ms +2024-05-22 11:40:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:40:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:40:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:40:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.0516ms +2024-05-22 11:41:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:41:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:12.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:12.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:41:12.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9596ms +2024-05-22 11:41:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:41:27.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:27.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:41:27.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4734ms +2024-05-22 11:41:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:41:42.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:42.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:42.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:41:42.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1824ms +2024-05-22 11:41:57.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:41:57.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:41:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:41:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.1866ms +2024-05-22 11:42:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:42:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:42:12.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.198ms +2024-05-22 11:42:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:42:27.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:42:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6916ms +2024-05-22 11:42:42.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:42:42.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:42.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:42.651 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:42:42.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.642ms +2024-05-22 11:42:57.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:42:57.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:57.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:42:57.651 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:42:57.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.4032ms +2024-05-22 11:43:12.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:43:12.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:12.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:12.649 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:43:12.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.3267ms +2024-05-22 11:43:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:43:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:43:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.7959ms +2024-05-22 11:43:42.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:43:42.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:42.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:42.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:43:42.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.8116ms +2024-05-22 11:43:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:43:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:43:57.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:43:57.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.5213ms +2024-05-22 11:44:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:44:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:44:12.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.9351ms +2024-05-22 11:44:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:44:27.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:27.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:27.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:44:27.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1773ms +2024-05-22 11:44:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:44:42.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:42.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:44:42.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.5408ms +2024-05-22 11:44:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:44:57.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:44:57.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:44:57.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.3368ms +2024-05-22 11:45:12.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:45:12.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:12.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:12.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:45:12.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.2719ms +2024-05-22 11:45:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:45:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:45:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.3457ms +2024-05-22 11:45:42.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:45:42.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:42.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:42.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:45:42.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.1181ms +2024-05-22 11:45:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:45:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:57.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:45:57.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:45:57.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.8912ms +2024-05-22 11:46:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:46:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:12.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:46:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.2603ms +2024-05-22 11:46:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:46:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:27.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:46:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.175ms +2024-05-22 11:46:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:46:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:46:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.4321ms +2024-05-22 11:46:57.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:46:57.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:57.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:46:57.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:46:57.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1686ms +2024-05-22 11:47:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:47:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:12.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:47:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.9974ms +2024-05-22 11:47:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:47:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:47:27.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9137ms +2024-05-22 11:47:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:47:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:47:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1831ms +2024-05-22 11:47:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:47:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:47:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:47:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1398ms +2024-05-22 11:48:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:48:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:12.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:48:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6961ms +2024-05-22 11:48:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:48:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:27.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:48:27.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.5699ms +2024-05-22 11:48:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:48:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:42.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:48:42.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6621ms +2024-05-22 11:48:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:48:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:57.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:48:57.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:48:57.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.9766ms +2024-05-22 11:49:12.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:49:12.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:12.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:12.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:49:12.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.9348ms +2024-05-22 11:49:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:49:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:27.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:27.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:49:27.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.8136ms +2024-05-22 11:49:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:49:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:42.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:42.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:49:42.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.9653ms +2024-05-22 11:49:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:49:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:57.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:49:57.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:49:57.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0107ms +2024-05-22 11:50:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:50:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:12.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:50:12.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6929ms +2024-05-22 11:50:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:50:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:50:27.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7781ms +2024-05-22 11:50:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:50:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:50:42.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7629ms +2024-05-22 11:50:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:50:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:50:57.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:50:57.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0881ms +2024-05-22 11:51:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:51:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:12.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:51:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.1138ms +2024-05-22 11:51:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:51:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:27.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:27.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:51:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.981ms +2024-05-22 11:51:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:51:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:42.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:51:42.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.6872ms +2024-05-22 11:51:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:51:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:51:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:51:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.1892ms +2024-05-22 11:52:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:52:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:12.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:12.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:52:12.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.7355ms +2024-05-22 11:52:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:52:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:52:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.5608ms +2024-05-22 11:52:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:52:42.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:42.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:42.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:52:42.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6028ms +2024-05-22 11:52:57.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:52:57.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:52:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:52:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.9101ms +2024-05-22 11:53:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:53:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:12.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:53:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.7497ms +2024-05-22 11:53:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:53:27.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:27.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:27.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:53:27.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.0357ms +2024-05-22 11:53:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:53:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:42.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:53:42.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.9695ms +2024-05-22 11:53:57.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:53:57.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:53:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:53:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.8547ms +2024-05-22 11:54:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:54:12.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:12.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:54:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.0967ms +2024-05-22 11:54:27.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:54:27.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:27.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:27.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:54:27.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.9853ms +2024-05-22 11:54:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:54:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:54:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.1111ms +2024-05-22 11:54:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:54:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:57.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:54:57.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:54:57.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.3758ms +2024-05-22 11:55:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:55:12.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:55:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.4182ms +2024-05-22 11:55:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:55:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:55:27.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.718ms +2024-05-22 11:55:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:55:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:55:42.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.237ms +2024-05-22 11:55:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:55:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:55:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:55:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.9116ms +2024-05-22 11:56:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:56:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:13.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:13.135 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:56:13.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 511.1621ms +2024-05-22 11:56:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:56:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:56:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.2415ms +2024-05-22 11:56:42.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:56:42.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:42.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:56:42.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.3366ms +2024-05-22 11:56:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:56:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:56:57.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:56:57.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.3874ms +2024-05-22 11:57:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:57:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:12.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:57:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.6435ms +2024-05-22 11:57:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:57:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:27.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:57:27.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.0445ms +2024-05-22 11:57:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:57:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:57:42.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9477ms +2024-05-22 11:57:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:57:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:57.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:57:57.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:57:57.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.9572ms +2024-05-22 11:58:12.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:58:12.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:12.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:12.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:58:12.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.0518ms +2024-05-22 11:58:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:58:27.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:27.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:27.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:58:27.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.6149ms +2024-05-22 11:58:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:58:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:58:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.0923ms +2024-05-22 11:58:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:58:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:58:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:58:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.3458ms +2024-05-22 11:59:12.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:59:12.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:59:12.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.4376ms +2024-05-22 11:59:27.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:59:27.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:27.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:27.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:59:27.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.75ms +2024-05-22 11:59:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:59:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:42.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:59:42.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.2151ms +2024-05-22 11:59:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 11:59:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 11:59:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 11:59:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.7952ms +2024-05-22 12:00:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:00:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:12.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:12.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:00:12.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.5425ms +2024-05-22 12:00:27.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:00:27.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:27.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:27.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:00:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9313ms +2024-05-22 12:00:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:00:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:42.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:42.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:00:42.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.469ms +2024-05-22 12:00:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:00:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:00:57.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:00:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8043ms +2024-05-22 12:01:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:01:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:01:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.4314ms +2024-05-22 12:01:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:01:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:01:27.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6689ms +2024-05-22 12:01:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:01:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:42.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:42.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:01:42.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.3764ms +2024-05-22 12:01:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:01:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:01:57.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:01:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.2619ms +2024-05-22 12:02:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:02:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:12.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:02:12.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.3462ms +2024-05-22 12:02:27.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:02:27.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:27.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:27.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:02:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.9749ms +2024-05-22 12:02:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:02:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:42.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:02:42.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.4471ms +2024-05-22 12:02:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:02:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:57.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:02:57.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:02:57.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 38.076ms +2024-05-22 12:03:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:03:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:12.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:12.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:03:12.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.9554ms +2024-05-22 12:03:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:03:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:03:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.0026ms +2024-05-22 12:03:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:03:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:03:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.3624ms +2024-05-22 12:03:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:03:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:03:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:03:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1825ms +2024-05-22 12:04:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:04:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:04:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.8903ms +2024-05-22 12:04:27.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:04:27.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:27.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:27.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:04:27.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.3417ms +2024-05-22 12:04:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:04:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:42.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:42.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:04:42.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.725ms +2024-05-22 12:04:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:04:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:04:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:04:57.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.7866ms +2024-05-22 12:05:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:05:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:05:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.86ms +2024-05-22 12:05:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:05:27.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:27.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:27.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:05:27.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.747ms +2024-05-22 12:05:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:05:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:05:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.3402ms +2024-05-22 12:05:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:05:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:05:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:05:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.3334ms +2024-05-22 12:06:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:06:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:12.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:06:12.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.4485ms +2024-05-22 12:06:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:06:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:06:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.347ms +2024-05-22 12:06:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:06:42.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:06:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.6107ms +2024-05-22 12:06:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:06:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:06:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:06:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.468ms +2024-05-22 12:07:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:07:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:12.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:07:12.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.4853ms +2024-05-22 12:07:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:07:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:07:27.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.3972ms +2024-05-22 12:07:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:07:42.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:42.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:42.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:07:42.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 26.6881ms +2024-05-22 12:07:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:07:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:07:57.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:07:57.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.0208ms +2024-05-22 12:08:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:08:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:12.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:08:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.0988ms +2024-05-22 12:08:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:08:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:08:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.668ms +2024-05-22 12:08:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:08:42.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:08:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.7692ms +2024-05-22 12:08:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:08:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:57.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:08:57.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:08:57.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.8436ms +2024-05-22 12:09:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:09:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:09:12.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.2545ms +2024-05-22 12:09:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:09:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:27.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:09:27.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6095ms +2024-05-22 12:09:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:09:42.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:09:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.5579ms +2024-05-22 12:09:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:09:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:09:57.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:09:57.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.8506ms +2024-05-22 12:10:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:10:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:12.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:10:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.8803ms +2024-05-22 12:10:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:10:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:10:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.5459ms +2024-05-22 12:10:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:10:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:10:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8907ms +2024-05-22 12:10:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:10:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:10:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:10:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.3486ms +2024-05-22 12:11:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:11:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:11:12.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.4672ms +2024-05-22 12:11:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:11:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:11:27.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.2278ms +2024-05-22 12:11:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:11:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:42.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:11:42.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.8344ms +2024-05-22 12:11:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:11:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:57.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:11:57.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:11:57.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.6035ms +2024-05-22 12:12:12.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:12:12.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:12.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:12:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.2427ms +2024-05-22 12:12:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:12:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:12:27.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6016ms +2024-05-22 12:12:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:12:42.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:42.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:12:42.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.767ms +2024-05-22 12:12:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:12:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:57.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:12:57.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:12:57.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.9547ms +2024-05-22 12:13:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:13:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:12.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:13:12.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.1228ms +2024-05-22 12:13:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:13:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:13:27.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6361ms +2024-05-22 12:13:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:13:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:42.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:42.668 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:13:42.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 42.5961ms +2024-05-22 12:13:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:13:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:13:57.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:13:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.2194ms +2024-05-22 12:14:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:14:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:14:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.1654ms +2024-05-22 12:14:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:14:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:27.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:27.651 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:14:27.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 26.9752ms +2024-05-22 12:14:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:14:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:42.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:14:42.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6666ms +2024-05-22 12:14:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:14:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:14:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:14:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.9529ms +2024-05-22 12:15:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:15:12.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:12.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:15:12.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.6446ms +2024-05-22 12:15:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:15:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:15:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.8293ms +2024-05-22 12:15:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:15:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:42.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:42.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:15:42.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.5794ms +2024-05-22 12:15:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:15:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:15:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:15:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.8738ms +2024-05-22 12:16:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:16:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:12.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:16:12.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.0112ms +2024-05-22 12:16:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:16:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:27.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:27.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:16:27.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.4819ms +2024-05-22 12:16:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:16:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:42.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:42.664 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:16:42.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 39.0791ms +2024-05-22 12:16:57.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:16:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:16:57.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:16:57.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.492ms +2024-05-22 12:17:12.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:17:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:12.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:17:12.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.1589ms +2024-05-22 12:17:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:17:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:17:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.1555ms +2024-05-22 12:17:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:17:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:17:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.0921ms +2024-05-22 12:17:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:17:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:57.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:17:57.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:17:57.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.5775ms +2024-05-22 12:18:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:18:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:12.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:18:12.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.383ms +2024-05-22 12:18:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:18:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:27.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:18:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.318ms +2024-05-22 12:18:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:18:42.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:42.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:18:42.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6835ms +2024-05-22 12:18:57.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:18:57.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:18:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:18:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.3055ms +2024-05-22 12:19:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:19:12.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:12.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:19:12.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.585ms +2024-05-22 12:19:27.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:19:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:19:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0412ms +2024-05-22 12:19:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:19:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:42.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:42.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:19:42.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.921ms +2024-05-22 12:19:57.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:19:57.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:57.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:19:57.648 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:19:57.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.252ms +2024-05-22 12:20:12.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:20:12.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:12.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:20:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.9182ms +2024-05-22 12:20:27.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:20:27.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:20:27.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.7686ms +2024-05-22 12:20:42.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:20:42.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:42.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:42.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:20:42.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 47.4027ms +2024-05-22 12:20:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:20:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:57.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:20:57.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:20:57.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.1998ms +2024-05-22 12:21:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:21:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:12.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:12.655 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:21:12.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.9021ms +2024-05-22 12:21:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:21:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:27.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:27.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:21:27.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.0499ms +2024-05-22 12:21:42.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:21:42.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:42.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:42.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:21:42.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.1648ms +2024-05-22 12:21:57.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:21:57.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:21:57.654 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:21:57.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.0078ms +2024-05-22 12:22:12.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:22:12.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:12.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:22:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.3712ms +2024-05-22 12:22:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:22:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:27.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:27.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:22:27.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 27.4829ms +2024-05-22 12:22:42.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:22:42.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:42.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:42.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:22:42.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.1668ms +2024-05-22 12:22:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:22:57.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:22:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:22:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.4887ms +2024-05-22 12:23:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:23:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:12.660 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:23:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0665ms +2024-05-22 12:23:27.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:23:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:27.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:27.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:23:27.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 37.5526ms +2024-05-22 12:23:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:23:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:42.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:42.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:23:42.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.9659ms +2024-05-22 12:23:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:23:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:57.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:23:57.663 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:23:57.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 36.5535ms +2024-05-22 12:24:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:24:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:12.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:12.661 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:24:12.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 34.6484ms +2024-05-22 12:24:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:24:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:27.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:27.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:24:27.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.9796ms +2024-05-22 12:24:42.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:24:42.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:42.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:24:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.1315ms +2024-05-22 12:24:57.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:24:57.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:57.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:24:57.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:24:57.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.2369ms +2024-05-22 12:25:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:25:12.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:12.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:12.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:25:12.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.1246ms +2024-05-22 12:25:27.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:25:27.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:27.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:27.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:25:27.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.918ms +2024-05-22 12:25:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:25:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:42.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:42.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:25:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 31.3704ms +2024-05-22 12:25:57.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:25:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:25:57.656 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:25:57.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.6201ms +2024-05-22 12:26:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:26:12.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:13.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:13.247 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:26:13.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 619.8409ms +2024-05-22 12:26:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:26:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:26:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.6867ms +2024-05-22 12:26:42.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:26:42.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:26:42.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.153ms +2024-05-22 12:26:57.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:26:57.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:57.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:26:57.653 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:26:57.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 29.6092ms +2024-05-22 12:27:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:27:12.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:12.652 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:27:12.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 28.5229ms +2024-05-22 12:27:27.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:27:27.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:27.659 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:27:27.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.8726ms +2024-05-22 12:27:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:27:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:42.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:42.669 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:27:42.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 44.7465ms +2024-05-22 12:27:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:27:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:57.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:27:57.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:27:57.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 33.7015ms +2024-05-22 12:28:12.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:28:12.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:12.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:12.650 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:28:12.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 26.6707ms +2024-05-22 12:28:27.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:28:27.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:27.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:27.658 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:28:27.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 30.6983ms +2024-05-22 12:28:42.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:28:42.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:42.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:42.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:28:42.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.6596ms +2024-05-22 12:28:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:28:57.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:57.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:28:57.657 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:28:57.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 32.5496ms +2024-05-22 12:29:12.629 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 12:29:12.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:29:12.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 12:29:12.662 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-22 12:29:12.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 400 null application/json 35.0052ms +2024-05-22 20:37:59.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:37:59.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:37:59.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:37:59.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 51.0532ms +2024-05-22 20:37:59.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:37:59.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:37:59.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:37:59.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.2653ms +2024-05-22 20:38:14.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:38:14.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:14.751 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:14.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8348ms +2024-05-22 20:38:29.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:38:29.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:29.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:29.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9566ms +2024-05-22 20:38:44.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:38:44.722 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:44.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:44.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.4926ms +2024-05-22 20:38:59.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:38:59.724 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:59.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:38:59.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.449ms +2024-05-22 20:39:14.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:39:14.724 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:14.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:14.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0446ms +2024-05-22 20:39:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:39:29.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:29.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:29.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.3425ms +2024-05-22 20:39:44.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:39:44.722 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:44.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:44.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.3636ms +2024-05-22 20:39:59.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:39:59.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:59.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:39:59.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1473ms +2024-05-22 20:40:14.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:40:14.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:14.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:14.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.9648ms +2024-05-22 20:40:29.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:40:29.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:29.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:29.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.7371ms +2024-05-22 20:40:44.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:40:44.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:44.751 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:44.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0719ms +2024-05-22 20:40:59.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:40:59.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:59.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:40:59.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3718ms +2024-05-22 20:41:14.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:41:14.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:14.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:14.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.3005ms +2024-05-22 20:41:29.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:41:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:29.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:29.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3324ms +2024-05-22 20:41:44.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:41:44.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:44.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:44.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5052ms +2024-05-22 20:41:59.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:41:59.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:59.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:41:59.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.0128ms +2024-05-22 20:42:14.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:42:14.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:14.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:14.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8401ms +2024-05-22 20:42:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:42:29.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:29.752 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:29.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.0683ms +2024-05-22 20:42:44.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:42:44.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:44.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:44.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.5554ms +2024-05-22 20:42:59.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:42:59.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:59.752 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:42:59.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5328ms +2024-05-22 20:43:14.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:43:14.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:14.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:14.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 54.2327ms +2024-05-22 20:43:29.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:43:29.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:29.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:29.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3269ms +2024-05-22 20:43:44.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:43:44.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:44.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:44.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1128ms +2024-05-22 20:43:59.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:43:59.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:59.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:43:59.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9859ms +2024-05-22 20:44:14.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:44:14.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:14.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:14.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.2072ms +2024-05-22 20:44:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:44:29.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:29.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:29.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.5289ms +2024-05-22 20:44:44.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:44:44.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:44.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:44.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.1971ms +2024-05-22 20:44:59.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:44:59.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:59.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:44:59.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6836ms +2024-05-22 20:45:14.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:45:14.724 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:14.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:14.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.6246ms +2024-05-22 20:45:29.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:45:29.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:29.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:29.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9424ms +2024-05-22 20:45:44.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:45:44.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:44.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:45:44.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8196ms +2024-05-22 20:46:02.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:46:02.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:02.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:02.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.9431ms +2024-05-22 20:46:20.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:46:20.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:20.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:20.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 53.7296ms +2024-05-22 20:46:20.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:46:20.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:21.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:21.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0729ms +2024-05-22 20:46:35.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:46:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:36.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:36.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1478ms +2024-05-22 20:46:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:46:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:51.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:46:51.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.6796ms +2024-05-22 20:47:05.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:47:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:06.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:06.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.4642ms +2024-05-22 20:47:20.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:47:20.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:21.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:21.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.2499ms +2024-05-22 20:47:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:47:35.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:36.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:36.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8007ms +2024-05-22 20:47:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:47:50.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:51.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:47:51.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0238ms +2024-05-22 20:48:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:48:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:06.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:06.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3979ms +2024-05-22 20:48:20.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:48:20.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:21.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:21.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.1234ms +2024-05-22 20:48:35.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:48:35.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:36.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:36.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.8685ms +2024-05-22 20:48:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:48:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:51.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:48:51.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.3477ms +2024-05-22 20:49:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:49:05.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:06.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:06.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0181ms +2024-05-22 20:49:20.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:49:20.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:21.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:21.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.706ms +2024-05-22 20:49:35.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:49:35.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:36.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:36.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9782ms +2024-05-22 20:49:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:49:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:49:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6403ms +2024-05-22 20:50:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:50:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:06.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:06.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.6544ms +2024-05-22 20:50:20.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:50:20.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:21.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:21.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6886ms +2024-05-22 20:50:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:50:35.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:36.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:36.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.3891ms +2024-05-22 20:50:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:50:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:50:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1334ms +2024-05-22 20:51:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:51:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:06.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1848ms +2024-05-22 20:51:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:51:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:21.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:21.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.1866ms +2024-05-22 20:51:35.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:51:35.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:36.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:36.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1096ms +2024-05-22 20:51:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:51:50.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:51.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:51:51.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7968ms +2024-05-22 20:52:05.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:52:05.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:06.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:06.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.6093ms +2024-05-22 20:52:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:52:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:21.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:21.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5214ms +2024-05-22 20:52:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:52:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:36.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:36.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5945ms +2024-05-22 20:52:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:52:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:51.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:52:51.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.652ms +2024-05-22 20:53:05.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:53:05.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:06.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:06.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9608ms +2024-05-22 20:53:20.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:53:20.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:21.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:21.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.8848ms +2024-05-22 20:53:35.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:53:35.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:36.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:36.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0522ms +2024-05-22 20:53:50.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:53:50.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:51.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:53:51.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.3608ms +2024-05-22 20:54:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:54:05.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:06.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:06.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8506ms +2024-05-22 20:54:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:54:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:21.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:21.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5244ms +2024-05-22 20:54:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:54:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:36.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:36.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0986ms +2024-05-22 20:54:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:54:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:54:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5852ms +2024-05-22 20:55:05.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:55:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:06.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:06.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.8372ms +2024-05-22 20:55:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:55:20.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:21.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:21.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7854ms +2024-05-22 20:55:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:55:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:36.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:36.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.295ms +2024-05-22 20:55:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:55:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:55:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9411ms +2024-05-22 20:56:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:56:05.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:06.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:06.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.7044ms +2024-05-22 20:56:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:56:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:21.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:21.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5473ms +2024-05-22 20:56:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:56:35.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:36.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:36.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.718ms +2024-05-22 20:56:50.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:56:50.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:51.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:56:51.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8297ms +2024-05-22 20:57:05.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:57:05.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:06.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:06.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9783ms +2024-05-22 20:57:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:57:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:21.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:21.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.7193ms +2024-05-22 20:57:35.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:57:35.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:36.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:36.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8834ms +2024-05-22 20:57:50.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:57:50.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:51.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:57:51.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.2396ms +2024-05-22 20:58:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:58:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:06.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5017ms +2024-05-22 20:58:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:58:20.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:21.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:21.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.5356ms +2024-05-22 20:58:35.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:58:35.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:36.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:36.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.0723ms +2024-05-22 20:58:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:58:50.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:51.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:58:51.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.6534ms +2024-05-22 20:59:05.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:59:05.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:06.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:06.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7887ms +2024-05-22 20:59:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:59:20.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:21.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:21.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.0444ms +2024-05-22 20:59:35.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:59:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:36.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:36.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0584ms +2024-05-22 20:59:50.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 20:59:50.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 20:59:51.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9291ms +2024-05-22 21:00:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:00:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:06.034 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:06.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 56.5618ms +2024-05-22 21:00:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:00:20.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:21.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:21.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.3057ms +2024-05-22 21:00:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:00:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:36.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:36.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0955ms +2024-05-22 21:00:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:00:50.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:00:51.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.8691ms +2024-05-22 21:01:05.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:01:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:06.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:06.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.964ms +2024-05-22 21:01:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:01:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:21.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:21.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6103ms +2024-05-22 21:01:35.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:01:35.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:36.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:36.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.884ms +2024-05-22 21:01:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:01:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:51.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:01:51.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.8897ms +2024-05-22 21:02:05.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:02:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:06.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:06.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.446ms +2024-05-22 21:02:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:02:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:21.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:21.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.9497ms +2024-05-22 21:02:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:02:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:36.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:36.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.8709ms +2024-05-22 21:02:50.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:02:50.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:02:51.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5386ms +2024-05-22 21:03:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:03:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:06.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:06.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.7782ms +2024-05-22 21:03:20.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:03:20.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:20.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:21.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 26.6896ms +2024-05-22 21:03:35.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:03:35.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:36.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:36.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.1848ms +2024-05-22 21:03:50.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:03:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:51.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:03:51.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3504ms +2024-05-22 21:04:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:04:05.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:06.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.6025ms +2024-05-22 21:04:20.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:04:20.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:21.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:21.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9526ms +2024-05-22 21:04:35.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:04:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:36.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:36.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.3969ms +2024-05-22 21:04:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:04:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:51.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:04:51.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.955ms +2024-05-22 21:05:05.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:05:05.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:06.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:06.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.0806ms +2024-05-22 21:05:20.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:05:20.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:21.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:21.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.6879ms +2024-05-22 21:05:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:05:35.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:36.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:36.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8315ms +2024-05-22 21:05:50.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:05:50.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:51.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:05:51.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7125ms +2024-05-22 21:06:05.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:06:05.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:06.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:06.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.2916ms +2024-05-22 21:06:20.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:06:20.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:21.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:21.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.8064ms +2024-05-22 21:06:35.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:06:35.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:36.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:36.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1042ms +2024-05-22 21:06:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:06:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:06:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3488ms +2024-05-22 21:07:05.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:07:05.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:06.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:06.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4894ms +2024-05-22 21:07:21.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:07:21.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:21.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:21.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.5543ms +2024-05-22 21:07:35.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:07:35.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:36.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:36.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5368ms +2024-05-22 21:07:50.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:07:50.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:51.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:07:51.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9391ms +2024-05-22 21:08:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:08:05.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:06.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:06.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.787ms +2024-05-22 21:08:20.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:08:20.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:21.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:21.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3604ms +2024-05-22 21:08:35.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:08:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:36.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:36.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7561ms +2024-05-22 21:08:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:08:50.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:51.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:08:51.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.1464ms +2024-05-22 21:09:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:09:05.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:06.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:06.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.0289ms +2024-05-22 21:09:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:09:20.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:21.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:21.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.4166ms +2024-05-22 21:09:35.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:09:35.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:36.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:36.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7916ms +2024-05-22 21:09:50.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:09:50.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:51.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:09:51.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.3293ms +2024-05-22 21:10:05.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:10:05.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:06.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:06.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.603ms +2024-05-22 21:10:20.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:10:20.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:21.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:21.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1859ms +2024-05-22 21:10:35.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:10:35.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:36.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:36.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.5668ms +2024-05-22 21:10:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:10:50.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:51.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:10:51.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7758ms +2024-05-22 21:11:05.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:11:05.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:06.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:06.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.0192ms +2024-05-22 21:11:20.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:11:20.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:21.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:21.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8762ms +2024-05-22 21:11:35.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:11:35.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:36.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:36.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.878ms +2024-05-22 21:11:50.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:11:50.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:51.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:11:51.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7152ms +2024-05-22 21:12:05.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:12:05.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:06.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.7564ms +2024-05-22 21:12:20.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:12:20.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:21.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:21.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1662ms +2024-05-22 21:12:35.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:12:35.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:36.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:36.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.7222ms +2024-05-22 21:12:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:12:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:51.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:12:51.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.592ms +2024-05-22 21:13:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:13:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:06.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:06.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.202ms +2024-05-22 21:13:20.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:13:20.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:21.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:21.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.942ms +2024-05-22 21:13:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:13:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:36.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:36.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.8055ms +2024-05-22 21:13:50.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:13:50.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:51.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:13:51.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.549ms +2024-05-22 21:14:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:14:05.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:06.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5704ms +2024-05-22 21:14:20.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:14:20.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:21.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:21.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.9086ms +2024-05-22 21:14:35.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:14:35.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:36.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:36.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.3554ms +2024-05-22 21:14:50.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:14:50.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:51.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:14:51.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2075ms +2024-05-22 21:15:05.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:15:05.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:06.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:06.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.4555ms +2024-05-22 21:15:20.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:15:20.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:21.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:21.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9407ms +2024-05-22 21:15:35.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:15:35.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:36.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:36.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.1055ms +2024-05-22 21:15:50.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:15:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:51.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:15:51.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4947ms +2024-05-22 21:16:05.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:16:05.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:06.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:06.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.457ms +2024-05-22 21:16:20.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:16:20.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:21.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:21.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.0527ms +2024-05-22 21:16:35.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:16:35.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:36.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:36.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0362ms +2024-05-22 21:16:50.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:16:50.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:16:51.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.8838ms +2024-05-22 21:17:05.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:17:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:06.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:06.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2137ms +2024-05-22 21:17:20.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:17:20.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:21.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:21.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.1245ms +2024-05-22 21:17:35.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:17:35.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:36.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:36.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.8829ms +2024-05-22 21:17:50.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:17:50.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:51.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:17:51.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.9286ms +2024-05-22 21:18:05.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:18:05.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:06.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:06.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5412ms +2024-05-22 21:18:20.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:18:20.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:21.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:21.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.062ms +2024-05-22 21:18:35.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:18:35.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:36.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:36.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.4017ms +2024-05-22 21:18:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:18:50.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:51.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:18:51.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.9624ms +2024-05-22 21:19:05.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:19:05.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:06.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:06.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2177ms +2024-05-22 21:19:20.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:19:20.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:21.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:21.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5257ms +2024-05-22 21:19:35.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:19:35.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:36.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:36.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.8158ms +2024-05-22 21:19:50.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:19:50.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:51.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:19:51.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.281ms +2024-05-22 21:20:05.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:20:05.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:06.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:06.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.2477ms +2024-05-22 21:20:20.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:20:20.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:21.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:21.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.1586ms +2024-05-22 21:20:35.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:20:35.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:36.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:36.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.8167ms +2024-05-22 21:20:50.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:20:50.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:51.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:20:51.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.7388ms +2024-05-22 21:21:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:21:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:06.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:06.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.3327ms +2024-05-22 21:21:20.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:21:20.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:21.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:21.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.7892ms +2024-05-22 21:21:35.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:21:35.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:36.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:36.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.4582ms +2024-05-22 21:21:50.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:21:50.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:51.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:21:51.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.7531ms +2024-05-22 21:22:05.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:22:05.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:06.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:06.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.5994ms +2024-05-22 21:22:20.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:22:20.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:21.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:21.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.8911ms +2024-05-22 21:22:35.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:22:35.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:36.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:36.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7129ms +2024-05-22 21:22:50.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:22:50.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:51.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:22:51.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.619ms +2024-05-22 21:23:05.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:05.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:06.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:06.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.3212ms +2024-05-22 21:23:20.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:20.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:21.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:21.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.785ms +2024-05-22 21:23:34.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:34.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:34.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:34.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.5275ms +2024-05-22 21:23:35.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:35.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:36.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:36.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0694ms +2024-05-22 21:23:38.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:38.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:38.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:38.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.7224ms +2024-05-22 21:23:41.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:41.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:41.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:41.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5325ms +2024-05-22 21:23:41.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:41.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:41.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:41.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.0468ms +2024-05-22 21:23:50.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:50.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:51.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:51.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.0292ms +2024-05-22 21:23:56.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 21:23:56.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:56.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:23:56.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.3812ms +2024-05-22 21:24:08.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:24:08.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:23.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:23.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14440.1936ms +2024-05-22 21:24:32.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:24:32.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:33.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:24:33.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:46.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:46.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14398.9596ms +2024-05-22 21:24:47.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:24:47.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14798.8144ms +2024-05-22 21:24:52.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:24:52.110 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:03.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:25:03.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:06.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:06.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14400.4968ms +2024-05-22 21:25:17.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:17.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14385.2619ms +2024-05-22 21:25:18.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:25:18.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:32.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:32.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13843.6651ms +2024-05-22 21:25:33.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:25:33.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:48.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:25:48.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:48.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:25:48.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 15087.8755ms +2024-05-22 21:26:02.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:02.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14600.3045ms +2024-05-22 21:26:03.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:26:03.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:18.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:18.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14832.9985ms +2024-05-22 21:26:18.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:26:18.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:32.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:32.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14061.0374ms +2024-05-22 21:26:33.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:26:33.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:47.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:26:47.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14486.2364ms +2024-05-22 21:26:48.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:26:48.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:02.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14273.8909ms +2024-05-22 21:27:03.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:27:03.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:17.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:17.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14127.3849ms +2024-05-22 21:27:18.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:27:18.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:32.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:32.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14096.4323ms +2024-05-22 21:27:33.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:27:33.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:47.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:27:47.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14376.3259ms +2024-05-22 21:27:48.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:27:48.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:02.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:02.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14401.7965ms +2024-05-22 21:28:03.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:28:03.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:17.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:17.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14289.2927ms +2024-05-22 21:28:18.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:28:18.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:32.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:32.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14256.6176ms +2024-05-22 21:28:33.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:28:33.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:47.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:28:47.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14324.2511ms +2024-05-22 21:28:48.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:28:48.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:02.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:02.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14048.6596ms +2024-05-22 21:29:03.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:29:03.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:17.416 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:17.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14029.892ms +2024-05-22 21:29:18.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:29:18.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:32.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:32.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14224.2763ms +2024-05-22 21:29:33.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:29:33.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:47.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:29:47.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14172.0101ms +2024-05-22 21:29:48.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:29:48.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:03.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:03.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14619.1954ms +2024-05-22 21:30:03.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:30:03.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:17.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:17.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14446.0075ms +2024-05-22 21:30:18.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:30:18.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:32.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:32.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13762.2546ms +2024-05-22 21:30:33.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:30:33.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:47.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:30:47.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14003.312ms +2024-05-22 21:30:48.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:30:48.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:02.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:02.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 13937.6815ms +2024-05-22 21:31:03.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:31:03.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:17.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:17.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14473.3361ms +2024-05-22 21:31:18.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:31:18.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:33.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:31:33.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:33.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:33.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 15247.9997ms +2024-05-22 21:31:47.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:31:47.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 14532.5449ms +2024-05-22 21:31:48.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:31:48.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:06.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:06.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17710.8357ms +2024-05-22 21:32:10.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:32:10.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:18.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:32:18.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:27.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:27.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17849.4419ms +2024-05-22 21:32:33.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:32:33.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:36.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:36.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18110.3247ms +2024-05-22 21:32:48.432 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:32:48.433 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:51.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:32:51.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18085.2461ms +2024-05-22 21:33:03.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:33:03.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:06.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:06.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18107.8854ms +2024-05-22 21:33:18.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:33:18.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:20.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:20.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16901.717ms +2024-05-22 21:33:33.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:33:33.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:35.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:35.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17380.8707ms +2024-05-22 21:33:48.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:33:48.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:50.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:33:50.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16912.1208ms +2024-05-22 21:34:03.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:34:03.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:05.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:05.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16855.5401ms +2024-05-22 21:34:18.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:34:18.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:20.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:20.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16736.8459ms +2024-05-22 21:34:33.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:34:33.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:35.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:35.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17117.9121ms +2024-05-22 21:34:48.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:34:48.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:51.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:34:51.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17619.1291ms +2024-05-22 21:35:03.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:35:03.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:05.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:05.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17175.8931ms +2024-05-22 21:35:18.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:35:18.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:20.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:20.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17237.2735ms +2024-05-22 21:35:33.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:35:33.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:35.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:35.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16943.7775ms +2024-05-22 21:35:48.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:35:48.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:50.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:35:50.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17134.5819ms +2024-05-22 21:36:03.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:36:03.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:05.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:05.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16636.2039ms +2024-05-22 21:36:18.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:36:18.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:20.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:20.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16856.0148ms +2024-05-22 21:36:33.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:36:33.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:35.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:35.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17348.618ms +2024-05-22 21:36:48.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:36:48.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:50.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:36:50.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16663.4626ms +2024-05-22 21:37:03.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:37:03.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:05.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:05.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17053.8553ms +2024-05-22 21:37:18.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:37:18.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:20.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:20.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16836.5244ms +2024-05-22 21:37:33.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:37:33.392 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:35.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:35.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16872.4819ms +2024-05-22 21:37:48.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:37:48.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:50.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:37:50.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16704.2405ms +2024-05-22 21:38:03.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:38:03.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:05.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:05.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16993.3041ms +2024-05-22 21:38:18.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:38:18.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:20.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:20.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17028.8356ms +2024-05-22 21:38:33.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:38:33.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:35.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:35.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16965.8283ms +2024-05-22 21:38:48.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:38:48.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:50.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:38:50.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16792.5526ms +2024-05-22 21:39:03.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:39:03.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:05.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:05.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16760.5385ms +2024-05-22 21:39:18.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:39:18.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:19.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:19.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16557.3697ms +2024-05-22 21:39:33.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:39:33.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:35.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:35.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16765.2131ms +2024-05-22 21:39:48.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:39:48.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:50.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:39:50.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16807.0995ms +2024-05-22 21:40:03.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:40:03.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:05.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:05.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16865.5721ms +2024-05-22 21:40:18.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:40:18.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:20.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:20.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17157.6819ms +2024-05-22 21:40:33.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:40:33.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:35.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:35.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17054.6061ms +2024-05-22 21:40:48.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:40:48.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:50.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:40:50.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16654.6055ms +2024-05-22 21:41:03.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:41:03.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:05.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:05.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17046.2366ms +2024-05-22 21:41:18.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:41:18.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:20.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:20.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17063.5089ms +2024-05-22 21:41:33.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:41:33.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:35.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:35.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16912.6726ms +2024-05-22 21:41:48.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:41:48.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:50.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:41:50.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16695.8632ms +2024-05-22 21:42:03.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:42:03.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:05.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:05.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17074.0129ms +2024-05-22 21:42:18.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:42:18.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:20.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:20.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16847.5781ms +2024-05-22 21:42:33.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:42:33.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:35.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:35.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17464.8596ms +2024-05-22 21:42:48.391 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:42:48.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:50.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:42:50.405 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17019.1683ms +2024-05-22 21:43:03.386 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:43:03.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:05.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:05.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17159.3326ms +2024-05-22 21:43:18.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:43:18.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:20.645 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:20.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17259.4921ms +2024-05-22 21:43:33.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:43:33.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:35.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:35.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17200.4708ms +2024-05-22 21:43:48.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:43:48.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:50.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:43:50.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17533.0699ms +2024-05-22 21:44:03.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:44:03.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:05.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:05.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17165.0354ms +2024-05-22 21:44:18.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:44:18.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:21.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:21.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17656.8191ms +2024-05-22 21:44:33.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:44:33.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:36.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:36.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18163.6938ms +2024-05-22 21:44:51.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:44:51.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18484.5578ms +2024-05-22 21:44:59.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:44:59.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:16.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:16.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17063.9963ms +2024-05-22 21:45:19.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:45:19.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:31.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:45:31.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:37.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:37.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17555.1415ms +2024-05-22 21:45:46.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:45:46.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:49.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:45:49.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17866.1971ms +2024-05-22 21:46:01.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:46:01.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:04.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:04.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17781.4396ms +2024-05-22 21:46:19.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:19.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17319.4602ms +2024-05-22 21:46:19.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:46:19.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:23.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:46:23.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:36.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:36.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16860.3395ms +2024-05-22 21:46:40.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:40.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16672.6535ms +2024-05-22 21:46:44.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:46:44.231 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:46:55.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:46:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:01.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:01.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17055.9951ms +2024-05-22 21:47:10.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:47:10.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:12.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:12.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16938.9329ms +2024-05-22 21:47:25.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:47:25.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:28.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:28.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17164.5517ms +2024-05-22 21:47:40.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:47:40.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:43.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:43.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17196.4932ms +2024-05-22 21:47:55.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:47:55.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:57.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:47:57.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16719.4466ms +2024-05-22 21:48:10.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:48:10.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:13.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:13.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17072.5739ms +2024-05-22 21:48:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:48:25.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:27.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:27.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16593.2294ms +2024-05-22 21:48:40.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:48:40.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:42.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:42.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16859.6867ms +2024-05-22 21:48:55.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:48:55.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:57.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:48:57.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16966.5744ms +2024-05-22 21:49:10.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:49:10.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:12.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:12.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16999.0829ms +2024-05-22 21:49:25.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:49:25.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:27.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:27.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16787.991ms +2024-05-22 21:49:40.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:49:40.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:43.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:43.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17043.6793ms +2024-05-22 21:49:55.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:49:55.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:58.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:49:58.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17385.6792ms +2024-05-22 21:50:10.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:50:10.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:12.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:12.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16995.6663ms +2024-05-22 21:50:25.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:50:25.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:28.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:28.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17044.7141ms +2024-05-22 21:50:41.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:50:41.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:42.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:42.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16879.664ms +2024-05-22 21:50:55.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:50:55.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:57.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:50:57.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16758.9099ms +2024-05-22 21:51:10.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:51:10.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:13.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:13.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17161.3994ms +2024-05-22 21:51:25.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:51:25.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:28.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:28.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17239.8713ms +2024-05-22 21:51:42.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:42.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16905.0866ms +2024-05-22 21:51:43.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:51:43.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:55.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:51:55.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:59.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:51:59.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16708.8668ms +2024-05-22 21:52:10.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:52:10.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:12.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:12.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16777.789ms +2024-05-22 21:52:25.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:52:25.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:28.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:28.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17261.7339ms +2024-05-22 21:52:40.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:52:40.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:43.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:43.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17089.5959ms +2024-05-22 21:52:56.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:52:56.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:57.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:52:57.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16822.7871ms +2024-05-22 21:53:10.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:53:10.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:13.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:13.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17090.7988ms +2024-05-22 21:53:25.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:53:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:27.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:27.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16768.2567ms +2024-05-22 21:53:40.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:53:40.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:43.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:43.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17060.0274ms +2024-05-22 21:53:55.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:53:55.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:58.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:53:58.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17629.4403ms +2024-05-22 21:54:10.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:54:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:12.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:12.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16906.3639ms +2024-05-22 21:54:25.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:54:25.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:28.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:28.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17064.1385ms +2024-05-22 21:54:40.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:54:40.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:42.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:42.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16556.4176ms +2024-05-22 21:54:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:54:55.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:57.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:54:57.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16969.6966ms +2024-05-22 21:55:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:55:10.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:12.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:12.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16835.1909ms +2024-05-22 21:55:25.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:55:25.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:27.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:27.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16814.5443ms +2024-05-22 21:55:40.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:55:40.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:42.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:42.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16945.0326ms +2024-05-22 21:55:55.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:55:55.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:57.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:55:57.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16907.7133ms +2024-05-22 21:56:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:56:10.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:12.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:12.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16943.8268ms +2024-05-22 21:56:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:56:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:28.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:28.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17287.152ms +2024-05-22 21:56:40.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:56:40.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:42.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:42.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17014.9282ms +2024-05-22 21:56:55.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:56:55.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:58.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:56:58.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17232.7016ms +2024-05-22 21:57:10.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:57:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:12.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:12.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16999.8557ms +2024-05-22 21:57:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:57:25.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:27.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:27.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17008.4987ms +2024-05-22 21:57:40.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:57:40.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:43.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:43.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17151.8816ms +2024-05-22 21:57:55.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:57:55.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:58.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:57:58.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17080.3962ms +2024-05-22 21:58:10.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:58:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:12.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16868.7594ms +2024-05-22 21:58:25.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:58:25.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:27.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:27.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16781.6589ms +2024-05-22 21:58:40.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:58:40.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:43.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:43.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17146.3405ms +2024-05-22 21:58:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:58:55.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:58.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:58:58.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17169.0286ms +2024-05-22 21:59:10.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:59:10.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:12.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:12.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16803.6474ms +2024-05-22 21:59:25.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:59:25.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:28.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:28.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17342.4437ms +2024-05-22 21:59:40.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:59:40.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:43.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:43.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17099.0162ms +2024-05-22 21:59:55.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 21:59:55.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:58.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 21:59:58.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17268.9716ms +2024-05-22 22:00:10.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:00:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:13.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:13.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17053.5256ms +2024-05-22 22:00:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:00:25.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:29.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:29.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18282.1056ms +2024-05-22 22:00:40.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:00:40.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:43.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:43.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17237.1532ms +2024-05-22 22:00:55.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:00:55.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:57.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:00:57.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16846.9719ms +2024-05-22 22:01:10.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:01:10.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:13.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:13.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17065.3758ms +2024-05-22 22:01:25.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:01:25.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:28.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:28.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17303.1026ms +2024-05-22 22:01:40.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:01:40.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:42.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:42.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16947.2405ms +2024-05-22 22:01:55.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:01:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:58.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:01:58.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17123.1276ms +2024-05-22 22:02:10.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:02:10.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:12.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:12.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16737.9537ms +2024-05-22 22:02:25.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:02:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:27.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:27.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16939.8411ms +2024-05-22 22:02:40.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:02:40.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:43.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:43.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17146.6258ms +2024-05-22 22:02:55.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:02:55.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:58.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:02:58.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17531.121ms +2024-05-22 22:03:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:03:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:13.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:13.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17817.368ms +2024-05-22 22:03:25.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:03:25.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:29.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:29.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18163.4402ms +2024-05-22 22:03:40.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:03:40.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:43.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:43.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17999.1729ms +2024-05-22 22:03:55.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:03:55.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:58.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:03:58.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17488.2046ms +2024-05-22 22:04:10.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:04:10.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:13.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:13.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17615.4862ms +2024-05-22 22:04:25.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:04:25.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:28.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:28.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17756.872ms +2024-05-22 22:04:40.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:04:40.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:42.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:42.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16994.0151ms +2024-05-22 22:04:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:04:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:04:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16662.1826ms +2024-05-22 22:05:10.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:05:10.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:12.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:12.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16648.1189ms +2024-05-22 22:05:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:05:25.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:27.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:27.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16630.7199ms +2024-05-22 22:05:40.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:05:40.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:42.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:42.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16895.5489ms +2024-05-22 22:05:56.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:05:56.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:57.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:05:57.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16835.2603ms +2024-05-22 22:06:10.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:06:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:12.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:12.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16867.2328ms +2024-05-22 22:06:25.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:06:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:27.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:27.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16828.1937ms +2024-05-22 22:06:40.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:06:40.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:42.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:42.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16923.7121ms +2024-05-22 22:06:55.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:06:55.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:57.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:06:57.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16728.9907ms +2024-05-22 22:07:10.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:07:10.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:13.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:13.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17040.142ms +2024-05-22 22:07:25.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:07:25.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:27.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:27.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16926.0964ms +2024-05-22 22:07:40.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:07:40.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:43.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:43.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17260.2039ms +2024-05-22 22:07:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:07:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:58.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:07:58.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17772.7028ms +2024-05-22 22:08:10.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:08:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:13.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:13.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17562.9231ms +2024-05-22 22:08:25.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:08:25.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:29.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:29.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18067.612ms +2024-05-22 22:08:40.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:08:40.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:42.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:42.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16734.3673ms +2024-05-22 22:08:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:08:55.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:58.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:08:58.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17574.3017ms +2024-05-22 22:09:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:09:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:13.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:13.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17070.9684ms +2024-05-22 22:09:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:09:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:28.159 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:28.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17186.8646ms +2024-05-22 22:09:40.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:09:40.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:43.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:43.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17549.8842ms +2024-05-22 22:09:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:09:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:58.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:09:58.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17688.2569ms +2024-05-22 22:10:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:10:10.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:12.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:12.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16793.8608ms +2024-05-22 22:10:25.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:10:25.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:28.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:28.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17581.2593ms +2024-05-22 22:10:41.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:10:41.105 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:42.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:42.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16937.5014ms +2024-05-22 22:10:55.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:10:55.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:58.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:10:58.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17680.9577ms +2024-05-22 22:11:10.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:11:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:13.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:13.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17605.632ms +2024-05-22 22:11:25.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:11:25.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:27.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:27.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16992.2855ms +2024-05-22 22:11:40.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:11:40.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:43.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:43.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17670.0452ms +2024-05-22 22:11:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:11:55.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:58.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:11:58.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17471.2825ms +2024-05-22 22:12:10.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:12:10.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:13.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:13.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17400.3188ms +2024-05-22 22:12:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:12:25.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:28.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:28.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17303.8211ms +2024-05-22 22:12:40.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:12:40.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:43.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:43.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17263.2223ms +2024-05-22 22:12:55.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:12:55.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:57.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:12:57.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16833.8599ms +2024-05-22 22:13:10.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:13:10.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:12.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:12.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16961.8126ms +2024-05-22 22:13:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:13:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:28.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:28.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17507.0178ms +2024-05-22 22:13:40.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:13:40.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:43.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:43.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17360.1023ms +2024-05-22 22:13:55.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:13:55.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:58.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:13:58.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17048.2303ms +2024-05-22 22:14:10.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:14:10.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:13.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:13.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17613.3889ms +2024-05-22 22:14:25.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:14:25.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:27.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:27.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16877.6716ms +2024-05-22 22:14:40.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:14:40.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:42.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:42.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16926.0491ms +2024-05-22 22:14:56.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:14:56.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:58.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:14:58.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17774.5635ms +2024-05-22 22:15:10.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:15:10.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:12.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:12.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16876.115ms +2024-05-22 22:15:25.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:15:25.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:28.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:28.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17558.495ms +2024-05-22 22:15:40.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:15:40.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:42.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:42.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16694.9252ms +2024-05-22 22:15:55.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:15:55.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:58.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:15:58.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17339.0107ms +2024-05-22 22:16:10.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:16:10.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:13.420 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:13.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17452.4992ms +2024-05-22 22:16:25.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:16:25.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:29.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:29.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18066.5035ms +2024-05-22 22:16:40.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:16:40.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:42.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:42.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16769.4228ms +2024-05-22 22:16:55.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:16:55.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:57.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:16:57.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16898.8814ms +2024-05-22 22:17:10.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:17:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:13.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:13.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17666.5789ms +2024-05-22 22:17:25.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:17:25.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:28.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:28.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17820.5422ms +2024-05-22 22:17:40.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:17:40.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:43.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:43.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17052.3101ms +2024-05-22 22:17:55.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:17:55.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:58.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:17:58.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17224.2152ms +2024-05-22 22:18:10.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:18:10.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:13.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:13.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18007.5487ms +2024-05-22 22:18:25.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:18:25.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:27.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:27.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16972.6645ms +2024-05-22 22:18:40.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:18:40.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:42.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:42.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16944.8298ms +2024-05-22 22:18:55.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:18:55.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:57.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:18:57.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16900.9559ms +2024-05-22 22:19:10.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:19:10.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:12.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:12.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16933.7306ms +2024-05-22 22:19:21.551 +02:00 [INF] Received a message with ID: '1589ce0f88e048c3b2ac57829ec46572', Correlation ID: 'ebc8bc9f033c46838c292687fc31d6f4', timestamp: 1716409161, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 22:19:21.551 +02:00 [INF] Received a message with ID: 'eead490ee9824d91abdad2941f4209a2', Correlation ID: '3a59c76e50de429f860f8b80110ab4c8', timestamp: 1716409161, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 22:19:21.568 +02:00 [INF] Handling a message: friend_request_sent with ID: 1589ce0f88e048c3b2ac57829ec46572, Correlation ID: ebc8bc9f033c46838c292687fc31d6f4, retry: 0 +2024-05-22 22:19:21.568 +02:00 [INF] Handling a message: friend_invited with ID: eead490ee9824d91abdad2941f4209a2, Correlation ID: 3a59c76e50de429f860f8b80110ab4c8, retry: 0 +2024-05-22 22:19:21.629 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:19:21.630 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:21.630 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:21.673 +02:00 [INF] Received HTTP response headers after 43.0365ms - 200 +2024-05-22 22:19:21.673 +02:00 [INF] End processing HTTP request after 43.5556ms - 200 +2024-05-22 22:19:21.673 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:19:21.864 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 22:19:21.866 +02:00 [INF] Handled a message: friend_request_sent with ID: 1589ce0f88e048c3b2ac57829ec46572, Correlation ID: ebc8bc9f033c46838c292687fc31d6f4, retry: 0 +2024-05-22 22:19:21.929 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 22:19:21.929 +02:00 [INF] Handled a message: friend_invited with ID: eead490ee9824d91abdad2941f4209a2, Correlation ID: 3a59c76e50de429f860f8b80110ab4c8, retry: 0 +2024-05-22 22:19:23.536 +02:00 [INF] Received a message with ID: '17229b91b5f9483c8f7b555e4ca2458c', Correlation ID: '3d24a629b32447cb92a41a2e2c060c02', timestamp: 1716409163, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 22:19:23.537 +02:00 [INF] Received a message with ID: 'e11a4543f2604d4a8ca1ead0faeed25f', Correlation ID: '687e153b31b7438086ed29502d4e85ce', timestamp: 1716409163, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 22:19:23.538 +02:00 [INF] Handling a message: friend_request_sent with ID: e11a4543f2604d4a8ca1ead0faeed25f, Correlation ID: 687e153b31b7438086ed29502d4e85ce, retry: 0 +2024-05-22 22:19:23.538 +02:00 [INF] Handling a message: friend_invited with ID: 17229b91b5f9483c8f7b555e4ca2458c, Correlation ID: 3d24a629b32447cb92a41a2e2c060c02, retry: 0 +2024-05-22 22:19:23.575 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:19:23.575 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:23.575 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:23.611 +02:00 [INF] Received HTTP response headers after 35.7555ms - 200 +2024-05-22 22:19:23.611 +02:00 [INF] End processing HTTP request after 36.1596ms - 200 +2024-05-22 22:19:23.611 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:19:23.690 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-22 22:19:23.690 +02:00 [INF] Handled a message: friend_request_sent with ID: e11a4543f2604d4a8ca1ead0faeed25f, Correlation ID: 687e153b31b7438086ed29502d4e85ce, retry: 0 +2024-05-22 22:19:26.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:19:26.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:28.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:28.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17504.0826ms +2024-05-22 22:19:37.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:19:37.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:42.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:42.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16811.1013ms +2024-05-22 22:19:45.828 +02:00 [ERR] There was an error when processing a message with id: '17229b91b5f9483c8f7b555e4ca2458c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 22:19:45.838 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 22:19:45.846 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '17229b91b5f9483c8f7b555e4ca2458c', Correlation ID: '3d24a629b32447cb92a41a2e2c060c02', retry 1/3... +2024-05-22 22:19:47.857 +02:00 [INF] Handling a message: friend_invited with ID: 17229b91b5f9483c8f7b555e4ca2458c, Correlation ID: 3d24a629b32447cb92a41a2e2c060c02, retry: 1 +2024-05-22 22:19:47.905 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:19:47.906 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:47.906 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:19:47.946 +02:00 [INF] Received HTTP response headers after 38.7008ms - 200 +2024-05-22 22:19:47.946 +02:00 [INF] End processing HTTP request after 40.5903ms - 200 +2024-05-22 22:19:47.947 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:19:54.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:19:54.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17123.8656ms +2024-05-22 22:19:57.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:19:57.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:09.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:20:09.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:10.488 +02:00 [ERR] There was an error when processing a message with id: '17229b91b5f9483c8f7b555e4ca2458c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 22:20:10.492 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 22:20:10.496 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '17229b91b5f9483c8f7b555e4ca2458c', Correlation ID: '3d24a629b32447cb92a41a2e2c060c02', retry 2/3... +2024-05-22 22:20:12.494 +02:00 [INF] Handling a message: friend_invited with ID: 17229b91b5f9483c8f7b555e4ca2458c, Correlation ID: 3d24a629b32447cb92a41a2e2c060c02, retry: 2 +2024-05-22 22:20:12.531 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:20:12.531 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:20:12.531 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:20:12.570 +02:00 [INF] Received HTTP response headers after 38.5453ms - 200 +2024-05-22 22:20:12.570 +02:00 [INF] End processing HTTP request after 38.9175ms - 200 +2024-05-22 22:20:12.570 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:20:14.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:14.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16812.5387ms +2024-05-22 22:20:24.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:20:24.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:27.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:27.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17833.5197ms +2024-05-22 22:20:36.806 +02:00 [ERR] There was an error when processing a message with id: '17229b91b5f9483c8f7b555e4ca2458c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 22:20:36.811 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 22:20:36.814 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '17229b91b5f9483c8f7b555e4ca2458c', Correlation ID: '3d24a629b32447cb92a41a2e2c060c02', retry 3/3... +2024-05-22 22:20:38.815 +02:00 [INF] Handling a message: friend_invited with ID: 17229b91b5f9483c8f7b555e4ca2458c, Correlation ID: 3d24a629b32447cb92a41a2e2c060c02, retry: 3 +2024-05-22 22:20:38.853 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:20:38.853 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:20:38.853 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:20:38.896 +02:00 [INF] Received HTTP response headers after 42.147ms - 200 +2024-05-22 22:20:38.896 +02:00 [INF] End processing HTTP request after 42.5047ms - 200 +2024-05-22 22:20:38.896 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:20:39.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:20:39.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:42.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:42.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17893.661ms +2024-05-22 22:20:54.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:20:54.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:57.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:20:57.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17649.3045ms +2024-05-22 22:21:03.667 +02:00 [ERR] There was an error when processing a message with id: '17229b91b5f9483c8f7b555e4ca2458c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 22:21:03.669 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855716 (0x1B84DA4) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 22:21:03.672 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '17229b91b5f9483c8f7b555e4ca2458c', Correlation ID: '3d24a629b32447cb92a41a2e2c060c02', retry 4/3... +2024-05-22 22:21:03.672 +02:00 [ERR] Handling a message: friend_invited with ID: 17229b91b5f9483c8f7b555e4ca2458c, Correlation ID: 3d24a629b32447cb92a41a2e2c060c02 failed +2024-05-22 22:21:09.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:21:09.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:12.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:12.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17801.1921ms +2024-05-22 22:21:24.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:21:24.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:27.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:27.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18447.7773ms +2024-05-22 22:21:39.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:21:39.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:42.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:42.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17734.2607ms +2024-05-22 22:21:54.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:21:54.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:57.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:21:57.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17523.2091ms +2024-05-22 22:22:09.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:22:09.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:11.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:11.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17074.4294ms +2024-05-22 22:22:24.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:22:24.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:26.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:26.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17248.7665ms +2024-05-22 22:22:39.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:22:39.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:45.189 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:45.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 20706.2724ms +2024-05-22 22:22:54.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:22:54.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:56.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:22:56.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17057.96ms +2024-05-22 22:23:09.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:23:09.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:11.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:11.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16688.7875ms +2024-05-22 22:23:24.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:23:24.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:26.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:26.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17164.3955ms +2024-05-22 22:23:39.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:23:39.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:41.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:41.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16807.5437ms +2024-05-22 22:23:54.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:23:54.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:56.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:23:56.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17036.605ms +2024-05-22 22:24:09.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:24:09.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:14.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:14.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 19982.9904ms +2024-05-22 22:24:24.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:24:24.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:27.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:27.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18170.2795ms +2024-05-22 22:24:39.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:24:39.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:42.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:42.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18279.6377ms +2024-05-22 22:24:54.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:24:54.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:57.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:24:57.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17641.6757ms +2024-05-22 22:25:09.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:25:09.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:11.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:11.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17405.4443ms +2024-05-22 22:25:24.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:25:24.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:27.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:27.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17740.2096ms +2024-05-22 22:25:39.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 22:25:39.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:40.467 +02:00 [INF] Received a message with ID: '4aab194f303c4d5f8e758ed4e621975f', Correlation ID: 'd4b3499d9b5349d3b40929ddbbf17994', timestamp: 1716409540, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 22:25:40.467 +02:00 [INF] Received a message with ID: '3d642a8958154b2591358760ace8c077', Correlation ID: 'a380751b546b43f0a8952eb7265ccb5a', timestamp: 1716409540, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 22:25:40.467 +02:00 [INF] Handling a message: friend_invited with ID: 4aab194f303c4d5f8e758ed4e621975f, Correlation ID: d4b3499d9b5349d3b40929ddbbf17994, retry: 0 +2024-05-22 22:25:40.467 +02:00 [INF] Handling a message: friend_request_sent with ID: 3d642a8958154b2591358760ace8c077, Correlation ID: a380751b546b43f0a8952eb7265ccb5a, retry: 0 +2024-05-22 22:25:40.503 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 22:25:40.503 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:25:40.503 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 22:25:40.545 +02:00 [INF] Received HTTP response headers after 41.4509ms - 200 +2024-05-22 22:25:40.545 +02:00 [INF] End processing HTTP request after 42.1793ms - 200 +2024-05-22 22:25:40.545 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 22:25:40.761 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 22:25:40.761 +02:00 [INF] Handled a message: friend_invited with ID: 4aab194f303c4d5f8e758ed4e621975f, Correlation ID: d4b3499d9b5349d3b40929ddbbf17994, retry: 0 +2024-05-22 22:25:40.892 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 22:25:40.892 +02:00 [INF] Handled a message: friend_request_sent with ID: 3d642a8958154b2591358760ace8c077, Correlation ID: a380751b546b43f0a8952eb7265ccb5a, retry: 0 +2024-05-22 22:25:42.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:42.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17545.0769ms +2024-05-22 22:25:51.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:25:51.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:51.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:51.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.3837ms +2024-05-22 22:25:51.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:25:51.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:51.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:51.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.628ms +2024-05-22 22:25:56.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:25:56.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17484.8624ms +2024-05-22 22:26:06.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:26:06.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:06.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:06.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.9509ms +2024-05-22 22:26:21.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:26:21.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:21.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.7773ms +2024-05-22 22:26:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:26:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:36.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:36.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.388ms +2024-05-22 22:26:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:26:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:26:51.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.9312ms +2024-05-22 22:27:06.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:27:06.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:06.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3781ms +2024-05-22 22:27:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:27:21.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:21.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:21.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.2866ms +2024-05-22 22:27:36.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:27:36.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:36.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.9308ms +2024-05-22 22:27:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:27:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:27:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.4444ms +2024-05-22 22:28:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:28:06.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:06.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:06.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.1386ms +2024-05-22 22:28:21.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:28:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:21.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:21.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.641ms +2024-05-22 22:28:36.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:28:36.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:36.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.1557ms +2024-05-22 22:28:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:28:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:51.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:28:51.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 47.156ms +2024-05-22 22:29:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:29:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:06.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:06.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 50.5602ms +2024-05-22 22:29:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:29:21.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:21.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:21.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.6232ms +2024-05-22 22:29:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:29:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:38.254 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:38.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 1996.7161ms +2024-05-22 22:29:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:29:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:51.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:29:51.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.577ms +2024-05-22 22:30:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:30:06.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:06.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:06.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.3873ms +2024-05-22 22:30:21.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:30:21.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.7149ms +2024-05-22 22:30:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:30:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:36.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3398ms +2024-05-22 22:30:51.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:30:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:51.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:30:51.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 132.2152ms +2024-05-22 22:31:06.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:31:06.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:06.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4913ms +2024-05-22 22:31:21.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:31:21.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:21.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:21.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.1612ms +2024-05-22 22:31:36.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:31:36.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:36.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:36.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.1353ms +2024-05-22 22:31:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:31:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:51.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:31:51.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.1335ms +2024-05-22 22:32:06.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:32:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:06.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:06.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.2769ms +2024-05-22 22:32:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:32:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:21.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:21.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.4464ms +2024-05-22 22:32:36.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:32:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:36.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:36.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.8492ms +2024-05-22 22:32:51.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:32:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:51.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:32:51.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.6351ms +2024-05-22 22:33:06.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:33:06.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:06.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:06.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.5767ms +2024-05-22 22:33:21.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:33:21.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:21.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.9411ms +2024-05-22 22:33:36.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:33:36.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:36.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.5957ms +2024-05-22 22:33:51.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:33:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:33:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.2069ms +2024-05-22 22:34:06.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:34:06.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:06.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:06.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.7212ms +2024-05-22 22:34:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:34:21.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:21.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.2572ms +2024-05-22 22:34:36.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:34:36.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:36.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.2384ms +2024-05-22 22:34:51.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:34:51.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:51.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:34:51.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.751ms +2024-05-22 22:35:06.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:35:06.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:06.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:06.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 54.9099ms +2024-05-22 22:35:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:35:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:21.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:21.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.3931ms +2024-05-22 22:35:36.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:35:36.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:36.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.8504ms +2024-05-22 22:35:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:35:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:35:51.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.2148ms +2024-05-22 22:36:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:36:06.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:06.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:06.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.8077ms +2024-05-22 22:36:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:36:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:21.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.1785ms +2024-05-22 22:36:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:36:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:36.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:36.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.9182ms +2024-05-22 22:36:51.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:36:51.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:51.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:36:51.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 47.7908ms +2024-05-22 22:37:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:37:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:06.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:06.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4751ms +2024-05-22 22:37:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:37:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:21.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:21.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.696ms +2024-05-22 22:37:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:37:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:36.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.992ms +2024-05-22 22:37:51.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:37:51.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:37:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.3538ms +2024-05-22 22:38:06.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:38:06.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:06.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:06.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.053ms +2024-05-22 22:38:21.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:38:21.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:21.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.4551ms +2024-05-22 22:38:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:38:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:36.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.8336ms +2024-05-22 22:38:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:38:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:38:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.2636ms +2024-05-22 22:39:06.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:39:06.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:06.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:06.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.2226ms +2024-05-22 22:39:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:39:21.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:21.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.5221ms +2024-05-22 22:39:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:39:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:36.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.5443ms +2024-05-22 22:39:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:39:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:51.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:39:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.2073ms +2024-05-22 22:40:06.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:40:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:06.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.8057ms +2024-05-22 22:40:21.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:40:21.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:21.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.7792ms +2024-05-22 22:40:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:40:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:36.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:36.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 69.8235ms +2024-05-22 22:40:51.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:40:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:51.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:40:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.335ms +2024-05-22 22:41:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:41:06.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:06.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:06.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 48.8919ms +2024-05-22 22:41:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:41:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:21.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.6909ms +2024-05-22 22:41:36.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:41:36.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:36.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.1559ms +2024-05-22 22:41:51.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:41:51.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:51.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:41:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.7549ms +2024-05-22 22:42:06.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:42:06.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:06.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:06.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.1988ms +2024-05-22 22:42:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:42:21.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:21.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.9084ms +2024-05-22 22:42:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:42:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:36.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.6722ms +2024-05-22 22:42:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:42:51.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:51.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:42:51.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 67.3257ms +2024-05-22 22:43:06.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:43:06.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:06.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:06.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 53.292ms +2024-05-22 22:43:21.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:43:21.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:21.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:21.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.2961ms +2024-05-22 22:43:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:43:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:36.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.4209ms +2024-05-22 22:43:51.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:43:51.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:51.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:43:51.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.1944ms +2024-05-22 22:44:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:44:06.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:06.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:06.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.0894ms +2024-05-22 22:44:21.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:44:21.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:21.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:21.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.1387ms +2024-05-22 22:44:36.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:44:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:36.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.8124ms +2024-05-22 22:44:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:44:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:44:51.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.8427ms +2024-05-22 22:45:06.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:45:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:06.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:06.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.8471ms +2024-05-22 22:45:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:45:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:21.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:21.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.2149ms +2024-05-22 22:45:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:45:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:36.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:36.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4259ms +2024-05-22 22:45:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:45:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:45:51.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.1473ms +2024-05-22 22:46:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:46:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:06.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:06.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.7028ms +2024-05-22 22:46:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:46:21.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:21.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:21.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.7087ms +2024-05-22 22:46:36.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:46:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:36.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.7966ms +2024-05-22 22:46:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:46:51.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:46:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.7457ms +2024-05-22 22:47:06.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:47:06.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:06.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0567ms +2024-05-22 22:47:21.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:47:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:21.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:21.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 47.2602ms +2024-05-22 22:47:36.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:47:36.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:36.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:36.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.5108ms +2024-05-22 22:47:51.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:47:51.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:51.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:47:51.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 231.3381ms +2024-05-22 22:48:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:48:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:06.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:06.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.5662ms +2024-05-22 22:48:21.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:48:21.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:21.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:21.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.8698ms +2024-05-22 22:48:36.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:48:36.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:36.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:36.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.5299ms +2024-05-22 22:48:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:48:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:48:51.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.4323ms +2024-05-22 22:49:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:49:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:06.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0432ms +2024-05-22 22:49:21.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:49:21.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:21.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:21.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.6241ms +2024-05-22 22:49:36.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:49:36.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:36.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.5746ms +2024-05-22 22:49:51.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:49:51.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:51.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:49:51.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.5412ms +2024-05-22 22:50:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:50:06.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.9178ms +2024-05-22 22:50:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:50:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:21.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.6084ms +2024-05-22 22:50:36.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:50:36.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:36.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.238ms +2024-05-22 22:50:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:50:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:51.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:50:51.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.6203ms +2024-05-22 22:51:06.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:51:06.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:06.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:06.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.6668ms +2024-05-22 22:51:21.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:51:21.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:21.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.1644ms +2024-05-22 22:51:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:51:36.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:36.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.5438ms +2024-05-22 22:51:51.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:51:51.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:51.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:51:51.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.9509ms +2024-05-22 22:52:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:52:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:06.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.2474ms +2024-05-22 22:52:21.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:52:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:21.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:21.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.3604ms +2024-05-22 22:52:36.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:52:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:36.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:36.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.9645ms +2024-05-22 22:52:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:52:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:51.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:52:51.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.0366ms +2024-05-22 22:53:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:53:06.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.9029ms +2024-05-22 22:53:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:53:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:21.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:21.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0594ms +2024-05-22 22:53:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:53:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:36.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:36.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.1171ms +2024-05-22 22:53:51.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:53:51.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:51.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:53:51.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.1428ms +2024-05-22 22:54:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:54:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:06.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:06.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.4078ms +2024-05-22 22:54:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:54:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:21.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:21.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.295ms +2024-05-22 22:54:36.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:54:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:36.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.6269ms +2024-05-22 22:54:51.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:54:51.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:51.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:54:51.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.5163ms +2024-05-22 22:55:06.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:55:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:06.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:06.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.9906ms +2024-05-22 22:55:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:55:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:21.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.4115ms +2024-05-22 22:55:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:55:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:36.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.946ms +2024-05-22 22:55:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:55:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:55:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.1185ms +2024-05-22 22:56:06.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:56:06.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0442ms +2024-05-22 22:56:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:56:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:21.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:21.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.9288ms +2024-05-22 22:56:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:56:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:36.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.7744ms +2024-05-22 22:56:51.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:56:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:51.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:56:51.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0892ms +2024-05-22 22:57:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:57:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:06.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:06.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 58.6398ms +2024-05-22 22:57:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:57:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:21.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:21.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 45.8299ms +2024-05-22 22:57:36.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:57:36.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:36.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:36.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.3679ms +2024-05-22 22:57:51.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:57:51.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:57:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0316ms +2024-05-22 22:58:06.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:58:06.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:06.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:06.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.4885ms +2024-05-22 22:58:21.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:58:21.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:21.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:21.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 48.7329ms +2024-05-22 22:58:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:58:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:36.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.3074ms +2024-05-22 22:58:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:58:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:58:51.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.4447ms +2024-05-22 22:59:06.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:59:06.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:06.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:06.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.9778ms +2024-05-22 22:59:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:59:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:21.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:21.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0497ms +2024-05-22 22:59:36.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:59:36.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:36.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:36.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.4227ms +2024-05-22 22:59:51.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 22:59:51.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:51.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 22:59:51.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.5007ms +2024-05-22 23:00:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:00:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:06.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:06.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.2483ms +2024-05-22 23:00:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:00:21.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:21.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:21.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 47.8133ms +2024-05-22 23:00:36.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:00:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:36.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:36.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.4331ms +2024-05-22 23:00:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:00:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:51.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:00:51.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.6096ms +2024-05-22 23:01:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:01:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:06.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:06.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0042ms +2024-05-22 23:01:21.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:01:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.6591ms +2024-05-22 23:01:36.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:01:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:36.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:36.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.5591ms +2024-05-22 23:01:51.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:01:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:51.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:01:51.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.0265ms +2024-05-22 23:02:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:02:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.4124ms +2024-05-22 23:02:21.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:02:21.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.0899ms +2024-05-22 23:02:36.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:02:36.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:36.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.1102ms +2024-05-22 23:02:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:02:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:02:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.9988ms +2024-05-22 23:03:06.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:03:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:06.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:06.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.8525ms +2024-05-22 23:03:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:03:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:21.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:21.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.9835ms +2024-05-22 23:03:36.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:03:36.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:36.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:36.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.156ms +2024-05-22 23:03:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:03:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:03:51.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.9899ms +2024-05-22 23:04:06.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:04:06.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:06.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.3549ms +2024-05-22 23:04:21.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:04:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:21.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.8378ms +2024-05-22 23:04:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:04:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:36.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:36.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.7382ms +2024-05-22 23:04:51.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:04:51.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:51.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:04:51.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.9957ms +2024-05-22 23:05:06.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:05:06.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:06.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:06.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.1392ms +2024-05-22 23:05:21.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:05:21.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:21.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:21.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.371ms +2024-05-22 23:05:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:05:36.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:36.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:36.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3212ms +2024-05-22 23:05:51.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:05:51.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:51.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:05:51.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.0804ms +2024-05-22 23:06:06.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:06:06.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:06.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:06.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 43.7618ms +2024-05-22 23:06:21.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:06:21.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:21.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:21.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.6967ms +2024-05-22 23:06:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:06:36.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:36.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:36.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.4162ms +2024-05-22 23:06:51.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:06:51.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:51.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:06:51.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.6623ms +2024-05-22 23:07:06.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:07:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:06.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:06.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3863ms +2024-05-22 23:07:21.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:07:21.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:21.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:21.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.3749ms +2024-05-22 23:07:36.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:07:36.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:36.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:36.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.0958ms +2024-05-22 23:07:51.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:07:51.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:51.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:07:51.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.1335ms +2024-05-22 23:08:06.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:08:06.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:06.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:06.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.3927ms +2024-05-22 23:08:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:08:21.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:21.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:21.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.7439ms +2024-05-22 23:08:36.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:08:36.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:36.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:36.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.6323ms +2024-05-22 23:08:51.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:08:51.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:51.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:08:51.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.7446ms +2024-05-22 23:09:06.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:09:06.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:06.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:06.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.7109ms +2024-05-22 23:09:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:09:21.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:21.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:21.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 35.6032ms +2024-05-22 23:09:36.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:09:36.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:36.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:36.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.0482ms +2024-05-22 23:09:51.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:09:51.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:51.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:09:51.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.4553ms +2024-05-22 23:10:06.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:10:06.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:06.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:06.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.3224ms +2024-05-22 23:10:21.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:10:21.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:21.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:21.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 44.9656ms +2024-05-22 23:10:23.560 +02:00 [INF] Received a message with ID: 'b0a97f90e99a4aa9ae1989a9bf5905c1', Correlation ID: '06c4afd2aa5f43889021cd1eac6cc4de', timestamp: 1716412223, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:10:23.560 +02:00 [INF] Handling a message: friend_invited with ID: b0a97f90e99a4aa9ae1989a9bf5905c1, Correlation ID: 06c4afd2aa5f43889021cd1eac6cc4de, retry: 0 +2024-05-22 23:10:23.563 +02:00 [INF] Received a message with ID: 'ccc65a144b2a4e0d864d720d2377906c', Correlation ID: '61b7a5a5829943329655f300901e3ce1', timestamp: 1716412223, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:10:23.563 +02:00 [INF] Handling a message: friend_request_sent with ID: ccc65a144b2a4e0d864d720d2377906c, Correlation ID: 61b7a5a5829943329655f300901e3ce1, retry: 0 +2024-05-22 23:10:23.597 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:10:23.597 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:10:23.597 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:10:23.637 +02:00 [INF] Received HTTP response headers after 38.8412ms - 200 +2024-05-22 23:10:23.637 +02:00 [INF] End processing HTTP request after 39.5867ms - 200 +2024-05-22 23:10:23.637 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:10:23.969 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-22 23:10:23.970 +02:00 [INF] Handled a message: friend_request_sent with ID: ccc65a144b2a4e0d864d720d2377906c, Correlation ID: 61b7a5a5829943329655f300901e3ce1, retry: 0 +2024-05-22 23:10:32.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:10:32.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:46.743 +02:00 [ERR] There was an error when processing a message with id: 'b0a97f90e99a4aa9ae1989a9bf5905c1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:10:46.748 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:10:46.751 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b0a97f90e99a4aa9ae1989a9bf5905c1', Correlation ID: '06c4afd2aa5f43889021cd1eac6cc4de', retry 1/3... +2024-05-22 23:10:48.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:10:48.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16235.9834ms +2024-05-22 23:10:48.755 +02:00 [INF] Handling a message: friend_invited with ID: b0a97f90e99a4aa9ae1989a9bf5905c1, Correlation ID: 06c4afd2aa5f43889021cd1eac6cc4de, retry: 1 +2024-05-22 23:10:48.790 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:10:48.790 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:10:48.790 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:10:48.825 +02:00 [INF] Received HTTP response headers after 35.0399ms - 200 +2024-05-22 23:10:48.825 +02:00 [INF] End processing HTTP request after 35.355ms - 200 +2024-05-22 23:10:48.825 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:10:52.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:10:52.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:04.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:11:04.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:08.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:08.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16331.4941ms +2024-05-22 23:11:10.357 +02:00 [ERR] There was an error when processing a message with id: 'b0a97f90e99a4aa9ae1989a9bf5905c1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:11:10.364 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:11:10.367 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b0a97f90e99a4aa9ae1989a9bf5905c1', Correlation ID: '06c4afd2aa5f43889021cd1eac6cc4de', retry 2/3... +2024-05-22 23:11:12.367 +02:00 [INF] Handling a message: friend_invited with ID: b0a97f90e99a4aa9ae1989a9bf5905c1, Correlation ID: 06c4afd2aa5f43889021cd1eac6cc4de, retry: 2 +2024-05-22 23:11:12.416 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:11:12.416 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:11:12.416 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:11:12.457 +02:00 [INF] Received HTTP response headers after 40.2922ms - 200 +2024-05-22 23:11:12.457 +02:00 [INF] End processing HTTP request after 41.3326ms - 200 +2024-05-22 23:11:12.458 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:11:19.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:11:19.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:20.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:20.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16730.0087ms +2024-05-22 23:11:33.728 +02:00 [ERR] There was an error when processing a message with id: 'b0a97f90e99a4aa9ae1989a9bf5905c1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:11:33.732 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:11:33.735 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b0a97f90e99a4aa9ae1989a9bf5905c1', Correlation ID: '06c4afd2aa5f43889021cd1eac6cc4de', retry 3/3... +2024-05-22 23:11:34.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:11:34.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:35.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:35.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16100.7455ms +2024-05-22 23:11:35.736 +02:00 [INF] Handling a message: friend_invited with ID: b0a97f90e99a4aa9ae1989a9bf5905c1, Correlation ID: 06c4afd2aa5f43889021cd1eac6cc4de, retry: 3 +2024-05-22 23:11:35.772 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:11:35.772 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:11:35.773 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:11:35.811 +02:00 [INF] Received HTTP response headers after 38.0767ms - 200 +2024-05-22 23:11:35.811 +02:00 [INF] End processing HTTP request after 38.9232ms - 200 +2024-05-22 23:11:35.811 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:11:40.461 +02:00 [INF] Received a message with ID: '93a2ec5e44b247599b4a087cc458e207', Correlation ID: '92da69710afe45f8bff0b98d8c7a0af4', timestamp: 1716412300, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:11:40.462 +02:00 [INF] Handling a message: friend_request_sent with ID: 93a2ec5e44b247599b4a087cc458e207, Correlation ID: 92da69710afe45f8bff0b98d8c7a0af4, retry: 0 +2024-05-22 23:11:40.621 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:11:40.622 +02:00 [INF] Handled a message: friend_request_sent with ID: 93a2ec5e44b247599b4a087cc458e207, Correlation ID: 92da69710afe45f8bff0b98d8c7a0af4, retry: 0 +2024-05-22 23:11:51.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:51.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 17190.864ms +2024-05-22 23:11:52.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:11:52.124 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:52.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:52.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 34.1329ms +2024-05-22 23:11:52.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:11:52.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:52.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:11:52.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 33.9264ms +2024-05-22 23:11:58.929 +02:00 [ERR] There was an error when processing a message with id: 'b0a97f90e99a4aa9ae1989a9bf5905c1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:11:58.931 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:11:58.932 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b0a97f90e99a4aa9ae1989a9bf5905c1', Correlation ID: '06c4afd2aa5f43889021cd1eac6cc4de', retry 4/3... +2024-05-22 23:11:58.932 +02:00 [ERR] Handling a message: friend_invited with ID: b0a97f90e99a4aa9ae1989a9bf5905c1, Correlation ID: 06c4afd2aa5f43889021cd1eac6cc4de failed +2024-05-22 23:11:58.933 +02:00 [INF] Received a message with ID: 'e4ac5e712f714a0b9d4c388dab875ef5', Correlation ID: 'ff34a2ad88f94028b107d60e6921eb3c', timestamp: 1716412300, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:11:58.933 +02:00 [INF] Handling a message: friend_invited with ID: e4ac5e712f714a0b9d4c388dab875ef5, Correlation ID: ff34a2ad88f94028b107d60e6921eb3c, retry: 0 +2024-05-22 23:11:58.968 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 23:11:58.969 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:11:58.969 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:11:59.009 +02:00 [INF] Received HTTP response headers after 39.8444ms - 200 +2024-05-22 23:11:59.010 +02:00 [INF] End processing HTTP request after 41.1612ms - 200 +2024-05-22 23:11:59.011 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:11:59.211 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:11:59.212 +02:00 [INF] Handled a message: friend_invited with ID: e4ac5e712f714a0b9d4c388dab875ef5, Correlation ID: ff34a2ad88f94028b107d60e6921eb3c, retry: 0 +2024-05-22 23:12:07.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:12:07.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:07.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:07.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 41.0997ms +2024-05-22 23:12:14.244 +02:00 [INF] Received a message with ID: '7f3c6ee50aa84c07966d1a65ac8014a2', Correlation ID: '5a9877333ced44ff9370f7bbd8bb5a41', timestamp: 1716412334, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:12:14.246 +02:00 [INF] Handling a message: friend_invited with ID: 7f3c6ee50aa84c07966d1a65ac8014a2, Correlation ID: 5a9877333ced44ff9370f7bbd8bb5a41, retry: 0 +2024-05-22 23:12:14.247 +02:00 [INF] Received a message with ID: 'd96d6ca77fb44f50818ca34058d94ea4', Correlation ID: '09d0b570e9e34367b49b01dbb7d40790', timestamp: 1716412334, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:12:14.252 +02:00 [INF] Handling a message: friend_request_sent with ID: d96d6ca77fb44f50818ca34058d94ea4, Correlation ID: 09d0b570e9e34367b49b01dbb7d40790, retry: 0 +2024-05-22 23:12:14.282 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-22 23:12:14.283 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-22 23:12:14.283 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-22 23:12:14.318 +02:00 [INF] Received HTTP response headers after 35.2748ms - 200 +2024-05-22 23:12:14.318 +02:00 [INF] End processing HTTP request after 35.7905ms - 200 +2024-05-22 23:12:14.319 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:12:14.403 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 23:12:14.403 +02:00 [INF] Handled a message: friend_request_sent with ID: d96d6ca77fb44f50818ca34058d94ea4, Correlation ID: 09d0b570e9e34367b49b01dbb7d40790, retry: 0 +2024-05-22 23:12:14.507 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 23:12:14.507 +02:00 [INF] Handled a message: friend_invited with ID: 7f3c6ee50aa84c07966d1a65ac8014a2, Correlation ID: 5a9877333ced44ff9370f7bbd8bb5a41, retry: 0 +2024-05-22 23:12:22.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:12:22.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:22.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:22.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.7233ms +2024-05-22 23:12:22.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:12:22.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:22.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:22.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.5845ms +2024-05-22 23:12:37.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:12:37.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:37.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:37.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.1405ms +2024-05-22 23:12:52.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:12:52.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:52.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:12:52.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.9377ms +2024-05-22 23:13:07.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:13:07.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:07.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:07.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.0819ms +2024-05-22 23:13:22.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:13:22.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:22.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:22.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.0886ms +2024-05-22 23:13:37.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:13:37.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:37.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:37.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 36.2726ms +2024-05-22 23:13:52.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:13:52.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:52.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:13:52.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.7169ms +2024-05-22 23:14:07.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:14:07.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:07.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:07.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 37.5436ms +2024-05-22 23:14:22.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:14:22.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:22.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:22.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 42.1979ms +2024-05-22 23:14:37.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:14:37.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:37.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:37.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.6963ms +2024-05-22 23:14:52.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:14:52.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:52.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:14:52.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.8521ms +2024-05-22 23:15:07.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:15:07.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:07.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:07.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.1815ms +2024-05-22 23:15:22.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:15:22.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:22.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:22.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.473ms +2024-05-22 23:15:37.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:15:37.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:37.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:37.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.7581ms +2024-05-22 23:15:52.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:15:52.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:52.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:15:52.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.6897ms +2024-05-22 23:16:07.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:16:07.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:07.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:07.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 39.1855ms +2024-05-22 23:16:22.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:16:22.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:22.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:22.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.8681ms +2024-05-22 23:16:24.134 +02:00 [INF] Received a message with ID: '4e798f2863d340b9980dd96c9e1fb056', Correlation ID: '004fecf1fd244a57a4646278b4b73330', timestamp: 1716412584, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:16:24.134 +02:00 [INF] Received a message with ID: 'ae1465888f084e45a87847c8cc35e6c7', Correlation ID: 'fc7ed7967d63466dbd59043e9779a8a7', timestamp: 1716412584, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:16:24.136 +02:00 [INF] Handling a message: friend_request_sent with ID: ae1465888f084e45a87847c8cc35e6c7, Correlation ID: fc7ed7967d63466dbd59043e9779a8a7, retry: 0 +2024-05-22 23:16:24.136 +02:00 [INF] Handling a message: friend_invited with ID: 4e798f2863d340b9980dd96c9e1fb056, Correlation ID: 004fecf1fd244a57a4646278b4b73330, retry: 0 +2024-05-22 23:16:24.173 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:16:24.174 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:16:24.175 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:16:24.214 +02:00 [INF] Received HTTP response headers after 37.9763ms - 200 +2024-05-22 23:16:24.215 +02:00 [INF] End processing HTTP request after 41.0945ms - 200 +2024-05-22 23:16:24.215 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:16:24.289 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-22 23:16:24.289 +02:00 [INF] Handled a message: friend_request_sent with ID: ae1465888f084e45a87847c8cc35e6c7, Correlation ID: fc7ed7967d63466dbd59043e9779a8a7, retry: 0 +2024-05-22 23:16:26.374 +02:00 [INF] Received a message with ID: '6856d0dc72e64c9f9111e847c49896bd', Correlation ID: '4538edcdd9084b79abcb0794f2a27cbe', timestamp: 1716412586, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:16:26.374 +02:00 [INF] Handling a message: friend_request_sent with ID: 6856d0dc72e64c9f9111e847c49896bd, Correlation ID: 4538edcdd9084b79abcb0794f2a27cbe, retry: 0 +2024-05-22 23:16:26.522 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:16:26.522 +02:00 [INF] Handled a message: friend_request_sent with ID: 6856d0dc72e64c9f9111e847c49896bd, Correlation ID: 4538edcdd9084b79abcb0794f2a27cbe, retry: 0 +2024-05-22 23:16:35.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:16:35.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:45.686 +02:00 [ERR] There was an error when processing a message with id: '4e798f2863d340b9980dd96c9e1fb056'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:16:45.690 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:16:45.693 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4e798f2863d340b9980dd96c9e1fb056', Correlation ID: '004fecf1fd244a57a4646278b4b73330', retry 1/3... +2024-05-22 23:16:47.692 +02:00 [INF] Handling a message: friend_invited with ID: 4e798f2863d340b9980dd96c9e1fb056, Correlation ID: 004fecf1fd244a57a4646278b4b73330, retry: 1 +2024-05-22 23:16:47.727 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:16:47.727 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:16:47.728 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:16:47.762 +02:00 [INF] Received HTTP response headers after 34.8244ms - 200 +2024-05-22 23:16:47.763 +02:00 [INF] End processing HTTP request after 35.1444ms - 200 +2024-05-22 23:16:47.763 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:16:52.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:16:52.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16457.8083ms +2024-05-22 23:16:59.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:16:59.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:07.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:17:07.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:08.918 +02:00 [ERR] There was an error when processing a message with id: '4e798f2863d340b9980dd96c9e1fb056'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:17:08.922 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:17:08.925 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4e798f2863d340b9980dd96c9e1fb056', Correlation ID: '004fecf1fd244a57a4646278b4b73330', retry 2/3... +2024-05-22 23:17:10.925 +02:00 [INF] Handling a message: friend_invited with ID: 4e798f2863d340b9980dd96c9e1fb056, Correlation ID: 004fecf1fd244a57a4646278b4b73330, retry: 2 +2024-05-22 23:17:10.964 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:17:10.964 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:10.964 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:11.006 +02:00 [INF] Received HTTP response headers after 41.2028ms - 200 +2024-05-22 23:17:11.006 +02:00 [INF] End processing HTTP request after 42.3943ms - 200 +2024-05-22 23:17:11.007 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:17:15.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:15.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16170.2133ms +2024-05-22 23:17:22.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:17:22.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:24.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:24.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16568.4361ms +2024-05-22 23:17:34.004 +02:00 [ERR] There was an error when processing a message with id: '4e798f2863d340b9980dd96c9e1fb056'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:17:34.005 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:17:34.006 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4e798f2863d340b9980dd96c9e1fb056', Correlation ID: '004fecf1fd244a57a4646278b4b73330', retry 3/3... +2024-05-22 23:17:36.008 +02:00 [INF] Handling a message: friend_invited with ID: 4e798f2863d340b9980dd96c9e1fb056, Correlation ID: 004fecf1fd244a57a4646278b4b73330, retry: 3 +2024-05-22 23:17:36.044 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:17:36.045 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:36.045 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:36.088 +02:00 [INF] Received HTTP response headers after 42.2735ms - 200 +2024-05-22 23:17:36.088 +02:00 [INF] End processing HTTP request after 43.7537ms - 200 +2024-05-22 23:17:36.091 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:17:37.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:17:37.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:39.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:39.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16607.2157ms +2024-05-22 23:17:52.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:17:52.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:53.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:17:53.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16422.4673ms +2024-05-22 23:17:59.227 +02:00 [ERR] There was an error when processing a message with id: '4e798f2863d340b9980dd96c9e1fb056'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-22 23:17:59.231 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-22 23:17:59.234 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4e798f2863d340b9980dd96c9e1fb056', Correlation ID: '004fecf1fd244a57a4646278b4b73330', retry 4/3... +2024-05-22 23:17:59.234 +02:00 [ERR] Handling a message: friend_invited with ID: 4e798f2863d340b9980dd96c9e1fb056, Correlation ID: 004fecf1fd244a57a4646278b4b73330 failed +2024-05-22 23:17:59.239 +02:00 [INF] Received a message with ID: '01b64630b0a0494992d3059a91a1ab22', Correlation ID: '2a5d1accefe84971a79a68493dafbdc8', timestamp: 1716412586, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:17:59.241 +02:00 [INF] Handling a message: friend_invited with ID: 01b64630b0a0494992d3059a91a1ab22, Correlation ID: 2a5d1accefe84971a79a68493dafbdc8, retry: 0 +2024-05-22 23:17:59.278 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-22 23:17:59.279 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:59.279 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-22 23:17:59.321 +02:00 [INF] Received HTTP response headers after 42.0315ms - 200 +2024-05-22 23:17:59.322 +02:00 [INF] End processing HTTP request after 42.9923ms - 200 +2024-05-22 23:17:59.322 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:17:59.542 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:17:59.542 +02:00 [INF] Handled a message: friend_invited with ID: 01b64630b0a0494992d3059a91a1ab22, Correlation ID: 2a5d1accefe84971a79a68493dafbdc8, retry: 0 +2024-05-22 23:18:07.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:18:07.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:08.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:08.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16395.7526ms +2024-05-22 23:18:22.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:18:22.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:23.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:23.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16410.2792ms +2024-05-22 23:18:37.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-22 23:18:37.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:37.894 +02:00 [INF] Received a message with ID: '040a5843dbba4bf884c3559f3dad7194', Correlation ID: 'e0983a03cba3416cb6b00ef452e6035f', timestamp: 1716412717, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:18:37.895 +02:00 [INF] Handling a message: friend_invited with ID: 040a5843dbba4bf884c3559f3dad7194, Correlation ID: e0983a03cba3416cb6b00ef452e6035f, retry: 0 +2024-05-22 23:18:37.899 +02:00 [INF] Received a message with ID: '7c256e6007a041dbaf197fea437e4255', Correlation ID: '8778ced735504381a3ba86d8c3243bbe', timestamp: 1716412717, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:18:37.899 +02:00 [INF] Handling a message: friend_request_sent with ID: 7c256e6007a041dbaf197fea437e4255, Correlation ID: 8778ced735504381a3ba86d8c3243bbe, retry: 0 +2024-05-22 23:18:37.930 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 23:18:37.930 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:18:37.930 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:18:37.967 +02:00 [INF] Received HTTP response headers after 36.1839ms - 200 +2024-05-22 23:18:37.967 +02:00 [INF] End processing HTTP request after 36.5253ms - 200 +2024-05-22 23:18:37.967 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:18:38.052 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:18:38.052 +02:00 [INF] Handled a message: friend_request_sent with ID: 7c256e6007a041dbaf197fea437e4255, Correlation ID: 8778ced735504381a3ba86d8c3243bbe, retry: 0 +2024-05-22 23:18:38.166 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-22 23:18:38.166 +02:00 [INF] Handled a message: friend_invited with ID: 040a5843dbba4bf884c3559f3dad7194, Correlation ID: e0983a03cba3416cb6b00ef452e6035f, retry: 0 +2024-05-22 23:18:38.819 +02:00 [INF] Received a message with ID: 'f4ba42df212d4247a3d96b329bf22bee', Correlation ID: '5ddbe129bf7648cf84d74d4ce43cd98c', timestamp: 1716412718, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-22 23:18:38.819 +02:00 [INF] Handling a message: friend_invited with ID: f4ba42df212d4247a3d96b329bf22bee, Correlation ID: 5ddbe129bf7648cf84d74d4ce43cd98c, retry: 0 +2024-05-22 23:18:38.820 +02:00 [INF] Received a message with ID: '6a91e9ed97cb47a495e97e4da96622d8', Correlation ID: '5e5c78e279ea49bd8ce0dbe1cd46b72c', timestamp: 1716412718, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-22 23:18:38.821 +02:00 [INF] Handling a message: friend_request_sent with ID: 6a91e9ed97cb47a495e97e4da96622d8, Correlation ID: 5e5c78e279ea49bd8ce0dbe1cd46b72c, retry: 0 +2024-05-22 23:18:38.854 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-22 23:18:38.854 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:18:38.855 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-22 23:18:38.892 +02:00 [INF] Received HTTP response headers after 36.9656ms - 200 +2024-05-22 23:18:38.893 +02:00 [INF] End processing HTTP request after 38.415ms - 200 +2024-05-22 23:18:38.893 +02:00 [INF] End processing HTTP request - "OK" +2024-05-22 23:18:38.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:38.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16438.3435ms +2024-05-22 23:18:38.987 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 23:18:38.987 +02:00 [INF] Handled a message: friend_request_sent with ID: 6a91e9ed97cb47a495e97e4da96622d8, Correlation ID: 5e5c78e279ea49bd8ce0dbe1cd46b72c, retry: 0 +2024-05-22 23:18:39.126 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-22 23:18:39.127 +02:00 [INF] Handled a message: friend_invited with ID: f4ba42df212d4247a3d96b329bf22bee, Correlation ID: 5ddbe129bf7648cf84d74d4ce43cd98c, retry: 0 +2024-05-22 23:18:47.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:18:47.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:47.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:47.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 111.3541ms +2024-05-22 23:18:47.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:18:47.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:47.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:47.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.3388ms +2024-05-22 23:18:53.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:18:53.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16338.7029ms +2024-05-22 23:19:02.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:19:02.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:02.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:02.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3501ms +2024-05-22 23:19:17.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:19:17.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:17.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:17.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.3971ms +2024-05-22 23:19:32.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:19:32.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:32.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:32.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.8729ms +2024-05-22 23:19:47.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:19:47.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:47.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:19:47.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9158ms +2024-05-22 23:20:13.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:20:13.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:13.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:13.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.0006ms +2024-05-22 23:20:13.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:20:13.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:13.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:13.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 34.6785ms +2024-05-22 23:20:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:20:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.8252ms +2024-05-22 23:20:43.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:20:43.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:43.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:43.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.0709ms +2024-05-22 23:20:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:20:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:20:58.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.0301ms +2024-05-22 23:21:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:21:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:13.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.7846ms +2024-05-22 23:21:28.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:21:28.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:28.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:28.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.0868ms +2024-05-22 23:21:43.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:21:43.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:43.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:43.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.359ms +2024-05-22 23:21:58.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:21:58.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:58.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:21:58.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.0369ms +2024-05-22 23:22:13.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:22:13.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:13.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.6382ms +2024-05-22 23:22:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:22:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.7798ms +2024-05-22 23:22:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:22:43.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:43.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:43.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 64.6623ms +2024-05-22 23:22:58.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:22:58.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:58.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:22:58.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 51.2936ms +2024-05-22 23:23:13.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:23:13.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:13.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:13.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 54.3926ms +2024-05-22 23:23:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:23:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.7231ms +2024-05-22 23:23:43.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:23:43.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:43.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:43.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.1152ms +2024-05-22 23:23:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:23:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:58.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:23:58.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 40.0136ms +2024-05-22 23:24:13.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:24:13.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:13.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:13.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.0399ms +2024-05-22 23:24:28.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:24:28.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:28.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:28.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.4929ms +2024-05-22 23:24:43.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:24:43.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:43.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:43.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.8958ms +2024-05-22 23:24:58.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:24:58.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:58.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:24:58.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.5601ms +2024-05-22 23:25:13.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:25:13.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:13.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.6047ms +2024-05-22 23:25:28.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:25:28.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.8149ms +2024-05-22 23:25:43.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:25:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:43.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:43.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.4915ms +2024-05-22 23:25:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:25:58.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:58.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:25:58.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.1907ms +2024-05-22 23:26:13.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:26:13.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:13.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:13.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.1095ms +2024-05-22 23:26:28.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:26:28.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:28.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:28.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.3458ms +2024-05-22 23:26:43.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:26:43.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:43.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:43.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.0177ms +2024-05-22 23:26:58.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:26:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:58.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:26:58.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.1766ms +2024-05-22 23:27:13.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:27:13.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:13.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:13.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.9652ms +2024-05-22 23:27:28.231 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:27:28.232 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:28.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:28.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 40.9505ms +2024-05-22 23:27:43.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:27:43.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:43.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:43.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.4277ms +2024-05-22 23:27:58.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:27:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:27:58.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.4124ms +2024-05-22 23:28:13.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:28:13.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:13.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:13.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.9424ms +2024-05-22 23:28:28.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:28:28.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:28.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:28.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.2232ms +2024-05-22 23:28:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:28:43.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:43.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:43.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.7622ms +2024-05-22 23:28:58.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:28:58.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:58.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:28:58.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.1517ms +2024-05-22 23:29:13.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:29:13.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:13.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:13.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.2064ms +2024-05-22 23:29:28.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:29:28.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.4614ms +2024-05-22 23:29:43.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:29:43.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:43.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:43.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 44.0697ms +2024-05-22 23:29:58.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:29:58.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:29:58.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.1174ms +2024-05-22 23:30:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:30:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:13.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:13.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 34.7559ms +2024-05-22 23:30:28.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:30:28.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:28.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:28.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.7079ms +2024-05-22 23:30:43.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:30:43.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:43.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:43.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 43.4687ms +2024-05-22 23:30:58.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:30:58.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:58.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:30:58.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 45.7864ms +2024-05-22 23:31:13.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:31:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:13.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.3405ms +2024-05-22 23:31:28.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:31:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:28.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:28.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.0223ms +2024-05-22 23:31:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:31:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.9093ms +2024-05-22 23:31:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:31:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:58.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:31:58.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.5002ms +2024-05-22 23:32:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:32:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:13.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.7585ms +2024-05-22 23:32:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:32:28.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.7874ms +2024-05-22 23:32:43.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:32:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.2241ms +2024-05-22 23:32:58.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:32:58.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:32:58.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.4753ms +2024-05-22 23:33:13.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:33:13.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:13.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:13.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.5036ms +2024-05-22 23:33:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:33:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:28.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:28.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.5496ms +2024-05-22 23:33:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:33:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.9607ms +2024-05-22 23:33:58.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:33:58.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:33:58.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.3102ms +2024-05-22 23:34:13.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:34:13.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:13.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:13.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.216ms +2024-05-22 23:34:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:34:28.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:28.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:28.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 41.2836ms +2024-05-22 23:34:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:34:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.2844ms +2024-05-22 23:34:58.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:34:58.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:34:58.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.0551ms +2024-05-22 23:35:13.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:35:13.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:13.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:13.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.8256ms +2024-05-22 23:35:28.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:35:28.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:28.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:28.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.8ms +2024-05-22 23:35:43.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:35:43.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:43.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:43.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.8507ms +2024-05-22 23:35:58.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:35:58.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:58.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:35:58.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 47.0486ms +2024-05-22 23:36:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:36:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:13.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:13.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.987ms +2024-05-22 23:36:28.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:36:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:28.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:28.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.4551ms +2024-05-22 23:36:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:36:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.4383ms +2024-05-22 23:36:58.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:36:58.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:58.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:36:58.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.1959ms +2024-05-22 23:37:13.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:37:13.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:13.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.2048ms +2024-05-22 23:37:28.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:37:28.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:28.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:28.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.6512ms +2024-05-22 23:37:43.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:37:43.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:43.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:43.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.3407ms +2024-05-22 23:37:58.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:37:58.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:58.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:37:58.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 35.8794ms +2024-05-22 23:38:13.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:38:13.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:13.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:13.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.2264ms +2024-05-22 23:38:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:38:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:28.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:28.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 40.0286ms +2024-05-22 23:38:43.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:38:43.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:43.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:43.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.0883ms +2024-05-22 23:38:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:38:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:58.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:38:58.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.8118ms +2024-05-22 23:39:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:39:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:13.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:13.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.9922ms +2024-05-22 23:39:28.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:39:28.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:28.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:28.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.1805ms +2024-05-22 23:39:43.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:39:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:43.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:43.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 41.9042ms +2024-05-22 23:39:58.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:39:58.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:58.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:39:58.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 40.9808ms +2024-05-22 23:40:13.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:40:13.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:13.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:13.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.049ms +2024-05-22 23:40:28.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:40:28.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:28.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:28.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.8832ms +2024-05-22 23:40:43.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:40:43.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:43.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:43.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 40.8543ms +2024-05-22 23:40:58.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:40:58.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:58.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:40:58.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.2163ms +2024-05-22 23:41:13.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:41:13.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:13.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:13.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.1411ms +2024-05-22 23:41:28.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:41:28.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:28.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:28.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.2411ms +2024-05-22 23:41:43.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:41:43.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:43.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:43.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 38.8024ms +2024-05-22 23:41:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:41:58.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:58.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:41:58.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 45.7162ms +2024-05-22 23:42:13.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:42:13.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:13.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:13.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 44.0932ms +2024-05-22 23:42:28.225 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:42:28.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:28.263 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:28.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.1321ms +2024-05-22 23:42:43.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-22 23:42:43.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:43.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:43.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 36.9991ms +2024-05-22 23:42:57.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:42:57.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:57.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:57.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.6562ms +2024-05-22 23:42:57.553 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:42:57.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:57.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:42:57.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.9452ms +2024-05-22 23:43:12.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:43:12.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:12.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:12.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.1354ms +2024-05-22 23:43:27.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:43:27.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:27.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:27.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.7172ms +2024-05-22 23:43:42.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:43:42.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:42.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:42.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.7418ms +2024-05-22 23:43:57.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:43:57.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:57.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:43:57.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.0044ms +2024-05-22 23:44:12.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:44:12.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:12.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:12.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.2467ms +2024-05-22 23:44:27.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:44:27.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:27.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:27.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.3814ms +2024-05-22 23:44:42.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:44:42.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:42.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:42.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.0738ms +2024-05-22 23:44:57.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:44:57.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:57.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:44:57.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.5779ms +2024-05-22 23:45:12.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:45:12.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:12.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:12.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.1679ms +2024-05-22 23:45:27.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:45:27.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:27.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:27.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2132ms +2024-05-22 23:45:42.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:45:42.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:42.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.4584ms +2024-05-22 23:45:57.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:45:57.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:57.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:45:57.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.5151ms +2024-05-22 23:46:12.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:46:12.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:12.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:12.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.338ms +2024-05-22 23:46:27.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:46:27.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:27.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:27.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.5691ms +2024-05-22 23:46:42.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:46:42.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:42.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:42.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.0103ms +2024-05-22 23:46:57.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:46:57.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:57.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:46:57.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.6527ms +2024-05-22 23:47:12.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:47:12.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:12.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:12.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.0315ms +2024-05-22 23:47:27.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:47:27.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:27.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:27.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.6242ms +2024-05-22 23:47:42.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:47:42.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:42.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:42.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.4474ms +2024-05-22 23:47:57.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:47:57.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:57.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:47:57.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.293ms +2024-05-22 23:48:12.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:48:12.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:12.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:12.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.5916ms +2024-05-22 23:48:27.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:48:27.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:27.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:27.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 69.9254ms +2024-05-22 23:48:42.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:48:42.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:42.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:42.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.3338ms +2024-05-22 23:48:57.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:48:57.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:57.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:48:57.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.6931ms +2024-05-22 23:49:12.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:49:12.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:12.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:12.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.8532ms +2024-05-22 23:49:27.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:49:27.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:27.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:27.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.4262ms +2024-05-22 23:49:42.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:49:42.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:42.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:42.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.1448ms +2024-05-22 23:49:57.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:49:57.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:57.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:49:57.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.9868ms +2024-05-22 23:50:12.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:50:12.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:12.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:12.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2952ms +2024-05-22 23:50:27.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:50:27.553 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:27.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:27.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.6899ms +2024-05-22 23:50:42.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:50:42.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:42.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:42.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.8724ms +2024-05-22 23:50:57.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:50:57.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:57.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:50:57.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2869ms +2024-05-22 23:51:12.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:12.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:12.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:12.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.9005ms +2024-05-22 23:51:37.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:37.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:37.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:37.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.1486ms +2024-05-22 23:51:38.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:38.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:38.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:38.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 50.464ms +2024-05-22 23:51:53.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:53.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:53.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:53.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.9083ms +2024-05-22 23:51:54.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:54.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:54.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:54.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.9823ms +2024-05-22 23:51:54.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:54.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:54.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:54.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.2154ms +2024-05-22 23:51:56.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:56.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:56.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:56.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 68.3958ms +2024-05-22 23:51:56.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:51:56.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:56.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:51:56.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 38.6906ms +2024-05-22 23:52:08.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:08.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:08.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:08.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.9053ms +2024-05-22 23:52:09.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:09.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:09.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:09.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.8559ms +2024-05-22 23:52:11.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:11.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:11.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:11.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.9427ms +2024-05-22 23:52:23.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:23.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:23.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:23.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.1718ms +2024-05-22 23:52:24.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:24.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:24.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:24.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.9813ms +2024-05-22 23:52:26.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:26.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:26.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:26.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.6019ms +2024-05-22 23:52:38.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:38.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:38.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:38.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.6159ms +2024-05-22 23:52:39.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:39.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:39.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:39.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.8518ms +2024-05-22 23:52:41.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:41.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:41.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:41.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.2401ms +2024-05-22 23:52:53.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:53.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:53.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:53.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.3889ms +2024-05-22 23:52:54.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:54.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:54.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:54.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.0431ms +2024-05-22 23:52:56.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:52:56.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:56.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:52:56.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.917ms +2024-05-22 23:53:08.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:08.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:08.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:08.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.4576ms +2024-05-22 23:53:09.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:09.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:09.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:09.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.4091ms +2024-05-22 23:53:11.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:11.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:11.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:11.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.5346ms +2024-05-22 23:53:23.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:23.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:23.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:23.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3166ms +2024-05-22 23:53:24.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:24.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:24.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:24.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.6542ms +2024-05-22 23:53:26.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:26.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:26.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:26.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.5235ms +2024-05-22 23:53:38.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:38.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:38.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:38.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3248ms +2024-05-22 23:53:39.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:39.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:39.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:39.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.7591ms +2024-05-22 23:53:41.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:41.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:41.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:41.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.3826ms +2024-05-22 23:53:53.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:53.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:53.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:53.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.1497ms +2024-05-22 23:53:54.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:54.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:54.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:54.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.9567ms +2024-05-22 23:53:56.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:53:56.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:56.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:53:56.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 82.458ms +2024-05-22 23:54:08.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:08.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:08.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:08.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.6835ms +2024-05-22 23:54:09.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:09.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:09.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:09.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.4208ms +2024-05-22 23:54:11.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:11.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:11.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:11.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.0589ms +2024-05-22 23:54:23.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:23.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:23.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:23.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.7805ms +2024-05-22 23:54:24.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:24.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:24.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:24.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.4244ms +2024-05-22 23:54:26.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:26.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:26.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:26.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.6322ms +2024-05-22 23:54:38.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:38.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:38.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:38.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.6624ms +2024-05-22 23:54:39.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:39.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:39.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:39.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.8661ms +2024-05-22 23:54:41.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:41.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:41.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:41.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.0191ms +2024-05-22 23:54:53.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:53.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:53.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:53.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.2387ms +2024-05-22 23:54:54.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:54.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:54.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:54.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.9276ms +2024-05-22 23:54:56.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:54:56.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:56.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:54:56.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.5195ms +2024-05-22 23:55:08.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:08.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:08.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:08.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.8636ms +2024-05-22 23:55:09.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:09.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:09.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:09.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.2375ms +2024-05-22 23:55:11.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:11.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:11.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:11.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.417ms +2024-05-22 23:55:23.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:23.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:23.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:23.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.5745ms +2024-05-22 23:55:24.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:24.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:24.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:24.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9507ms +2024-05-22 23:55:26.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:26.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:26.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:26.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.5685ms +2024-05-22 23:55:38.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:38.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:38.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:38.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9645ms +2024-05-22 23:55:39.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:39.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:39.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:39.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9927ms +2024-05-22 23:55:41.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:41.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:41.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:41.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.1622ms +2024-05-22 23:55:53.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:53.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:53.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:53.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.4739ms +2024-05-22 23:55:54.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:54.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:54.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:54.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.3695ms +2024-05-22 23:55:56.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:55:56.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:56.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:55:56.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.2108ms +2024-05-22 23:56:08.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:08.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:08.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:08.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.4955ms +2024-05-22 23:56:09.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:09.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:09.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:09.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.3368ms +2024-05-22 23:56:11.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:11.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:11.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:11.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.1716ms +2024-05-22 23:56:23.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:23.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:23.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:23.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3579ms +2024-05-22 23:56:24.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:24.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:24.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:24.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.7862ms +2024-05-22 23:56:26.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:26.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:26.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:26.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.5141ms +2024-05-22 23:56:38.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:38.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:38.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:38.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.7574ms +2024-05-22 23:56:39.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:39.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:39.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:39.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.3146ms +2024-05-22 23:56:41.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:41.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:41.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:41.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.6654ms +2024-05-22 23:56:53.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:53.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:53.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:53.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.6238ms +2024-05-22 23:56:54.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:54.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:54.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:54.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.8694ms +2024-05-22 23:56:56.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:56:56.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:56.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:56:56.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.3538ms +2024-05-22 23:57:08.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:08.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:08.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:08.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.6426ms +2024-05-22 23:57:09.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:09.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:09.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:09.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 82.0506ms +2024-05-22 23:57:11.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:11.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:11.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:11.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.7415ms +2024-05-22 23:57:23.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:23.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:23.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:23.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.5199ms +2024-05-22 23:57:24.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:24.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:24.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:24.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.6544ms +2024-05-22 23:57:26.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:26.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:26.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:26.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 80.049ms +2024-05-22 23:57:38.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:38.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:38.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:38.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.1376ms +2024-05-22 23:57:39.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:39.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:39.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:39.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.208ms +2024-05-22 23:57:41.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:41.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:41.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:41.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.8989ms +2024-05-22 23:57:53.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:53.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:53.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:53.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.0902ms +2024-05-22 23:57:54.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:54.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:54.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:54.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.1613ms +2024-05-22 23:57:56.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:57:56.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:56.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:57:56.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.9501ms +2024-05-22 23:58:08.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:08.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:08.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:08.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.5622ms +2024-05-22 23:58:09.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:09.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:09.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:09.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.9269ms +2024-05-22 23:58:11.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:11.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:11.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:11.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.5233ms +2024-05-22 23:58:23.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:23.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:23.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:23.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9838ms +2024-05-22 23:58:24.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:24.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:24.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:24.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3538ms +2024-05-22 23:58:26.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:26.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:26.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:26.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.2596ms +2024-05-22 23:58:38.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:38.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:38.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:38.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.6632ms +2024-05-22 23:58:39.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:39.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:39.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:39.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.5522ms +2024-05-22 23:58:41.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:41.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:41.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:41.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.4219ms +2024-05-22 23:58:53.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:53.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:53.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:53.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.1004ms +2024-05-22 23:58:54.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:54.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:54.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:54.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.3026ms +2024-05-22 23:58:56.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:58:56.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:56.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:58:56.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.0373ms +2024-05-22 23:59:08.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:08.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:08.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:08.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.6389ms +2024-05-22 23:59:09.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:09.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:09.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:09.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 85.1239ms +2024-05-22 23:59:11.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:11.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:11.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:11.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.5302ms +2024-05-22 23:59:23.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:23.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:23.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:23.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.4976ms +2024-05-22 23:59:24.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:24.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:24.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:24.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.3536ms +2024-05-22 23:59:26.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:26.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:26.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:26.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.612ms +2024-05-22 23:59:38.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:38.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:38.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:38.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.4535ms +2024-05-22 23:59:39.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:39.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:39.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:39.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.0552ms +2024-05-22 23:59:41.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:41.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:41.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:41.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.3115ms +2024-05-22 23:59:53.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:53.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:53.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:53.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.2423ms +2024-05-22 23:59:54.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:54.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:54.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:54.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.159ms +2024-05-22 23:59:56.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-22 23:59:56.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:56.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-22 23:59:56.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.3282ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240523.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240523.txt new file mode 100644 index 000000000..97ee68dc8 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240523.txt @@ -0,0 +1,32236 @@ +2024-05-23 00:00:08.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:08.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:08.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:08.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 109.5108ms +2024-05-23 00:00:09.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:09.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:10.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:10.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 173.4968ms +2024-05-23 00:00:11.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:11.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:11.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:11.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.763ms +2024-05-23 00:00:23.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:23.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:23.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:23.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.4571ms +2024-05-23 00:00:24.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:24.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:24.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:24.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9687ms +2024-05-23 00:00:26.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:26.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:26.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:26.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.6256ms +2024-05-23 00:00:38.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:38.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:38.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:38.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.0748ms +2024-05-23 00:00:39.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:39.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:39.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:39.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.5582ms +2024-05-23 00:00:41.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:41.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:41.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:41.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.9593ms +2024-05-23 00:00:53.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:53.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:53.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:53.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.1532ms +2024-05-23 00:00:54.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:54.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:54.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:54.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.4175ms +2024-05-23 00:00:56.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:00:56.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:56.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:00:56.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.9721ms +2024-05-23 00:01:08.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:08.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:08.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:08.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.8314ms +2024-05-23 00:01:09.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:09.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:09.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:09.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.9495ms +2024-05-23 00:01:11.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:11.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:11.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:11.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.0348ms +2024-05-23 00:01:23.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:23.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:23.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:23.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.1224ms +2024-05-23 00:01:24.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:24.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:24.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:24.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.5051ms +2024-05-23 00:01:26.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:26.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:26.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:26.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.8306ms +2024-05-23 00:01:38.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:38.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:38.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:38.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.7762ms +2024-05-23 00:01:39.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:39.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:39.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:39.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.472ms +2024-05-23 00:01:41.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:41.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:41.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:41.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.5846ms +2024-05-23 00:01:53.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:53.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:53.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:53.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.12ms +2024-05-23 00:01:54.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:54.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:54.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:54.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.4441ms +2024-05-23 00:01:56.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:01:56.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:56.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:01:56.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.7577ms +2024-05-23 00:02:08.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:08.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:08.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:08.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.8991ms +2024-05-23 00:02:09.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:09.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:09.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:09.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.5039ms +2024-05-23 00:02:11.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:11.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:11.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:11.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9753ms +2024-05-23 00:02:23.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:23.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:23.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:23.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.2592ms +2024-05-23 00:02:24.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:24.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:24.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:24.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.5291ms +2024-05-23 00:02:26.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:26.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:26.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:26.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.8972ms +2024-05-23 00:02:38.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:38.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:38.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:38.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.583ms +2024-05-23 00:02:39.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:39.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:39.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:39.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.037ms +2024-05-23 00:02:41.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:41.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:41.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:41.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.6498ms +2024-05-23 00:02:53.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:53.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:53.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:53.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.9196ms +2024-05-23 00:02:54.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:54.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:54.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:54.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2301ms +2024-05-23 00:02:56.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:02:56.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:56.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:02:56.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.7857ms +2024-05-23 00:03:08.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:08.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:08.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:08.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 81.9068ms +2024-05-23 00:03:09.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:09.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:09.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:09.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.5414ms +2024-05-23 00:03:11.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:11.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:11.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:11.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.7006ms +2024-05-23 00:03:23.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:23.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:23.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:23.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.5979ms +2024-05-23 00:03:24.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:24.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:24.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:24.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.8797ms +2024-05-23 00:03:26.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:26.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:26.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:26.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.7483ms +2024-05-23 00:03:38.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:38.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:38.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:38.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 69.8556ms +2024-05-23 00:03:39.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:39.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:39.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:39.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.5196ms +2024-05-23 00:03:41.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:41.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:41.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:41.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 80.1804ms +2024-05-23 00:03:53.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:53.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:53.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:53.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.6658ms +2024-05-23 00:03:54.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:54.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:54.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:54.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.4988ms +2024-05-23 00:03:56.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:03:56.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:56.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:03:56.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.5438ms +2024-05-23 00:04:08.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:08.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:08.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:08.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.909ms +2024-05-23 00:04:09.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:09.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:09.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:09.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.6552ms +2024-05-23 00:04:11.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:11.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:11.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:11.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.0358ms +2024-05-23 00:04:36.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:36.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:36.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:36.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.8076ms +2024-05-23 00:04:36.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:36.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:36.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:36.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 40.5819ms +2024-05-23 00:04:51.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:04:51.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:51.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:04:51.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 68.5656ms +2024-05-23 00:05:06.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:05:06.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:06.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:06.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3435ms +2024-05-23 00:05:21.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:05:21.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:21.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:21.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.0849ms +2024-05-23 00:05:36.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:05:36.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:36.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:36.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.0004ms +2024-05-23 00:05:51.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:05:51.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:51.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:05:51.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2965ms +2024-05-23 00:06:06.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:06:06.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:06.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:06.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.7899ms +2024-05-23 00:06:21.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:06:21.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:21.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:21.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.2069ms +2024-05-23 00:06:36.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:06:36.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:36.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:36.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.4149ms +2024-05-23 00:06:51.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:06:51.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:51.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:06:51.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 70.9534ms +2024-05-23 00:07:06.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:07:06.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:06.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:06.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.915ms +2024-05-23 00:07:21.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:07:21.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:21.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:21.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.9721ms +2024-05-23 00:07:36.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:07:36.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:36.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:36.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.2516ms +2024-05-23 00:07:51.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:07:51.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:51.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:07:51.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.6412ms +2024-05-23 00:08:06.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:08:06.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:06.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:06.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.9763ms +2024-05-23 00:08:21.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:08:21.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:21.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:21.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.9195ms +2024-05-23 00:08:36.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:08:36.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:36.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:36.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 79.2007ms +2024-05-23 00:08:51.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:08:51.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:51.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:08:51.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.9276ms +2024-05-23 00:09:08.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:09:08.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:09:09.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:09:09.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 138.8722ms +2024-05-23 00:10:04.899 +02:00 [WRN] As of ""2024-05-22T22:09:45.5288551+00:00"", the heartbeat has been running for ""00:00:01.2904709"" which is longer than ""00:00:01"". This could be caused by thread pool starvation. +2024-05-23 00:10:14.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:10:14.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:14.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:14.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 80.9449ms +2024-05-23 00:10:14.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:10:14.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:14.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:14.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 84.0734ms +2024-05-23 00:10:29.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:10:29.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:29.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:29.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.4937ms +2024-05-23 00:10:44.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:10:44.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:44.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:44.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.8157ms +2024-05-23 00:10:59.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:10:59.293 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:59.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:10:59.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.3084ms +2024-05-23 00:10:59.568 +02:00 [INF] Received a message with ID: '9aaeb98de5e143009f83342272d9e2d8', Correlation ID: '2e234c48fb3a4df0a6a55950b3dd67c2', timestamp: 1716415859, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:10:59.568 +02:00 [INF] Handling a message: friend_invited with ID: 9aaeb98de5e143009f83342272d9e2d8, Correlation ID: 2e234c48fb3a4df0a6a55950b3dd67c2, retry: 0 +2024-05-23 00:10:59.571 +02:00 [INF] Received a message with ID: '6c88d4c8bd8d4430ae76612093942d25', Correlation ID: '49259093abae40858b2f2c9d0ec95e71', timestamp: 1716415859, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:10:59.571 +02:00 [INF] Handling a message: friend_request_sent with ID: 6c88d4c8bd8d4430ae76612093942d25, Correlation ID: 49259093abae40858b2f2c9d0ec95e71, retry: 0 +2024-05-23 00:10:59.604 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 00:10:59.605 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:10:59.605 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:10:59.640 +02:00 [INF] Received HTTP response headers after 35.3124ms - 200 +2024-05-23 00:10:59.640 +02:00 [INF] End processing HTTP request after 35.6541ms - 200 +2024-05-23 00:10:59.640 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:10:59.731 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:10:59.731 +02:00 [INF] Handled a message: friend_request_sent with ID: 6c88d4c8bd8d4430ae76612093942d25, Correlation ID: 49259093abae40858b2f2c9d0ec95e71, retry: 0 +2024-05-23 00:11:19.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:11:19.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:11:22.771 +02:00 [ERR] There was an error when processing a message with id: '9aaeb98de5e143009f83342272d9e2d8'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:11:22.773 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:11:22.774 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '9aaeb98de5e143009f83342272d9e2d8', Correlation ID: '2e234c48fb3a4df0a6a55950b3dd67c2', retry 1/3... +2024-05-23 00:11:24.775 +02:00 [INF] Handling a message: friend_invited with ID: 9aaeb98de5e143009f83342272d9e2d8, Correlation ID: 2e234c48fb3a4df0a6a55950b3dd67c2, retry: 1 +2024-05-23 00:11:24.814 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 00:11:24.814 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:11:24.814 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:11:24.850 +02:00 [INF] Received HTTP response headers after 35.2959ms - 200 +2024-05-23 00:11:24.850 +02:00 [INF] End processing HTTP request after 35.6236ms - 200 +2024-05-23 00:11:24.850 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:11:36.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:11:36.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16283.5777ms +2024-05-23 00:11:43.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:11:43.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:11:46.318 +02:00 [ERR] There was an error when processing a message with id: '9aaeb98de5e143009f83342272d9e2d8'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:11:46.320 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:11:46.321 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '9aaeb98de5e143009f83342272d9e2d8', Correlation ID: '2e234c48fb3a4df0a6a55950b3dd67c2', retry 2/3... +2024-05-23 00:11:48.320 +02:00 [INF] Handling a message: friend_invited with ID: 9aaeb98de5e143009f83342272d9e2d8, Correlation ID: 2e234c48fb3a4df0a6a55950b3dd67c2, retry: 2 +2024-05-23 00:11:48.359 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 00:11:48.359 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:11:48.359 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:11:48.398 +02:00 [INF] Received HTTP response headers after 38.4243ms - 200 +2024-05-23 00:11:48.398 +02:00 [INF] End processing HTTP request after 39.0127ms - 200 +2024-05-23 00:11:48.398 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:11:51.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:11:51.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:11:58.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:11:58.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 15947.163ms +2024-05-23 00:12:06.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:12:06.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:07.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:07.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 15927.3898ms +2024-05-23 00:12:09.982 +02:00 [ERR] There was an error when processing a message with id: '9aaeb98de5e143009f83342272d9e2d8'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:12:09.985 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:12:09.988 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '9aaeb98de5e143009f83342272d9e2d8', Correlation ID: '2e234c48fb3a4df0a6a55950b3dd67c2', retry 3/3... +2024-05-23 00:12:11.988 +02:00 [INF] Handling a message: friend_invited with ID: 9aaeb98de5e143009f83342272d9e2d8, Correlation ID: 2e234c48fb3a4df0a6a55950b3dd67c2, retry: 3 +2024-05-23 00:12:12.024 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 00:12:12.024 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:12:12.024 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 00:12:12.076 +02:00 [INF] Received HTTP response headers after 50.8665ms - 200 +2024-05-23 00:12:12.076 +02:00 [INF] End processing HTTP request after 51.7621ms - 200 +2024-05-23 00:12:12.076 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:12:21.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:12:21.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:22.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:22.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16226.1431ms +2024-05-23 00:12:33.104 +02:00 [ERR] There was an error when processing a message with id: '9aaeb98de5e143009f83342272d9e2d8'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:12:33.106 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:12:33.107 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '9aaeb98de5e143009f83342272d9e2d8', Correlation ID: '2e234c48fb3a4df0a6a55950b3dd67c2', retry 4/3... +2024-05-23 00:12:33.107 +02:00 [ERR] Handling a message: friend_invited with ID: 9aaeb98de5e143009f83342272d9e2d8, Correlation ID: 2e234c48fb3a4df0a6a55950b3dd67c2 failed +2024-05-23 00:12:36.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:12:36.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:38.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:38.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16656.9812ms +2024-05-23 00:12:51.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:12:51.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:12:52.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16537.2316ms +2024-05-23 00:13:06.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:13:06.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:08.122 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:08.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16626.1667ms +2024-05-23 00:13:17.878 +02:00 [INF] Received a message with ID: '104274c246ee47748f8b0105dda01393', Correlation ID: 'ffcf5b334fde4ffe8bf47afbbbb098f4', timestamp: 1716415997, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:13:17.879 +02:00 [INF] Handling a message: friend_invited with ID: 104274c246ee47748f8b0105dda01393, Correlation ID: ffcf5b334fde4ffe8bf47afbbbb098f4, retry: 0 +2024-05-23 00:13:17.878 +02:00 [INF] Received a message with ID: 'd167756873f24f8c936db73d81f7d69e', Correlation ID: 'b33c4a6a67074a2fbe1140564e715813', timestamp: 1716415997, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:13:17.882 +02:00 [INF] Handling a message: friend_request_sent with ID: d167756873f24f8c936db73d81f7d69e, Correlation ID: b33c4a6a67074a2fbe1140564e715813, retry: 0 +2024-05-23 00:13:17.916 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 00:13:17.916 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 00:13:17.917 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 00:13:17.959 +02:00 [INF] Received HTTP response headers after 41.5594ms - 200 +2024-05-23 00:13:17.959 +02:00 [INF] End processing HTTP request after 42.4406ms - 200 +2024-05-23 00:13:17.959 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:13:18.037 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:13:18.037 +02:00 [INF] Handled a message: friend_request_sent with ID: d167756873f24f8c936db73d81f7d69e, Correlation ID: b33c4a6a67074a2fbe1140564e715813, retry: 0 +2024-05-23 00:13:18.156 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:13:18.156 +02:00 [INF] Handled a message: friend_invited with ID: 104274c246ee47748f8b0105dda01393, Correlation ID: ffcf5b334fde4ffe8bf47afbbbb098f4, retry: 0 +2024-05-23 00:13:21.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:13:21.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:23.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:23.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16545.2318ms +2024-05-23 00:13:36.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 00:13:36.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:36.852 +02:00 [INF] Received a message with ID: '37c2a5a614dd48699ce3d6d03d739c9e', Correlation ID: 'aa4d891f97994d31a1592321590e0c72', timestamp: 1716416016, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:13:36.853 +02:00 [INF] Handling a message: friend_invited with ID: 37c2a5a614dd48699ce3d6d03d739c9e, Correlation ID: aa4d891f97994d31a1592321590e0c72, retry: 0 +2024-05-23 00:13:36.855 +02:00 [INF] Received a message with ID: 'eded075e372242d591282b2e42bb5971', Correlation ID: '5e41e7ba75804ecd98a783e94e114dea', timestamp: 1716416016, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:13:36.857 +02:00 [INF] Handling a message: friend_request_sent with ID: eded075e372242d591282b2e42bb5971, Correlation ID: 5e41e7ba75804ecd98a783e94e114dea, retry: 0 +2024-05-23 00:13:36.889 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 00:13:36.889 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 00:13:36.890 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 00:13:36.926 +02:00 [INF] Received HTTP response headers after 36.4642ms - 200 +2024-05-23 00:13:36.926 +02:00 [INF] End processing HTTP request after 36.8596ms - 200 +2024-05-23 00:13:36.926 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:13:37.009 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:13:37.009 +02:00 [INF] Handled a message: friend_request_sent with ID: eded075e372242d591282b2e42bb5971, Correlation ID: 5e41e7ba75804ecd98a783e94e114dea, retry: 0 +2024-05-23 00:13:37.116 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:13:37.116 +02:00 [INF] Handled a message: friend_invited with ID: 37c2a5a614dd48699ce3d6d03d739c9e, Correlation ID: aa4d891f97994d31a1592321590e0c72, retry: 0 +2024-05-23 00:13:37.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:37.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16252.0059ms +2024-05-23 00:13:46.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:13:46.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:46.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:46.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.4528ms +2024-05-23 00:13:46.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:13:46.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:46.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:46.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.3011ms +2024-05-23 00:13:52.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:13:52.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16488.8273ms +2024-05-23 00:14:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:14:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:01.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:01.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.1206ms +2024-05-23 00:14:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:14:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:16.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:16.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.195ms +2024-05-23 00:14:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:14:31.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:31.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:31.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3331ms +2024-05-23 00:14:46.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:14:46.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:46.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:14:46.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4448ms +2024-05-23 00:15:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:15:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:01.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:01.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.8972ms +2024-05-23 00:15:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:15:16.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:16.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:16.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5684ms +2024-05-23 00:15:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:15:31.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:31.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:31.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.9042ms +2024-05-23 00:15:46.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:15:46.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:15:46.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.7833ms +2024-05-23 00:16:01.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:16:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:01.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5677ms +2024-05-23 00:16:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:16:16.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:16.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:16.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.9708ms +2024-05-23 00:16:31.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:16:31.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:31.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:31.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.4318ms +2024-05-23 00:16:46.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:16:46.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:46.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:16:46.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.7248ms +2024-05-23 00:17:01.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:17:01.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:01.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:01.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.7917ms +2024-05-23 00:17:16.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:17:16.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:16.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:16.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.1329ms +2024-05-23 00:17:31.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:17:31.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:31.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:31.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 66.8343ms +2024-05-23 00:17:46.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:17:46.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:46.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:17:46.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.2786ms +2024-05-23 00:18:01.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:18:01.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:01.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:01.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.9679ms +2024-05-23 00:18:16.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:18:16.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:16.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:16.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.9905ms +2024-05-23 00:18:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:18:31.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:31.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:31.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.4231ms +2024-05-23 00:18:46.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:18:46.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:46.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:18:46.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4553ms +2024-05-23 00:19:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:19:01.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:01.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:01.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.0273ms +2024-05-23 00:19:16.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:19:16.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:16.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:16.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.8205ms +2024-05-23 00:19:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:19:31.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:31.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:31.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.8846ms +2024-05-23 00:19:46.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:19:46.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:46.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:19:46.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.9089ms +2024-05-23 00:20:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:20:01.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:01.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:01.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.1752ms +2024-05-23 00:20:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:20:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:16.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:16.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.509ms +2024-05-23 00:20:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:20:31.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:31.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:31.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.8658ms +2024-05-23 00:20:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:20:46.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:46.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:20:46.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.3462ms +2024-05-23 00:21:01.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:21:01.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:01.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:01.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.756ms +2024-05-23 00:21:16.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:21:16.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:16.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:16.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.0929ms +2024-05-23 00:21:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:21:31.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:31.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:31.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.7256ms +2024-05-23 00:21:46.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:21:46.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:21:46.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6058ms +2024-05-23 00:22:01.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:22:01.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:01.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:01.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2348ms +2024-05-23 00:22:16.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:22:16.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:16.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:16.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2305ms +2024-05-23 00:22:31.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:22:31.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:31.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:31.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.1868ms +2024-05-23 00:22:46.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:22:46.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:46.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:22:46.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.7451ms +2024-05-23 00:23:01.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:23:01.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:01.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:01.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.8794ms +2024-05-23 00:23:16.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:23:16.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:16.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:16.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.9505ms +2024-05-23 00:23:31.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:23:31.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:31.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:31.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6556ms +2024-05-23 00:23:46.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:23:46.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:46.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:23:46.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5776ms +2024-05-23 00:24:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:24:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:01.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5337ms +2024-05-23 00:24:16.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:24:16.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:16.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:16.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3964ms +2024-05-23 00:24:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:24:31.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:31.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:31.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6148ms +2024-05-23 00:24:46.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:24:46.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:46.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:24:46.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.534ms +2024-05-23 00:25:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:25:01.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:01.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:01.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.5585ms +2024-05-23 00:25:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:25:16.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:16.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:16.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.4182ms +2024-05-23 00:25:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:25:31.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:31.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:31.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2858ms +2024-05-23 00:25:46.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:25:46.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:25:46.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.1645ms +2024-05-23 00:26:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:26:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:01.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:01.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6882ms +2024-05-23 00:26:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:26:16.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:16.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:16.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.0286ms +2024-05-23 00:26:31.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:26:31.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:31.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:31.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.0181ms +2024-05-23 00:26:46.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:26:46.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:46.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:26:46.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.2707ms +2024-05-23 00:27:01.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:27:01.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:01.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:01.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.329ms +2024-05-23 00:27:16.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:27:16.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:16.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:16.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.3461ms +2024-05-23 00:27:31.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:27:31.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:31.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:31.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.3862ms +2024-05-23 00:27:46.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:27:46.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:27:46.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6051ms +2024-05-23 00:28:01.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:28:01.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:01.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3639ms +2024-05-23 00:28:16.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:28:16.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:16.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:16.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.856ms +2024-05-23 00:28:31.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:28:31.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:31.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:31.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 78.5721ms +2024-05-23 00:28:46.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:28:46.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:46.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:28:46.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5168ms +2024-05-23 00:29:01.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:29:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:01.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:01.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.8225ms +2024-05-23 00:29:16.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:29:16.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:16.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:16.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.3959ms +2024-05-23 00:29:31.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:29:31.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:31.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:31.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.9556ms +2024-05-23 00:29:46.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:29:46.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:46.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:29:46.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.7654ms +2024-05-23 00:30:01.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:30:01.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:01.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:01.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.7336ms +2024-05-23 00:30:16.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:30:16.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:16.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:16.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.0474ms +2024-05-23 00:30:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:30:31.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:31.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:31.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4522ms +2024-05-23 00:30:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:30:46.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:46.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:30:46.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.8072ms +2024-05-23 00:31:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:31:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:01.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:01.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4848ms +2024-05-23 00:31:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:31:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:16.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:16.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.5023ms +2024-05-23 00:31:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:31:31.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:31.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:31.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 82.5649ms +2024-05-23 00:31:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:31:46.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:46.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:31:46.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.8192ms +2024-05-23 00:32:01.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:32:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:01.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:01.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.1224ms +2024-05-23 00:32:16.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:32:16.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:16.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:16.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 78.4615ms +2024-05-23 00:32:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:32:31.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:31.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:31.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.3085ms +2024-05-23 00:32:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:32:46.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:46.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:32:46.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.6258ms +2024-05-23 00:33:01.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:33:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:01.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5171ms +2024-05-23 00:33:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:33:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:16.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:16.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.012ms +2024-05-23 00:33:31.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:33:31.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:31.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:31.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4136ms +2024-05-23 00:33:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:33:46.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:46.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:33:46.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.4986ms +2024-05-23 00:34:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:34:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:01.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:01.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 88.9954ms +2024-05-23 00:34:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:34:16.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:16.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:16.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6207ms +2024-05-23 00:34:31.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:34:31.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:31.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:31.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2382ms +2024-05-23 00:34:46.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:34:46.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:46.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:34:46.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.8167ms +2024-05-23 00:35:01.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:35:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:01.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:01.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.9385ms +2024-05-23 00:35:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:35:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:16.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:16.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5961ms +2024-05-23 00:35:31.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:35:31.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:31.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:31.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.2582ms +2024-05-23 00:35:46.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:35:46.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:46.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:35:46.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.6898ms +2024-05-23 00:36:01.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:36:01.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:01.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2934ms +2024-05-23 00:36:16.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:36:16.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:16.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:16.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3696ms +2024-05-23 00:36:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:36:31.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:31.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:31.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.9837ms +2024-05-23 00:36:46.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:36:46.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:46.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:36:46.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 84.0498ms +2024-05-23 00:37:01.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:37:01.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:01.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.1514ms +2024-05-23 00:37:16.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:37:16.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:16.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:16.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.2366ms +2024-05-23 00:37:31.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:37:31.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:31.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:31.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.0035ms +2024-05-23 00:37:46.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:37:46.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:46.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:37:46.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.8066ms +2024-05-23 00:38:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:38:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:01.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:01.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4991ms +2024-05-23 00:38:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:38:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:16.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:16.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.2023ms +2024-05-23 00:38:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:38:31.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:31.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:31.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.2033ms +2024-05-23 00:38:46.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:38:46.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:38:46.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.4073ms +2024-05-23 00:39:01.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:39:01.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:01.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:01.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.4379ms +2024-05-23 00:39:16.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:39:16.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:16.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:16.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5553ms +2024-05-23 00:39:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:39:31.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:31.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:31.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.3334ms +2024-05-23 00:39:46.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:39:46.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:46.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:39:46.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.2612ms +2024-05-23 00:40:01.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:40:01.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:01.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:01.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.8729ms +2024-05-23 00:40:16.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:40:16.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:16.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:16.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.9103ms +2024-05-23 00:40:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:40:31.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:31.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:31.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 85.7895ms +2024-05-23 00:40:46.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:40:46.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:46.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:40:46.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4846ms +2024-05-23 00:41:01.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:41:01.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:01.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:01.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.5779ms +2024-05-23 00:41:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:41:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:16.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:16.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.3189ms +2024-05-23 00:41:31.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:41:31.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:31.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:31.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.0654ms +2024-05-23 00:41:46.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:41:46.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:46.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:41:46.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.3325ms +2024-05-23 00:42:01.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:42:01.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:01.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:01.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.8961ms +2024-05-23 00:42:16.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:42:16.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:16.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:16.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 105.0532ms +2024-05-23 00:42:31.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:42:31.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:31.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:31.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2971ms +2024-05-23 00:42:46.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:42:46.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:46.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:42:46.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.546ms +2024-05-23 00:43:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:43:01.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:01.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.2064ms +2024-05-23 00:43:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:43:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:16.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:16.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.5257ms +2024-05-23 00:43:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:43:31.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:31.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:31.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1444ms +2024-05-23 00:43:46.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:43:46.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:46.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:43:46.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.3851ms +2024-05-23 00:44:01.598 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:44:01.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:01.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.7484ms +2024-05-23 00:44:16.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:44:16.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:16.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:16.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.3378ms +2024-05-23 00:44:31.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:44:31.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:31.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:31.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.8027ms +2024-05-23 00:44:46.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:44:46.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:46.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:44:46.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.068ms +2024-05-23 00:45:01.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:45:01.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:01.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:01.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.3295ms +2024-05-23 00:45:16.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:45:16.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:16.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:16.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 122.641ms +2024-05-23 00:45:31.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:45:31.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:31.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:31.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.8432ms +2024-05-23 00:45:42.787 +02:00 [INF] Received a message with ID: '150e6aa924e64cce8ab95c2df814d84d', Correlation ID: '9672b65b510a467f88d457ef5f067d4e', timestamp: 1716417942, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:45:42.789 +02:00 [INF] Received a message with ID: '4e52f0dfd2084796857300b6ff301e55', Correlation ID: '3ad74352d97c49ccaf32e269d0a1488c', timestamp: 1716417942, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:45:42.790 +02:00 [INF] Handling a message: friend_request_sent with ID: 4e52f0dfd2084796857300b6ff301e55, Correlation ID: 3ad74352d97c49ccaf32e269d0a1488c, retry: 0 +2024-05-23 00:45:42.794 +02:00 [INF] Handling a message: friend_invited with ID: 150e6aa924e64cce8ab95c2df814d84d, Correlation ID: 9672b65b510a467f88d457ef5f067d4e, retry: 0 +2024-05-23 00:45:43.385 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:45:43.385 +02:00 [INF] Handled a message: friend_request_sent with ID: 4e52f0dfd2084796857300b6ff301e55, Correlation ID: 3ad74352d97c49ccaf32e269d0a1488c, retry: 0 +2024-05-23 00:45:43.401 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:45:43.401 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:45:43.401 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:45:43.436 +02:00 [INF] Received HTTP response headers after 35.4571ms - 200 +2024-05-23 00:45:43.437 +02:00 [INF] End processing HTTP request after 35.7697ms - 200 +2024-05-23 00:45:43.437 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:45:43.947 +02:00 [INF] Received a message with ID: 'a14aaaf2e3c447f0a5b7e45d5ed6fabe', Correlation ID: '423534a5182749cfbb057c1d1bdfca21', timestamp: 1716417943, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:45:43.947 +02:00 [INF] Handling a message: friend_request_sent with ID: a14aaaf2e3c447f0a5b7e45d5ed6fabe, Correlation ID: 423534a5182749cfbb057c1d1bdfca21, retry: 0 +2024-05-23 00:45:44.100 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:45:44.101 +02:00 [INF] Handled a message: friend_request_sent with ID: a14aaaf2e3c447f0a5b7e45d5ed6fabe, Correlation ID: 423534a5182749cfbb057c1d1bdfca21, retry: 0 +2024-05-23 00:45:54.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:45:54.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:54.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:54.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.7808ms +2024-05-23 00:45:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:45:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:54.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:45:54.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 67.889ms +2024-05-23 00:46:05.141 +02:00 [ERR] There was an error when processing a message with id: '150e6aa924e64cce8ab95c2df814d84d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:46:05.150 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:46:05.154 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '150e6aa924e64cce8ab95c2df814d84d', Correlation ID: '9672b65b510a467f88d457ef5f067d4e', retry 1/3... +2024-05-23 00:46:07.156 +02:00 [INF] Handling a message: friend_invited with ID: 150e6aa924e64cce8ab95c2df814d84d, Correlation ID: 9672b65b510a467f88d457ef5f067d4e, retry: 1 +2024-05-23 00:46:07.194 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:46:07.194 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:07.195 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:07.238 +02:00 [INF] Received HTTP response headers after 43.3857ms - 200 +2024-05-23 00:46:07.239 +02:00 [INF] End processing HTTP request after 44.1369ms - 200 +2024-05-23 00:46:07.239 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:46:09.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:46:09.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:09.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:09.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.9264ms +2024-05-23 00:46:24.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:46:24.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:24.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:24.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 71.1589ms +2024-05-23 00:46:31.436 +02:00 [ERR] There was an error when processing a message with id: '150e6aa924e64cce8ab95c2df814d84d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:46:31.440 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:46:31.443 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '150e6aa924e64cce8ab95c2df814d84d', Correlation ID: '9672b65b510a467f88d457ef5f067d4e', retry 2/3... +2024-05-23 00:46:33.443 +02:00 [INF] Handling a message: friend_invited with ID: 150e6aa924e64cce8ab95c2df814d84d, Correlation ID: 9672b65b510a467f88d457ef5f067d4e, retry: 2 +2024-05-23 00:46:33.478 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:46:33.478 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:33.478 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:33.515 +02:00 [INF] Received HTTP response headers after 37.5035ms - 200 +2024-05-23 00:46:33.516 +02:00 [INF] End processing HTTP request after 37.8239ms - 200 +2024-05-23 00:46:33.516 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:46:46.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:46:46.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:46.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:46.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.4455ms +2024-05-23 00:46:46.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:46:46.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:46.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:46:46.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 44.2824ms +2024-05-23 00:46:56.419 +02:00 [ERR] There was an error when processing a message with id: '150e6aa924e64cce8ab95c2df814d84d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:46:56.420 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:46:56.421 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '150e6aa924e64cce8ab95c2df814d84d', Correlation ID: '9672b65b510a467f88d457ef5f067d4e', retry 3/3... +2024-05-23 00:46:58.420 +02:00 [INF] Handling a message: friend_invited with ID: 150e6aa924e64cce8ab95c2df814d84d, Correlation ID: 9672b65b510a467f88d457ef5f067d4e, retry: 3 +2024-05-23 00:46:58.457 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:46:58.457 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:58.457 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:46:58.497 +02:00 [INF] Received HTTP response headers after 39.9035ms - 200 +2024-05-23 00:46:58.498 +02:00 [INF] End processing HTTP request after 41.2808ms - 200 +2024-05-23 00:46:58.498 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:47:01.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:47:01.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:01.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:01.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5185ms +2024-05-23 00:47:16.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:47:16.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:16.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:16.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 296.622ms +2024-05-23 00:47:20.629 +02:00 [ERR] There was an error when processing a message with id: '150e6aa924e64cce8ab95c2df814d84d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:47:20.630 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:47:20.631 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '150e6aa924e64cce8ab95c2df814d84d', Correlation ID: '9672b65b510a467f88d457ef5f067d4e', retry 4/3... +2024-05-23 00:47:20.631 +02:00 [ERR] Handling a message: friend_invited with ID: 150e6aa924e64cce8ab95c2df814d84d, Correlation ID: 9672b65b510a467f88d457ef5f067d4e failed +2024-05-23 00:47:20.632 +02:00 [INF] Received a message with ID: 'caf3f4168eb943679ceab89c238c14f4', Correlation ID: 'd8f88f0885964a19bf20737a05036c1c', timestamp: 1716417943, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:47:20.632 +02:00 [INF] Handling a message: friend_invited with ID: caf3f4168eb943679ceab89c238c14f4, Correlation ID: d8f88f0885964a19bf20737a05036c1c, retry: 0 +2024-05-23 00:47:20.667 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:47:20.667 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:47:20.667 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:47:20.704 +02:00 [INF] Received HTTP response headers after 36.9178ms - 200 +2024-05-23 00:47:20.704 +02:00 [INF] End processing HTTP request after 37.2835ms - 200 +2024-05-23 00:47:20.704 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:47:20.992 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:47:20.992 +02:00 [INF] Handled a message: friend_invited with ID: caf3f4168eb943679ceab89c238c14f4, Correlation ID: d8f88f0885964a19bf20737a05036c1c, retry: 0 +2024-05-23 00:47:31.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:47:31.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:31.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:31.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 65.8778ms +2024-05-23 00:47:46.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:47:46.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:46.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:47:46.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.178ms +2024-05-23 00:48:01.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:48:01.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:01.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:01.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.025ms +2024-05-23 00:48:16.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:48:16.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:16.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:16.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 86.3915ms +2024-05-23 00:48:24.052 +02:00 [INF] Received a message with ID: '2c3df74516674af6a0916ca5fa58d455', Correlation ID: '03f600b0ae9f429b8a3da389fe3bc4f5', timestamp: 1716418104, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:48:24.052 +02:00 [INF] Handling a message: friend_invited with ID: 2c3df74516674af6a0916ca5fa58d455, Correlation ID: 03f600b0ae9f429b8a3da389fe3bc4f5, retry: 0 +2024-05-23 00:48:24.060 +02:00 [INF] Received a message with ID: '6c3226111a6840b1ba9c773871ccdd26', Correlation ID: '1cd0989951b544f78dd988ce981ae571', timestamp: 1716418104, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:48:24.062 +02:00 [INF] Handling a message: friend_request_sent with ID: 6c3226111a6840b1ba9c773871ccdd26, Correlation ID: 1cd0989951b544f78dd988ce981ae571, retry: 0 +2024-05-23 00:48:24.092 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:48:24.093 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:48:24.093 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:48:24.131 +02:00 [INF] Received HTTP response headers after 37.7585ms - 200 +2024-05-23 00:48:24.131 +02:00 [INF] End processing HTTP request after 38.1756ms - 200 +2024-05-23 00:48:24.131 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:48:24.214 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:48:24.214 +02:00 [INF] Handled a message: friend_request_sent with ID: 6c3226111a6840b1ba9c773871ccdd26, Correlation ID: 1cd0989951b544f78dd988ce981ae571, retry: 0 +2024-05-23 00:48:31.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:48:31.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:31.593 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:31.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.5566ms +2024-05-23 00:48:46.503 +02:00 [ERR] There was an error when processing a message with id: '2c3df74516674af6a0916ca5fa58d455'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:48:46.508 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:48:46.513 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2c3df74516674af6a0916ca5fa58d455', Correlation ID: '03f600b0ae9f429b8a3da389fe3bc4f5', retry 1/3... +2024-05-23 00:48:46.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:48:46.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:48:46.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.7135ms +2024-05-23 00:48:48.510 +02:00 [INF] Handling a message: friend_invited with ID: 2c3df74516674af6a0916ca5fa58d455, Correlation ID: 03f600b0ae9f429b8a3da389fe3bc4f5, retry: 1 +2024-05-23 00:48:48.547 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:48:48.547 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:48:48.547 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:48:48.583 +02:00 [INF] Received HTTP response headers after 35.8313ms - 200 +2024-05-23 00:48:48.584 +02:00 [INF] End processing HTTP request after 36.3791ms - 200 +2024-05-23 00:48:48.584 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:49:01.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:49:01.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:01.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:01.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.8774ms +2024-05-23 00:49:10.523 +02:00 [ERR] There was an error when processing a message with id: '2c3df74516674af6a0916ca5fa58d455'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:49:10.527 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:49:10.529 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2c3df74516674af6a0916ca5fa58d455', Correlation ID: '03f600b0ae9f429b8a3da389fe3bc4f5', retry 2/3... +2024-05-23 00:49:12.529 +02:00 [INF] Handling a message: friend_invited with ID: 2c3df74516674af6a0916ca5fa58d455, Correlation ID: 03f600b0ae9f429b8a3da389fe3bc4f5, retry: 2 +2024-05-23 00:49:12.564 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:49:12.564 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:49:12.565 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:49:12.603 +02:00 [INF] Received HTTP response headers after 38.295ms - 200 +2024-05-23 00:49:12.603 +02:00 [INF] End processing HTTP request after 39.1006ms - 200 +2024-05-23 00:49:12.603 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:49:16.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:49:16.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:16.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:16.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 66.4189ms +2024-05-23 00:49:31.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:49:31.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:31.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:31.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.5754ms +2024-05-23 00:49:34.422 +02:00 [ERR] There was an error when processing a message with id: '2c3df74516674af6a0916ca5fa58d455'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:49:34.424 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:49:34.426 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2c3df74516674af6a0916ca5fa58d455', Correlation ID: '03f600b0ae9f429b8a3da389fe3bc4f5', retry 3/3... +2024-05-23 00:49:36.427 +02:00 [INF] Handling a message: friend_invited with ID: 2c3df74516674af6a0916ca5fa58d455, Correlation ID: 03f600b0ae9f429b8a3da389fe3bc4f5, retry: 3 +2024-05-23 00:49:36.463 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:49:36.463 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:49:36.464 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:49:36.498 +02:00 [INF] Received HTTP response headers after 34.4966ms - 200 +2024-05-23 00:49:36.498 +02:00 [INF] End processing HTTP request after 34.8499ms - 200 +2024-05-23 00:49:36.498 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:49:46.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:49:46.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:46.597 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:49:46.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.4413ms +2024-05-23 00:49:58.283 +02:00 [ERR] There was an error when processing a message with id: '2c3df74516674af6a0916ca5fa58d455'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:49:58.284 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:49:58.287 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2c3df74516674af6a0916ca5fa58d455', Correlation ID: '03f600b0ae9f429b8a3da389fe3bc4f5', retry 4/3... +2024-05-23 00:49:58.288 +02:00 [ERR] Handling a message: friend_invited with ID: 2c3df74516674af6a0916ca5fa58d455, Correlation ID: 03f600b0ae9f429b8a3da389fe3bc4f5 failed +2024-05-23 00:50:01.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:50:01.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:01.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:01.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6212ms +2024-05-23 00:50:16.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:50:16.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:16.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:16.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.6814ms +2024-05-23 00:50:16.991 +02:00 [INF] Received a message with ID: '2cdd9f9e92324210a3b655316b41f29c', Correlation ID: '83a6fbcf1bb24d8ab880eedd9bd18706', timestamp: 1716418216, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:50:16.992 +02:00 [INF] Handling a message: friend_invited with ID: 2cdd9f9e92324210a3b655316b41f29c, Correlation ID: 83a6fbcf1bb24d8ab880eedd9bd18706, retry: 0 +2024-05-23 00:50:16.998 +02:00 [INF] Received a message with ID: 'cae7c20a40f941c6878beaee2f879260', Correlation ID: 'e35dd56f59c541fbb1cd594a3b3d3a1b', timestamp: 1716418216, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:50:16.998 +02:00 [INF] Handling a message: friend_request_sent with ID: cae7c20a40f941c6878beaee2f879260, Correlation ID: e35dd56f59c541fbb1cd594a3b3d3a1b, retry: 0 +2024-05-23 00:50:17.030 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:50:17.030 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:17.031 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:17.070 +02:00 [INF] Received HTTP response headers after 39.1504ms - 200 +2024-05-23 00:50:17.072 +02:00 [INF] End processing HTTP request after 42.1026ms - 200 +2024-05-23 00:50:17.073 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:50:17.147 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:50:17.147 +02:00 [INF] Handled a message: friend_request_sent with ID: cae7c20a40f941c6878beaee2f879260, Correlation ID: e35dd56f59c541fbb1cd594a3b3d3a1b, retry: 0 +2024-05-23 00:50:17.296 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 00:50:17.297 +02:00 [INF] Handled a message: friend_invited with ID: 2cdd9f9e92324210a3b655316b41f29c, Correlation ID: 83a6fbcf1bb24d8ab880eedd9bd18706, retry: 0 +2024-05-23 00:50:20.210 +02:00 [INF] Received a message with ID: '32a93bf7782a4f21b5782b9bcf12ac89', Correlation ID: 'b5e92cc83a8d4ab5bc02b772b8eb1c4c', timestamp: 1716418220, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:50:20.210 +02:00 [INF] Received a message with ID: '2e8997fac5534315a1d796b166a6ea90', Correlation ID: '0ff2244b92994c619a9b44f07a02f4a5', timestamp: 1716418220, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:50:20.210 +02:00 [INF] Handling a message: friend_invited with ID: 32a93bf7782a4f21b5782b9bcf12ac89, Correlation ID: b5e92cc83a8d4ab5bc02b772b8eb1c4c, retry: 0 +2024-05-23 00:50:20.210 +02:00 [INF] Handling a message: friend_request_sent with ID: 2e8997fac5534315a1d796b166a6ea90, Correlation ID: 0ff2244b92994c619a9b44f07a02f4a5, retry: 0 +2024-05-23 00:50:20.246 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:50:20.247 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:20.248 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:20.285 +02:00 [INF] Received HTTP response headers after 36.3954ms - 200 +2024-05-23 00:50:20.285 +02:00 [INF] End processing HTTP request after 37.9651ms - 200 +2024-05-23 00:50:20.285 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:50:20.359 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:50:20.360 +02:00 [INF] Handled a message: friend_request_sent with ID: 2e8997fac5534315a1d796b166a6ea90, Correlation ID: 0ff2244b92994c619a9b44f07a02f4a5, retry: 0 +2024-05-23 00:50:31.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:50:31.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:31.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:31.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 85.1331ms +2024-05-23 00:50:43.494 +02:00 [ERR] There was an error when processing a message with id: '32a93bf7782a4f21b5782b9bcf12ac89'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:50:43.498 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:50:43.501 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '32a93bf7782a4f21b5782b9bcf12ac89', Correlation ID: 'b5e92cc83a8d4ab5bc02b772b8eb1c4c', retry 1/3... +2024-05-23 00:50:45.500 +02:00 [INF] Handling a message: friend_invited with ID: 32a93bf7782a4f21b5782b9bcf12ac89, Correlation ID: b5e92cc83a8d4ab5bc02b772b8eb1c4c, retry: 1 +2024-05-23 00:50:45.539 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:50:45.539 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:45.539 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:50:45.585 +02:00 [INF] Received HTTP response headers after 45.6318ms - 200 +2024-05-23 00:50:45.587 +02:00 [INF] End processing HTTP request after 48.2833ms - 200 +2024-05-23 00:50:45.588 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:50:46.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:50:46.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:50:46.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.2573ms +2024-05-23 00:51:01.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:51:01.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:01.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:01.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 67.3866ms +2024-05-23 00:51:08.683 +02:00 [ERR] There was an error when processing a message with id: '32a93bf7782a4f21b5782b9bcf12ac89'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:51:08.687 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:51:08.691 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '32a93bf7782a4f21b5782b9bcf12ac89', Correlation ID: 'b5e92cc83a8d4ab5bc02b772b8eb1c4c', retry 2/3... +2024-05-23 00:51:10.690 +02:00 [INF] Handling a message: friend_invited with ID: 32a93bf7782a4f21b5782b9bcf12ac89, Correlation ID: b5e92cc83a8d4ab5bc02b772b8eb1c4c, retry: 2 +2024-05-23 00:51:10.730 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:51:10.730 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:51:10.731 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:51:10.769 +02:00 [INF] Received HTTP response headers after 37.8854ms - 200 +2024-05-23 00:51:10.769 +02:00 [INF] End processing HTTP request after 38.9359ms - 200 +2024-05-23 00:51:10.770 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:51:16.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:51:16.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:16.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:16.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.1417ms +2024-05-23 00:51:31.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:51:31.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:31.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:31.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.0522ms +2024-05-23 00:51:32.538 +02:00 [ERR] There was an error when processing a message with id: '32a93bf7782a4f21b5782b9bcf12ac89'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:51:32.541 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:51:32.546 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '32a93bf7782a4f21b5782b9bcf12ac89', Correlation ID: 'b5e92cc83a8d4ab5bc02b772b8eb1c4c', retry 3/3... +2024-05-23 00:51:34.548 +02:00 [INF] Handling a message: friend_invited with ID: 32a93bf7782a4f21b5782b9bcf12ac89, Correlation ID: b5e92cc83a8d4ab5bc02b772b8eb1c4c, retry: 3 +2024-05-23 00:51:34.586 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:51:34.586 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:51:34.586 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:51:34.629 +02:00 [INF] Received HTTP response headers after 41.8464ms - 200 +2024-05-23 00:51:34.629 +02:00 [INF] End processing HTTP request after 43.0371ms - 200 +2024-05-23 00:51:34.629 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:51:46.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:51:46.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:46.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:51:46.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 83.4945ms +2024-05-23 00:51:56.819 +02:00 [ERR] There was an error when processing a message with id: '32a93bf7782a4f21b5782b9bcf12ac89'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:51:56.823 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:51:56.826 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '32a93bf7782a4f21b5782b9bcf12ac89', Correlation ID: 'b5e92cc83a8d4ab5bc02b772b8eb1c4c', retry 4/3... +2024-05-23 00:51:56.826 +02:00 [ERR] Handling a message: friend_invited with ID: 32a93bf7782a4f21b5782b9bcf12ac89, Correlation ID: b5e92cc83a8d4ab5bc02b772b8eb1c4c failed +2024-05-23 00:52:01.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:52:01.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:01.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:01.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.0521ms +2024-05-23 00:52:16.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:52:16.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:16.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:16.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.9039ms +2024-05-23 00:52:31.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:52:31.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:31.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:31.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.3807ms +2024-05-23 00:52:46.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:52:46.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:46.595 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:52:46.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.7976ms +2024-05-23 00:53:01.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:53:01.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:01.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:01.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.4555ms +2024-05-23 00:53:16.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:53:16.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:16.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:16.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.4169ms +2024-05-23 00:53:31.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:53:31.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:31.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:31.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 81.6846ms +2024-05-23 00:53:46.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:53:46.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:46.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:53:46.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.6804ms +2024-05-23 00:54:01.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:54:01.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:01.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:01.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.8258ms +2024-05-23 00:54:16.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:54:16.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:16.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:16.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.0243ms +2024-05-23 00:54:25.001 +02:00 [INF] Received a message with ID: '4e2fe58c41db40b3878080c325086f5b', Correlation ID: 'dbd45ab0fafc4ea1930a336f16d9ec4b', timestamp: 1716418464, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:54:25.001 +02:00 [INF] Handling a message: friend_invited with ID: 4e2fe58c41db40b3878080c325086f5b, Correlation ID: dbd45ab0fafc4ea1930a336f16d9ec4b, retry: 0 +2024-05-23 00:54:25.003 +02:00 [INF] Received a message with ID: 'baf47daf414840fd91fd52fbfbe1bf3b', Correlation ID: 'f9a7a9c1e4a04649b548adca4b6a0d18', timestamp: 1716418464, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:54:25.004 +02:00 [INF] Handling a message: friend_request_sent with ID: baf47daf414840fd91fd52fbfbe1bf3b, Correlation ID: f9a7a9c1e4a04649b548adca4b6a0d18, retry: 0 +2024-05-23 00:54:25.038 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:54:25.038 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:25.038 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:25.079 +02:00 [INF] Received HTTP response headers after 40.8819ms - 200 +2024-05-23 00:54:25.079 +02:00 [INF] End processing HTTP request after 41.2441ms - 200 +2024-05-23 00:54:25.079 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:54:25.156 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:54:25.156 +02:00 [INF] Handled a message: friend_request_sent with ID: baf47daf414840fd91fd52fbfbe1bf3b, Correlation ID: f9a7a9c1e4a04649b548adca4b6a0d18, retry: 0 +2024-05-23 00:54:25.423 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:54:25.424 +02:00 [INF] Handled a message: friend_invited with ID: 4e2fe58c41db40b3878080c325086f5b, Correlation ID: dbd45ab0fafc4ea1930a336f16d9ec4b, retry: 0 +2024-05-23 00:54:28.480 +02:00 [INF] Received a message with ID: 'd11b85f17fde4b70bcc4aec8fe593897', Correlation ID: '724c2af229fc4c46be277529cdaf7365', timestamp: 1716418468, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:54:28.481 +02:00 [INF] Handling a message: friend_invited with ID: d11b85f17fde4b70bcc4aec8fe593897, Correlation ID: 724c2af229fc4c46be277529cdaf7365, retry: 0 +2024-05-23 00:54:28.482 +02:00 [INF] Received a message with ID: '0226bcabb9c54b038bef018191565b14', Correlation ID: 'b2450d945a494541905065bbb873d9d0', timestamp: 1716418468, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:54:28.486 +02:00 [INF] Handling a message: friend_request_sent with ID: 0226bcabb9c54b038bef018191565b14, Correlation ID: b2450d945a494541905065bbb873d9d0, retry: 0 +2024-05-23 00:54:28.524 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:54:28.525 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:28.525 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:28.560 +02:00 [INF] Received HTTP response headers after 35.5917ms - 200 +2024-05-23 00:54:28.561 +02:00 [INF] End processing HTTP request after 35.9789ms - 200 +2024-05-23 00:54:28.561 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:54:28.640 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:54:28.641 +02:00 [INF] Handled a message: friend_request_sent with ID: 0226bcabb9c54b038bef018191565b14, Correlation ID: b2450d945a494541905065bbb873d9d0, retry: 0 +2024-05-23 00:54:31.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:54:31.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:31.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:31.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.3405ms +2024-05-23 00:54:42.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:54:42.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:42.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:42.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 175.9551ms +2024-05-23 00:54:42.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:54:42.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:42.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:42.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 141.2742ms +2024-05-23 00:54:52.746 +02:00 [ERR] There was an error when processing a message with id: 'd11b85f17fde4b70bcc4aec8fe593897'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:54:52.747 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:54:52.748 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd11b85f17fde4b70bcc4aec8fe593897', Correlation ID: '724c2af229fc4c46be277529cdaf7365', retry 1/3... +2024-05-23 00:54:54.747 +02:00 [INF] Handling a message: friend_invited with ID: d11b85f17fde4b70bcc4aec8fe593897, Correlation ID: 724c2af229fc4c46be277529cdaf7365, retry: 1 +2024-05-23 00:54:54.783 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:54:54.783 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:54.783 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:54:54.819 +02:00 [INF] Received HTTP response headers after 35.715ms - 200 +2024-05-23 00:54:54.819 +02:00 [INF] End processing HTTP request after 35.9631ms - 200 +2024-05-23 00:54:54.819 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:54:57.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:54:57.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:57.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:54:57.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 183.6761ms +2024-05-23 00:55:12.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 00:55:12.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:12.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:12.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 179.1727ms +2024-05-23 00:55:19.206 +02:00 [ERR] There was an error when processing a message with id: 'd11b85f17fde4b70bcc4aec8fe593897'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:55:19.209 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:55:19.211 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd11b85f17fde4b70bcc4aec8fe593897', Correlation ID: '724c2af229fc4c46be277529cdaf7365', retry 2/3... +2024-05-23 00:55:21.212 +02:00 [INF] Handling a message: friend_invited with ID: d11b85f17fde4b70bcc4aec8fe593897, Correlation ID: 724c2af229fc4c46be277529cdaf7365, retry: 2 +2024-05-23 00:55:21.248 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:55:21.248 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:55:21.248 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:55:21.283 +02:00 [INF] Received HTTP response headers after 34.8574ms - 200 +2024-05-23 00:55:21.283 +02:00 [INF] End processing HTTP request after 35.2132ms - 200 +2024-05-23 00:55:21.283 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:55:23.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:55:23.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:23.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:23.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.2085ms +2024-05-23 00:55:23.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:55:23.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:23.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:23.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 46.252ms +2024-05-23 00:55:38.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:55:38.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:38.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:38.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.5601ms +2024-05-23 00:55:44.576 +02:00 [ERR] There was an error when processing a message with id: 'd11b85f17fde4b70bcc4aec8fe593897'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:55:44.579 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:55:44.582 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd11b85f17fde4b70bcc4aec8fe593897', Correlation ID: '724c2af229fc4c46be277529cdaf7365', retry 3/3... +2024-05-23 00:55:46.579 +02:00 [INF] Handling a message: friend_invited with ID: d11b85f17fde4b70bcc4aec8fe593897, Correlation ID: 724c2af229fc4c46be277529cdaf7365, retry: 3 +2024-05-23 00:55:46.618 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:55:46.618 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:55:46.618 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:55:46.653 +02:00 [INF] Received HTTP response headers after 35.0992ms - 200 +2024-05-23 00:55:46.654 +02:00 [INF] End processing HTTP request after 35.6573ms - 200 +2024-05-23 00:55:46.654 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:55:53.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:55:53.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:53.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:55:53.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.0169ms +2024-05-23 00:56:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:56:08.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:08.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:08.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.039ms +2024-05-23 00:56:09.804 +02:00 [ERR] There was an error when processing a message with id: 'd11b85f17fde4b70bcc4aec8fe593897'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:56:09.807 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:56:09.810 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd11b85f17fde4b70bcc4aec8fe593897', Correlation ID: '724c2af229fc4c46be277529cdaf7365', retry 4/3... +2024-05-23 00:56:09.810 +02:00 [ERR] Handling a message: friend_invited with ID: d11b85f17fde4b70bcc4aec8fe593897, Correlation ID: 724c2af229fc4c46be277529cdaf7365 failed +2024-05-23 00:56:23.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:56:23.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:23.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:23.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2277ms +2024-05-23 00:56:38.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:56:38.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:38.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:38.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.3331ms +2024-05-23 00:56:53.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:56:53.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:53.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:56:53.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 81.0173ms +2024-05-23 00:57:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:57:08.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:08.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:08.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2833ms +2024-05-23 00:57:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:57:23.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:23.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:23.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1872ms +2024-05-23 00:57:25.281 +02:00 [INF] Received a message with ID: 'a422ba44942d46419d67be1e6540b796', Correlation ID: '0b853a8b2c594554b553add395dc3d28', timestamp: 1716418645, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:57:25.281 +02:00 [INF] Handling a message: friend_invited with ID: a422ba44942d46419d67be1e6540b796, Correlation ID: 0b853a8b2c594554b553add395dc3d28, retry: 0 +2024-05-23 00:57:25.281 +02:00 [INF] Received a message with ID: 'db70d2cf92bc4f079842084fde66243e', Correlation ID: '09a03179ab1f44f1bef1c2f0f088b5a7', timestamp: 1716418645, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:57:25.283 +02:00 [INF] Handling a message: friend_request_sent with ID: db70d2cf92bc4f079842084fde66243e, Correlation ID: 09a03179ab1f44f1bef1c2f0f088b5a7, retry: 0 +2024-05-23 00:57:25.322 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:57:25.322 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:57:25.322 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:57:25.361 +02:00 [INF] Received HTTP response headers after 38.078ms - 200 +2024-05-23 00:57:25.361 +02:00 [INF] End processing HTTP request after 38.4709ms - 200 +2024-05-23 00:57:25.361 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:57:25.439 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 00:57:25.439 +02:00 [INF] Handled a message: friend_request_sent with ID: db70d2cf92bc4f079842084fde66243e, Correlation ID: 09a03179ab1f44f1bef1c2f0f088b5a7, retry: 0 +2024-05-23 00:57:26.395 +02:00 [INF] Received a message with ID: 'ebabc1cc4e09451d9f35fe208091a16a', Correlation ID: '3a14b60150e048e0bfef687442000614', timestamp: 1716418646, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 00:57:26.397 +02:00 [INF] Handling a message: friend_request_sent with ID: ebabc1cc4e09451d9f35fe208091a16a, Correlation ID: 3a14b60150e048e0bfef687442000614, retry: 0 +2024-05-23 00:57:26.545 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:57:26.545 +02:00 [INF] Handled a message: friend_request_sent with ID: ebabc1cc4e09451d9f35fe208091a16a, Correlation ID: 3a14b60150e048e0bfef687442000614, retry: 0 +2024-05-23 00:57:38.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:57:38.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:38.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:38.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.9553ms +2024-05-23 00:57:47.638 +02:00 [ERR] There was an error when processing a message with id: 'a422ba44942d46419d67be1e6540b796'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:57:47.643 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:57:47.647 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a422ba44942d46419d67be1e6540b796', Correlation ID: '0b853a8b2c594554b553add395dc3d28', retry 1/3... +2024-05-23 00:57:49.646 +02:00 [INF] Handling a message: friend_invited with ID: a422ba44942d46419d67be1e6540b796, Correlation ID: 0b853a8b2c594554b553add395dc3d28, retry: 1 +2024-05-23 00:57:49.683 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:57:49.684 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:57:49.684 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:57:49.721 +02:00 [INF] Received HTTP response headers after 36.7027ms - 200 +2024-05-23 00:57:49.721 +02:00 [INF] End processing HTTP request after 37.3871ms - 200 +2024-05-23 00:57:49.721 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:57:53.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:57:53.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:53.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:57:53.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.8594ms +2024-05-23 00:58:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:58:08.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:08.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:08.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.12ms +2024-05-23 00:58:11.545 +02:00 [ERR] There was an error when processing a message with id: 'a422ba44942d46419d67be1e6540b796'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:58:11.548 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:58:11.552 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a422ba44942d46419d67be1e6540b796', Correlation ID: '0b853a8b2c594554b553add395dc3d28', retry 2/3... +2024-05-23 00:58:13.552 +02:00 [INF] Handling a message: friend_invited with ID: a422ba44942d46419d67be1e6540b796, Correlation ID: 0b853a8b2c594554b553add395dc3d28, retry: 2 +2024-05-23 00:58:13.588 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:58:13.588 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:58:13.588 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:58:13.622 +02:00 [INF] Received HTTP response headers after 34.1242ms - 200 +2024-05-23 00:58:13.622 +02:00 [INF] End processing HTTP request after 34.649ms - 200 +2024-05-23 00:58:13.622 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:58:23.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:58:23.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:23.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:23.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.2103ms +2024-05-23 00:58:38.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:58:38.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:38.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:38.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.464ms +2024-05-23 00:58:40.773 +02:00 [ERR] There was an error when processing a message with id: 'a422ba44942d46419d67be1e6540b796'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:58:40.775 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:58:40.777 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a422ba44942d46419d67be1e6540b796', Correlation ID: '0b853a8b2c594554b553add395dc3d28', retry 3/3... +2024-05-23 00:58:42.775 +02:00 [INF] Handling a message: friend_invited with ID: a422ba44942d46419d67be1e6540b796, Correlation ID: 0b853a8b2c594554b553add395dc3d28, retry: 3 +2024-05-23 00:58:42.810 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:58:42.810 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:58:42.811 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:58:42.850 +02:00 [INF] Received HTTP response headers after 38.9572ms - 200 +2024-05-23 00:58:42.850 +02:00 [INF] End processing HTTP request after 40.0807ms - 200 +2024-05-23 00:58:42.851 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:58:53.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:58:53.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:53.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:58:53.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.6757ms +2024-05-23 00:59:04.279 +02:00 [ERR] There was an error when processing a message with id: 'a422ba44942d46419d67be1e6540b796'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 00:59:04.280 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 00:59:04.282 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a422ba44942d46419d67be1e6540b796', Correlation ID: '0b853a8b2c594554b553add395dc3d28', retry 4/3... +2024-05-23 00:59:04.282 +02:00 [ERR] Handling a message: friend_invited with ID: a422ba44942d46419d67be1e6540b796, Correlation ID: 0b853a8b2c594554b553add395dc3d28 failed +2024-05-23 00:59:04.283 +02:00 [INF] Received a message with ID: '750d3614a2ec48e2851a5b04dc66e992', Correlation ID: '10d1c4d6a760405ea87ab574db0e8b6d', timestamp: 1716418646, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 00:59:04.283 +02:00 [INF] Handling a message: friend_invited with ID: 750d3614a2ec48e2851a5b04dc66e992, Correlation ID: 10d1c4d6a760405ea87ab574db0e8b6d, retry: 0 +2024-05-23 00:59:04.316 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 00:59:04.316 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:59:04.317 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 00:59:04.351 +02:00 [INF] Received HTTP response headers after 34.3531ms - 200 +2024-05-23 00:59:04.351 +02:00 [INF] End processing HTTP request after 34.6649ms - 200 +2024-05-23 00:59:04.351 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 00:59:04.829 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 00:59:04.829 +02:00 [INF] Handled a message: friend_invited with ID: 750d3614a2ec48e2851a5b04dc66e992, Correlation ID: 10d1c4d6a760405ea87ab574db0e8b6d, retry: 0 +2024-05-23 00:59:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:59:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:08.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:08.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.5732ms +2024-05-23 00:59:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:59:23.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:23.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:23.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3254ms +2024-05-23 00:59:38.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:59:38.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:38.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:38.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4021ms +2024-05-23 00:59:53.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 00:59:53.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:53.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 00:59:53.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6358ms +2024-05-23 01:00:08.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:00:08.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:09.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:09.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 164.2775ms +2024-05-23 01:00:23.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:00:23.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:23.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:23.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.8756ms +2024-05-23 01:00:38.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:00:38.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:39.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:39.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 177.0552ms +2024-05-23 01:00:53.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:00:53.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:54.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:00:54.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 184.3549ms +2024-05-23 01:01:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:01:08.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:09.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:09.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 140.7871ms +2024-05-23 01:01:23.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:01:23.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:24.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:24.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 125.6318ms +2024-05-23 01:01:38.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:01:38.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:38.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:38.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 110.8789ms +2024-05-23 01:01:53.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:01:53.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:53.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:01:53.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 108.2306ms +2024-05-23 01:02:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:02:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:08.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:08.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.6416ms +2024-05-23 01:02:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:02:23.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:23.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:23.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 86.1364ms +2024-05-23 01:02:38.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:02:38.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:38.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:38.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.1655ms +2024-05-23 01:02:53.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:02:53.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:53.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:02:53.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.0577ms +2024-05-23 01:03:08.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:03:08.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:08.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:08.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6447ms +2024-05-23 01:03:23.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:03:23.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:23.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:23.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.7432ms +2024-05-23 01:03:38.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:03:38.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:38.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:38.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 85.4202ms +2024-05-23 01:03:53.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:03:53.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:53.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:03:53.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 84.4009ms +2024-05-23 01:04:07.148 +02:00 [INF] Received a message with ID: '0011b61a5b8141da902e3808cc96a055', Correlation ID: 'd4d1f1cdbf5d4f77b2dd29fcf1b865c8', timestamp: 1716419047, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:04:07.149 +02:00 [INF] Handling a message: friend_invited with ID: 0011b61a5b8141da902e3808cc96a055, Correlation ID: d4d1f1cdbf5d4f77b2dd29fcf1b865c8, retry: 0 +2024-05-23 01:04:07.150 +02:00 [INF] Received a message with ID: '33e8a4ee8e8343a4974b59db15e10161', Correlation ID: 'ba24dbdee89c44a78513a1a77ad8656e', timestamp: 1716419047, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:04:07.150 +02:00 [INF] Handling a message: friend_request_sent with ID: 33e8a4ee8e8343a4974b59db15e10161, Correlation ID: ba24dbdee89c44a78513a1a77ad8656e, retry: 0 +2024-05-23 01:04:07.190 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:04:07.190 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:07.190 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:07.231 +02:00 [INF] Received HTTP response headers after 41.1346ms - 200 +2024-05-23 01:04:07.231 +02:00 [INF] End processing HTTP request after 41.5998ms - 200 +2024-05-23 01:04:07.232 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:04:07.312 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:04:07.313 +02:00 [INF] Handled a message: friend_request_sent with ID: 33e8a4ee8e8343a4974b59db15e10161, Correlation ID: ba24dbdee89c44a78513a1a77ad8656e, retry: 0 +2024-05-23 01:04:08.319 +02:00 [INF] Received a message with ID: '826d309843014699baf0c17d4c2fa6ec', Correlation ID: '2fc087d6c5b64914a0b1c3b3adb49921', timestamp: 1716419048, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:04:08.320 +02:00 [INF] Handling a message: friend_request_sent with ID: 826d309843014699baf0c17d4c2fa6ec, Correlation ID: 2fc087d6c5b64914a0b1c3b3adb49921, retry: 0 +2024-05-23 01:04:08.467 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:04:08.467 +02:00 [INF] Handled a message: friend_request_sent with ID: 826d309843014699baf0c17d4c2fa6ec, Correlation ID: 2fc087d6c5b64914a0b1c3b3adb49921, retry: 0 +2024-05-23 01:04:08.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:04:08.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:08.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:08.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1072ms +2024-05-23 01:04:23.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:04:23.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:23.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:23.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.4782ms +2024-05-23 01:04:29.199 +02:00 [ERR] There was an error when processing a message with id: '0011b61a5b8141da902e3808cc96a055'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:04:29.203 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:04:29.206 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0011b61a5b8141da902e3808cc96a055', Correlation ID: 'd4d1f1cdbf5d4f77b2dd29fcf1b865c8', retry 1/3... +2024-05-23 01:04:31.209 +02:00 [INF] Handling a message: friend_invited with ID: 0011b61a5b8141da902e3808cc96a055, Correlation ID: d4d1f1cdbf5d4f77b2dd29fcf1b865c8, retry: 1 +2024-05-23 01:04:31.250 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:04:31.250 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:31.251 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:31.285 +02:00 [INF] Received HTTP response headers after 33.9251ms - 200 +2024-05-23 01:04:31.287 +02:00 [INF] End processing HTTP request after 36.079ms - 200 +2024-05-23 01:04:31.287 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:04:38.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:04:38.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:38.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:38.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4896ms +2024-05-23 01:04:53.528 +02:00 [ERR] There was an error when processing a message with id: '0011b61a5b8141da902e3808cc96a055'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:04:53.532 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:04:53.534 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0011b61a5b8141da902e3808cc96a055', Correlation ID: 'd4d1f1cdbf5d4f77b2dd29fcf1b865c8', retry 2/3... +2024-05-23 01:04:53.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:04:53.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:53.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:04:53.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5983ms +2024-05-23 01:04:55.538 +02:00 [INF] Handling a message: friend_invited with ID: 0011b61a5b8141da902e3808cc96a055, Correlation ID: d4d1f1cdbf5d4f77b2dd29fcf1b865c8, retry: 2 +2024-05-23 01:04:55.575 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:04:55.575 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:55.576 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:04:55.613 +02:00 [INF] Received HTTP response headers after 37.4676ms - 200 +2024-05-23 01:04:55.614 +02:00 [INF] End processing HTTP request after 38.3255ms - 200 +2024-05-23 01:04:55.614 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:05:08.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:05:08.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:08.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:08.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 78.7928ms +2024-05-23 01:05:17.800 +02:00 [ERR] There was an error when processing a message with id: '0011b61a5b8141da902e3808cc96a055'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:05:17.801 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:05:17.802 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0011b61a5b8141da902e3808cc96a055', Correlation ID: 'd4d1f1cdbf5d4f77b2dd29fcf1b865c8', retry 3/3... +2024-05-23 01:05:19.803 +02:00 [INF] Handling a message: friend_invited with ID: 0011b61a5b8141da902e3808cc96a055, Correlation ID: d4d1f1cdbf5d4f77b2dd29fcf1b865c8, retry: 3 +2024-05-23 01:05:19.838 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:05:19.839 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:05:19.839 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:05:19.878 +02:00 [INF] Received HTTP response headers after 39.3607ms - 200 +2024-05-23 01:05:19.879 +02:00 [INF] End processing HTTP request after 39.992ms - 200 +2024-05-23 01:05:19.879 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:05:23.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:05:23.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:23.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:23.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.623ms +2024-05-23 01:05:38.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:05:38.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:39.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:39.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 174.809ms +2024-05-23 01:05:42.113 +02:00 [ERR] There was an error when processing a message with id: '0011b61a5b8141da902e3808cc96a055'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:05:42.117 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:05:42.123 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '0011b61a5b8141da902e3808cc96a055', Correlation ID: 'd4d1f1cdbf5d4f77b2dd29fcf1b865c8', retry 4/3... +2024-05-23 01:05:42.123 +02:00 [ERR] Handling a message: friend_invited with ID: 0011b61a5b8141da902e3808cc96a055, Correlation ID: d4d1f1cdbf5d4f77b2dd29fcf1b865c8 failed +2024-05-23 01:05:42.126 +02:00 [INF] Received a message with ID: 'cf0c69bf73854bcd812c6d4a3df33fca', Correlation ID: '3a4830b16f6045068371fca505ab233d', timestamp: 1716419048, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:05:42.127 +02:00 [INF] Handling a message: friend_invited with ID: cf0c69bf73854bcd812c6d4a3df33fca, Correlation ID: 3a4830b16f6045068371fca505ab233d, retry: 0 +2024-05-23 01:05:42.164 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:05:42.165 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:05:42.165 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:05:42.205 +02:00 [INF] Received HTTP response headers after 39.761ms - 200 +2024-05-23 01:05:42.207 +02:00 [INF] End processing HTTP request after 42.2055ms - 200 +2024-05-23 01:05:42.207 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:05:42.845 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:05:42.846 +02:00 [INF] Handled a message: friend_invited with ID: cf0c69bf73854bcd812c6d4a3df33fca, Correlation ID: 3a4830b16f6045068371fca505ab233d, retry: 0 +2024-05-23 01:05:53.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:05:53.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:53.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:05:53.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.706ms +2024-05-23 01:06:08.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:06:08.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:08.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:08.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.8455ms +2024-05-23 01:06:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:06:23.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:23.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:23.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6559ms +2024-05-23 01:06:38.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:06:38.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:38.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:38.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5717ms +2024-05-23 01:06:53.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:06:53.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:53.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:06:53.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.6258ms +2024-05-23 01:07:08.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:07:08.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:08.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:08.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.4845ms +2024-05-23 01:07:23.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:07:23.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:23.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:23.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.1904ms +2024-05-23 01:07:38.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:07:38.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:38.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:38.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.3392ms +2024-05-23 01:07:53.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:07:53.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:53.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:07:53.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.2756ms +2024-05-23 01:08:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:08:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:08.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:08.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.8175ms +2024-05-23 01:08:23.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:08:23.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:23.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:23.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.7989ms +2024-05-23 01:08:38.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:08:38.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:38.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:38.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.0391ms +2024-05-23 01:08:53.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:08:53.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:53.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:08:53.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.5459ms +2024-05-23 01:09:08.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:09:08.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:08.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:08.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.3865ms +2024-05-23 01:09:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:09:23.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:23.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:23.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 83.7438ms +2024-05-23 01:09:38.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:09:38.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:38.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:38.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.3309ms +2024-05-23 01:09:53.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:09:53.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:53.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:09:53.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.2376ms +2024-05-23 01:10:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:10:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:08.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:08.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 78.8611ms +2024-05-23 01:10:23.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:10:23.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:23.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:23.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.3833ms +2024-05-23 01:10:38.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:10:38.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:38.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:38.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.28ms +2024-05-23 01:10:53.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:10:53.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:53.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:10:53.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 81.3594ms +2024-05-23 01:11:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:11:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:08.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:08.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.571ms +2024-05-23 01:11:23.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:11:23.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:23.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:23.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.4285ms +2024-05-23 01:11:38.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:11:38.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:38.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:38.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.0089ms +2024-05-23 01:11:53.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:11:53.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:53.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:11:53.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 84.4427ms +2024-05-23 01:12:08.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:12:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:09.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:09.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 176.2734ms +2024-05-23 01:12:23.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:12:23.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:23.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:23.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 109.8662ms +2024-05-23 01:12:38.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:12:38.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:39.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:39.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 130.7053ms +2024-05-23 01:12:53.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:12:53.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:53.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:12:53.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 108.6789ms +2024-05-23 01:13:08.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:13:08.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:13:08.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:13:08.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2225ms +2024-05-23 01:13:23.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:13:23.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:13:23.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:13:23.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.8213ms +2024-05-23 01:13:33.419 +02:00 [INF] Received a message with ID: 'f5979bddea6b440595870d9d246c69cc', Correlation ID: 'fd03beb05447473eabd4c0a460c50d8d', timestamp: 1716419613, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:13:33.419 +02:00 [INF] Handling a message: friend_invited with ID: f5979bddea6b440595870d9d246c69cc, Correlation ID: fd03beb05447473eabd4c0a460c50d8d, retry: 0 +2024-05-23 01:13:33.427 +02:00 [INF] Received a message with ID: 'ff181f00bcea4e92a4c93ba43da7877b', Correlation ID: '6ff71ed7190146368ef591468c2141e0', timestamp: 1716419613, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:13:33.428 +02:00 [INF] Handling a message: friend_request_sent with ID: ff181f00bcea4e92a4c93ba43da7877b, Correlation ID: 6ff71ed7190146368ef591468c2141e0, retry: 0 +2024-05-23 01:13:33.456 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:13:33.456 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:13:33.456 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:13:33.501 +02:00 [INF] Received HTTP response headers after 44.2291ms - 200 +2024-05-23 01:13:33.501 +02:00 [INF] End processing HTTP request after 45.2508ms - 200 +2024-05-23 01:13:33.501 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:13:33.592 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:13:33.593 +02:00 [INF] Handled a message: friend_request_sent with ID: ff181f00bcea4e92a4c93ba43da7877b, Correlation ID: 6ff71ed7190146368ef591468c2141e0, retry: 0 +2024-05-23 01:13:34.724 +02:00 [INF] Received a message with ID: 'ddde6a2811584f3d8545fdd590f6c00f', Correlation ID: 'bb16e5e6f4b34bb2889ad60727d7b001', timestamp: 1716419614, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:13:34.725 +02:00 [INF] Handling a message: friend_request_sent with ID: ddde6a2811584f3d8545fdd590f6c00f, Correlation ID: bb16e5e6f4b34bb2889ad60727d7b001, retry: 0 +2024-05-23 01:13:34.875 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:13:34.875 +02:00 [INF] Handled a message: friend_request_sent with ID: ddde6a2811584f3d8545fdd590f6c00f, Correlation ID: bb16e5e6f4b34bb2889ad60727d7b001, retry: 0 +2024-05-23 01:13:48.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:13:48.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:13:57.504 +02:00 [ERR] There was an error when processing a message with id: 'f5979bddea6b440595870d9d246c69cc'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:13:57.505 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:13:57.506 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f5979bddea6b440595870d9d246c69cc', Correlation ID: 'fd03beb05447473eabd4c0a460c50d8d', retry 1/3... +2024-05-23 01:13:59.508 +02:00 [INF] Handling a message: friend_invited with ID: f5979bddea6b440595870d9d246c69cc, Correlation ID: fd03beb05447473eabd4c0a460c50d8d, retry: 1 +2024-05-23 01:13:59.544 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:13:59.544 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:13:59.544 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:13:59.589 +02:00 [INF] Received HTTP response headers after 44.7215ms - 200 +2024-05-23 01:13:59.590 +02:00 [INF] End processing HTTP request after 45.5397ms - 200 +2024-05-23 01:13:59.590 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:14:04.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:04.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16106.9998ms +2024-05-23 01:14:12.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:14:12.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:20.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:14:20.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:20.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:20.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.9397ms +2024-05-23 01:14:20.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:14:20.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:20.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:20.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 39.3029ms +2024-05-23 01:14:25.876 +02:00 [ERR] There was an error when processing a message with id: 'f5979bddea6b440595870d9d246c69cc'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:14:25.880 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:14:25.884 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f5979bddea6b440595870d9d246c69cc', Correlation ID: 'fd03beb05447473eabd4c0a460c50d8d', retry 2/3... +2024-05-23 01:14:27.882 +02:00 [INF] Handling a message: friend_invited with ID: f5979bddea6b440595870d9d246c69cc, Correlation ID: fd03beb05447473eabd4c0a460c50d8d, retry: 2 +2024-05-23 01:14:27.917 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:14:27.917 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:14:27.917 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:14:27.955 +02:00 [INF] Received HTTP response headers after 38.2626ms - 200 +2024-05-23 01:14:27.956 +02:00 [INF] End processing HTTP request after 38.7446ms - 200 +2024-05-23 01:14:27.956 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:14:29.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:29.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16323.3636ms +2024-05-23 01:14:35.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:14:35.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:35.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:35.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.9011ms +2024-05-23 01:14:49.943 +02:00 [ERR] There was an error when processing a message with id: 'f5979bddea6b440595870d9d246c69cc'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:14:49.948 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:14:49.949 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f5979bddea6b440595870d9d246c69cc', Correlation ID: 'fd03beb05447473eabd4c0a460c50d8d', retry 3/3... +2024-05-23 01:14:50.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:14:50.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:50.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:14:50.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.5301ms +2024-05-23 01:14:51.947 +02:00 [INF] Handling a message: friend_invited with ID: f5979bddea6b440595870d9d246c69cc, Correlation ID: fd03beb05447473eabd4c0a460c50d8d, retry: 3 +2024-05-23 01:14:51.985 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:14:51.985 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:14:51.985 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:14:52.020 +02:00 [INF] Received HTTP response headers after 35.1143ms - 200 +2024-05-23 01:14:52.021 +02:00 [INF] End processing HTTP request after 35.676ms - 200 +2024-05-23 01:14:52.021 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:15:05.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:15:05.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:05.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:05.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.8316ms +2024-05-23 01:15:14.141 +02:00 [ERR] There was an error when processing a message with id: 'f5979bddea6b440595870d9d246c69cc'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:15:14.147 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:15:14.152 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f5979bddea6b440595870d9d246c69cc', Correlation ID: 'fd03beb05447473eabd4c0a460c50d8d', retry 4/3... +2024-05-23 01:15:14.153 +02:00 [ERR] Handling a message: friend_invited with ID: f5979bddea6b440595870d9d246c69cc, Correlation ID: fd03beb05447473eabd4c0a460c50d8d failed +2024-05-23 01:15:14.165 +02:00 [INF] Received a message with ID: '2ac0e210b4a9449a965e3ec4bfda3926', Correlation ID: 'f3c5cf5964774a509aa55566ab3c8e8f', timestamp: 1716419614, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:15:14.166 +02:00 [INF] Handling a message: friend_invited with ID: 2ac0e210b4a9449a965e3ec4bfda3926, Correlation ID: f3c5cf5964774a509aa55566ab3c8e8f, retry: 0 +2024-05-23 01:15:14.206 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:15:14.207 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:15:14.207 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:15:14.246 +02:00 [INF] Received HTTP response headers after 38.3446ms - 200 +2024-05-23 01:15:14.246 +02:00 [INF] End processing HTTP request after 39.4218ms - 200 +2024-05-23 01:15:14.246 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:15:15.234 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:15:15.234 +02:00 [INF] Handled a message: friend_invited with ID: 2ac0e210b4a9449a965e3ec4bfda3926, Correlation ID: f3c5cf5964774a509aa55566ab3c8e8f, retry: 0 +2024-05-23 01:15:20.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:15:20.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:20.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:20.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 84.509ms +2024-05-23 01:15:35.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:15:35.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:35.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:35.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.9783ms +2024-05-23 01:15:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:15:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:50.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:15:50.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.652ms +2024-05-23 01:16:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:16:05.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:05.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:05.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.5545ms +2024-05-23 01:16:20.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:16:20.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:20.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:20.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4741ms +2024-05-23 01:16:35.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:16:35.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:36.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:36.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 89.7127ms +2024-05-23 01:16:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:16:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:50.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:16:50.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.8028ms +2024-05-23 01:17:05.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:17:05.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:05.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:05.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.3157ms +2024-05-23 01:17:20.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:17:20.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:20.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:20.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.7012ms +2024-05-23 01:17:35.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:17:35.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:35.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:35.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.8914ms +2024-05-23 01:17:50.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:17:50.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:50.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:17:51.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 93.9832ms +2024-05-23 01:18:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:18:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:05.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:05.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.1204ms +2024-05-23 01:18:20.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:18:20.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:20.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:20.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.7191ms +2024-05-23 01:18:29.304 +02:00 [INF] Received a message with ID: '10a19a7c6007440598c312650265e9f5', Correlation ID: 'bf6b97e75128409e8feabf529cbc48e8', timestamp: 1716419909, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:18:29.305 +02:00 [INF] Handling a message: friend_invited with ID: 10a19a7c6007440598c312650265e9f5, Correlation ID: bf6b97e75128409e8feabf529cbc48e8, retry: 0 +2024-05-23 01:18:29.310 +02:00 [INF] Received a message with ID: 'c4a1fed6fb02487fa591359dc26c6241', Correlation ID: '4f4e65d24bd2409789914efcf53b8d2a', timestamp: 1716419909, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:18:29.311 +02:00 [INF] Handling a message: friend_request_sent with ID: c4a1fed6fb02487fa591359dc26c6241, Correlation ID: 4f4e65d24bd2409789914efcf53b8d2a, retry: 0 +2024-05-23 01:18:29.348 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:18:29.348 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:29.348 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:29.392 +02:00 [INF] Received HTTP response headers after 44.0724ms - 200 +2024-05-23 01:18:29.394 +02:00 [INF] End processing HTTP request after 45.3884ms - 200 +2024-05-23 01:18:29.397 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:18:29.768 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:18:29.768 +02:00 [INF] Handled a message: friend_request_sent with ID: c4a1fed6fb02487fa591359dc26c6241, Correlation ID: 4f4e65d24bd2409789914efcf53b8d2a, retry: 0 +2024-05-23 01:18:30.134 +02:00 [INF] Received a message with ID: 'a04b59edecd24ac3bc0d0acff5c454f0', Correlation ID: 'b31870f97f2a4fd88d621b4e721b6da3', timestamp: 1716419910, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:18:30.135 +02:00 [INF] Handling a message: friend_request_sent with ID: a04b59edecd24ac3bc0d0acff5c454f0, Correlation ID: b31870f97f2a4fd88d621b4e721b6da3, retry: 0 +2024-05-23 01:18:30.361 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:18:30.361 +02:00 [INF] Handled a message: friend_request_sent with ID: a04b59edecd24ac3bc0d0acff5c454f0, Correlation ID: b31870f97f2a4fd88d621b4e721b6da3, retry: 0 +2024-05-23 01:18:31.917 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:18:31.919 +02:00 [INF] Handled a message: friend_invited with ID: 10a19a7c6007440598c312650265e9f5, Correlation ID: bf6b97e75128409e8feabf529cbc48e8, retry: 0 +2024-05-23 01:18:31.920 +02:00 [INF] Received a message with ID: 'a412c7660eb34c9c97ede7751059c3ad', Correlation ID: 'fc73661da6f94035a9493b5b917945ba', timestamp: 1716419910, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:18:31.921 +02:00 [INF] Handling a message: friend_invited with ID: a412c7660eb34c9c97ede7751059c3ad, Correlation ID: fc73661da6f94035a9493b5b917945ba, retry: 0 +2024-05-23 01:18:31.956 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:18:31.956 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:31.956 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:32.001 +02:00 [INF] Received HTTP response headers after 44.4873ms - 200 +2024-05-23 01:18:32.001 +02:00 [INF] End processing HTTP request after 45.0166ms - 200 +2024-05-23 01:18:32.001 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:18:35.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:18:35.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:35.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:35.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.9817ms +2024-05-23 01:18:50.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:18:50.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:50.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:18:50.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.0714ms +2024-05-23 01:18:54.019 +02:00 [ERR] There was an error when processing a message with id: 'a412c7660eb34c9c97ede7751059c3ad'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:18:54.023 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:18:54.026 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a412c7660eb34c9c97ede7751059c3ad', Correlation ID: 'fc73661da6f94035a9493b5b917945ba', retry 1/3... +2024-05-23 01:18:56.027 +02:00 [INF] Handling a message: friend_invited with ID: a412c7660eb34c9c97ede7751059c3ad, Correlation ID: fc73661da6f94035a9493b5b917945ba, retry: 1 +2024-05-23 01:18:56.063 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:18:56.063 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:56.063 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:18:56.099 +02:00 [INF] Received HTTP response headers after 36.1647ms - 200 +2024-05-23 01:18:56.100 +02:00 [INF] End processing HTTP request after 36.7112ms - 200 +2024-05-23 01:18:56.100 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:19:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:19:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:05.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:05.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.5554ms +2024-05-23 01:19:17.623 +02:00 [ERR] There was an error when processing a message with id: 'a412c7660eb34c9c97ede7751059c3ad'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:19:17.627 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:19:17.631 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a412c7660eb34c9c97ede7751059c3ad', Correlation ID: 'fc73661da6f94035a9493b5b917945ba', retry 2/3... +2024-05-23 01:19:19.632 +02:00 [INF] Handling a message: friend_invited with ID: a412c7660eb34c9c97ede7751059c3ad, Correlation ID: fc73661da6f94035a9493b5b917945ba, retry: 2 +2024-05-23 01:19:19.667 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:19:19.667 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:19:19.667 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:19:19.702 +02:00 [INF] Received HTTP response headers after 34.9734ms - 200 +2024-05-23 01:19:19.702 +02:00 [INF] End processing HTTP request after 35.336ms - 200 +2024-05-23 01:19:19.703 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:19:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:19:20.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:20.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:20.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.5427ms +2024-05-23 01:19:35.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:19:35.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:35.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:35.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.7151ms +2024-05-23 01:19:41.375 +02:00 [ERR] There was an error when processing a message with id: 'a412c7660eb34c9c97ede7751059c3ad'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:19:41.376 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:19:41.377 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a412c7660eb34c9c97ede7751059c3ad', Correlation ID: 'fc73661da6f94035a9493b5b917945ba', retry 3/3... +2024-05-23 01:19:43.375 +02:00 [INF] Handling a message: friend_invited with ID: a412c7660eb34c9c97ede7751059c3ad, Correlation ID: fc73661da6f94035a9493b5b917945ba, retry: 3 +2024-05-23 01:19:43.410 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:19:43.410 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:19:43.410 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:19:43.444 +02:00 [INF] Received HTTP response headers after 34.5007ms - 200 +2024-05-23 01:19:43.445 +02:00 [INF] End processing HTTP request after 34.8658ms - 200 +2024-05-23 01:19:43.445 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:19:50.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:19:50.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:50.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:19:50.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.633ms +2024-05-23 01:20:05.067 +02:00 [ERR] There was an error when processing a message with id: 'a412c7660eb34c9c97ede7751059c3ad'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:20:05.071 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:20:05.074 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'a412c7660eb34c9c97ede7751059c3ad', Correlation ID: 'fc73661da6f94035a9493b5b917945ba', retry 4/3... +2024-05-23 01:20:05.074 +02:00 [ERR] Handling a message: friend_invited with ID: a412c7660eb34c9c97ede7751059c3ad, Correlation ID: fc73661da6f94035a9493b5b917945ba failed +2024-05-23 01:20:05.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:20:05.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:05.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:05.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.4556ms +2024-05-23 01:20:20.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:20:20.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:20.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:20.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.0934ms +2024-05-23 01:20:35.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:20:35.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:35.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:35.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1328ms +2024-05-23 01:20:50.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:20:50.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:50.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:20:50.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.9147ms +2024-05-23 01:21:05.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:21:05.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:05.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:05.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.4653ms +2024-05-23 01:21:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:21:20.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:20.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:20.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.786ms +2024-05-23 01:21:35.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:21:35.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:35.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:35.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.3956ms +2024-05-23 01:21:50.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:21:50.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:50.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:21:50.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4764ms +2024-05-23 01:22:05.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:22:05.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:05.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:05.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.0538ms +2024-05-23 01:22:20.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:22:20.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:20.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:20.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.358ms +2024-05-23 01:22:35.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:22:35.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:35.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:35.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.2542ms +2024-05-23 01:22:50.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:22:50.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:50.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:22:50.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.5989ms +2024-05-23 01:23:05.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:23:05.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:05.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:05.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5402ms +2024-05-23 01:23:20.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:23:20.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:20.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:21.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 82.0181ms +2024-05-23 01:23:35.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:23:35.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:35.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:35.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.1664ms +2024-05-23 01:23:50.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:23:50.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:50.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:23:50.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.0637ms +2024-05-23 01:24:05.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:24:05.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:05.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:05.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.0521ms +2024-05-23 01:24:20.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:24:20.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:21.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:21.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 86.958ms +2024-05-23 01:24:35.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:24:35.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:35.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:35.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.2767ms +2024-05-23 01:24:50.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:24:50.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:50.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:24:50.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.7948ms +2024-05-23 01:25:05.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:25:05.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:05.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:05.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3574ms +2024-05-23 01:25:20.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:25:20.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:20.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:20.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.117ms +2024-05-23 01:25:35.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:25:35.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:35.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:35.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.1939ms +2024-05-23 01:25:50.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:25:50.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:51.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:25:51.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 81.7608ms +2024-05-23 01:26:05.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:26:05.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:05.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:05.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.6752ms +2024-05-23 01:26:20.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:26:20.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:20.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:20.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.7172ms +2024-05-23 01:26:35.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:26:35.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:35.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:35.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.366ms +2024-05-23 01:26:50.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:26:50.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:50.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:26:50.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.4875ms +2024-05-23 01:27:05.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:27:05.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:05.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:05.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.2691ms +2024-05-23 01:27:20.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:27:20.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:21.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:21.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 85.8064ms +2024-05-23 01:27:35.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:27:35.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:35.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:35.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4116ms +2024-05-23 01:27:50.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:27:50.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:50.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:27:50.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.5879ms +2024-05-23 01:28:05.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:28:05.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:05.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:05.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 82.0811ms +2024-05-23 01:28:06.015 +02:00 [INF] Received a message with ID: '674cba2bd21341f6a8bf63945ddb199a', Correlation ID: 'ec1c2bcb890f47d19b5a380230e44a54', timestamp: 1716420486, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:28:06.015 +02:00 [INF] Handling a message: friend_invited with ID: 674cba2bd21341f6a8bf63945ddb199a, Correlation ID: ec1c2bcb890f47d19b5a380230e44a54, retry: 0 +2024-05-23 01:28:06.018 +02:00 [INF] Received a message with ID: '25b4fb34f78c4ebf9e7a08336769b6a5', Correlation ID: '6618e17797b446afabcce4022cf08d29', timestamp: 1716420486, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:28:06.019 +02:00 [INF] Handling a message: friend_request_sent with ID: 25b4fb34f78c4ebf9e7a08336769b6a5, Correlation ID: 6618e17797b446afabcce4022cf08d29, retry: 0 +2024-05-23 01:28:06.050 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:28:06.051 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:06.051 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:06.089 +02:00 [INF] Received HTTP response headers after 38.0323ms - 200 +2024-05-23 01:28:06.089 +02:00 [INF] End processing HTTP request after 38.3561ms - 200 +2024-05-23 01:28:06.089 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:28:06.171 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:28:06.172 +02:00 [INF] Handled a message: friend_request_sent with ID: 25b4fb34f78c4ebf9e7a08336769b6a5, Correlation ID: 6618e17797b446afabcce4022cf08d29, retry: 0 +2024-05-23 01:28:07.026 +02:00 [INF] Received a message with ID: 'e03c1513d2b246f8b9c0c9d86a613c63', Correlation ID: '47ff950579234019b67f4095505b32d1', timestamp: 1716420487, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:28:07.027 +02:00 [INF] Handling a message: friend_request_sent with ID: e03c1513d2b246f8b9c0c9d86a613c63, Correlation ID: 47ff950579234019b67f4095505b32d1, retry: 0 +2024-05-23 01:28:07.223 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:28:07.223 +02:00 [INF] Handled a message: friend_request_sent with ID: e03c1513d2b246f8b9c0c9d86a613c63, Correlation ID: 47ff950579234019b67f4095505b32d1, retry: 0 +2024-05-23 01:28:09.418 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:28:09.418 +02:00 [INF] Handled a message: friend_invited with ID: 674cba2bd21341f6a8bf63945ddb199a, Correlation ID: ec1c2bcb890f47d19b5a380230e44a54, retry: 0 +2024-05-23 01:28:09.421 +02:00 [INF] Received a message with ID: 'd0a188bef9aa4cfe8600f97a046a2357', Correlation ID: '272d95b12e5e44028eb4be87d98eb6f8', timestamp: 1716420487, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:28:09.421 +02:00 [INF] Handling a message: friend_invited with ID: d0a188bef9aa4cfe8600f97a046a2357, Correlation ID: 272d95b12e5e44028eb4be87d98eb6f8, retry: 0 +2024-05-23 01:28:09.463 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:28:09.464 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:09.465 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:09.505 +02:00 [INF] Received HTTP response headers after 39.9998ms - 200 +2024-05-23 01:28:09.505 +02:00 [INF] End processing HTTP request after 40.8453ms - 200 +2024-05-23 01:28:09.505 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:28:20.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:28:20.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:21.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:21.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 83.5143ms +2024-05-23 01:28:31.949 +02:00 [ERR] There was an error when processing a message with id: 'd0a188bef9aa4cfe8600f97a046a2357'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:28:31.955 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:28:31.962 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd0a188bef9aa4cfe8600f97a046a2357', Correlation ID: '272d95b12e5e44028eb4be87d98eb6f8', retry 1/3... +2024-05-23 01:28:33.965 +02:00 [INF] Handling a message: friend_invited with ID: d0a188bef9aa4cfe8600f97a046a2357, Correlation ID: 272d95b12e5e44028eb4be87d98eb6f8, retry: 1 +2024-05-23 01:28:34.008 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:28:34.008 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:34.008 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:34.051 +02:00 [INF] Received HTTP response headers after 38.484ms - 200 +2024-05-23 01:28:34.052 +02:00 [INF] End processing HTTP request after 43.5886ms - 200 +2024-05-23 01:28:34.052 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:28:35.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:28:35.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:35.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:35.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.8334ms +2024-05-23 01:28:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:28:50.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:50.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:28:50.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.2041ms +2024-05-23 01:28:56.094 +02:00 [ERR] There was an error when processing a message with id: 'd0a188bef9aa4cfe8600f97a046a2357'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:28:56.097 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:28:56.100 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd0a188bef9aa4cfe8600f97a046a2357', Correlation ID: '272d95b12e5e44028eb4be87d98eb6f8', retry 2/3... +2024-05-23 01:28:58.102 +02:00 [INF] Handling a message: friend_invited with ID: d0a188bef9aa4cfe8600f97a046a2357, Correlation ID: 272d95b12e5e44028eb4be87d98eb6f8, retry: 2 +2024-05-23 01:28:58.139 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:28:58.139 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:58.139 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:28:58.175 +02:00 [INF] Received HTTP response headers after 35.7532ms - 200 +2024-05-23 01:28:58.175 +02:00 [INF] End processing HTTP request after 36.0825ms - 200 +2024-05-23 01:28:58.175 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:29:05.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:29:05.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:05.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:05.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 76.0866ms +2024-05-23 01:29:19.990 +02:00 [ERR] There was an error when processing a message with id: 'd0a188bef9aa4cfe8600f97a046a2357'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:29:19.995 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:29:19.999 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd0a188bef9aa4cfe8600f97a046a2357', Correlation ID: '272d95b12e5e44028eb4be87d98eb6f8', retry 3/3... +2024-05-23 01:29:20.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:29:20.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:20.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:20.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.7139ms +2024-05-23 01:29:22.002 +02:00 [INF] Handling a message: friend_invited with ID: d0a188bef9aa4cfe8600f97a046a2357, Correlation ID: 272d95b12e5e44028eb4be87d98eb6f8, retry: 3 +2024-05-23 01:29:22.039 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:29:22.039 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:29:22.039 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:29:22.077 +02:00 [INF] Received HTTP response headers after 37.2404ms - 200 +2024-05-23 01:29:22.077 +02:00 [INF] End processing HTTP request after 38.1963ms - 200 +2024-05-23 01:29:22.077 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:29:35.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:29:35.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:35.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:35.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.3677ms +2024-05-23 01:29:43.675 +02:00 [ERR] There was an error when processing a message with id: 'd0a188bef9aa4cfe8600f97a046a2357'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:29:43.679 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:29:43.682 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'd0a188bef9aa4cfe8600f97a046a2357', Correlation ID: '272d95b12e5e44028eb4be87d98eb6f8', retry 4/3... +2024-05-23 01:29:43.682 +02:00 [ERR] Handling a message: friend_invited with ID: d0a188bef9aa4cfe8600f97a046a2357, Correlation ID: 272d95b12e5e44028eb4be87d98eb6f8 failed +2024-05-23 01:29:50.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:29:50.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:50.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:29:50.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3613ms +2024-05-23 01:30:05.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:30:05.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:05.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:05.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.192ms +2024-05-23 01:30:20.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:30:20.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:20.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:20.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.7355ms +2024-05-23 01:30:35.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:30:35.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:35.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:35.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.0923ms +2024-05-23 01:30:50.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:30:50.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:50.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:30:50.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.616ms +2024-05-23 01:31:05.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:31:05.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:05.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:05.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.7383ms +2024-05-23 01:31:13.719 +02:00 [INF] Received a message with ID: '46c0ecd8c6d2456abed36f35d6b1ff3b', Correlation ID: '5ea44973bec341e799807facb2b4f025', timestamp: 1716420673, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:31:13.720 +02:00 [INF] Handling a message: friend_invited with ID: 46c0ecd8c6d2456abed36f35d6b1ff3b, Correlation ID: 5ea44973bec341e799807facb2b4f025, retry: 0 +2024-05-23 01:31:13.723 +02:00 [INF] Received a message with ID: '00b5407417434f6394a07b3f5decb76f', Correlation ID: 'c3134399295f4890bb56bdcf01b471ca', timestamp: 1716420673, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:31:13.724 +02:00 [INF] Handling a message: friend_request_sent with ID: 00b5407417434f6394a07b3f5decb76f, Correlation ID: c3134399295f4890bb56bdcf01b471ca, retry: 0 +2024-05-23 01:31:13.754 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:31:13.754 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:31:13.754 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:31:13.790 +02:00 [INF] Received HTTP response headers after 35.5804ms - 200 +2024-05-23 01:31:13.790 +02:00 [INF] End processing HTTP request after 36.0694ms - 200 +2024-05-23 01:31:13.790 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:31:13.873 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:31:13.874 +02:00 [INF] Handled a message: friend_request_sent with ID: 00b5407417434f6394a07b3f5decb76f, Correlation ID: c3134399295f4890bb56bdcf01b471ca, retry: 0 +2024-05-23 01:31:14.307 +02:00 [INF] Received a message with ID: '594ec4e2ad62458daaa5c63344403663', Correlation ID: '011346023b88410596f1482de20b42c9', timestamp: 1716420674, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:31:14.307 +02:00 [INF] Handling a message: friend_request_sent with ID: 594ec4e2ad62458daaa5c63344403663, Correlation ID: 011346023b88410596f1482de20b42c9, retry: 0 +2024-05-23 01:31:14.454 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:31:14.454 +02:00 [INF] Handled a message: friend_request_sent with ID: 594ec4e2ad62458daaa5c63344403663, Correlation ID: 011346023b88410596f1482de20b42c9, retry: 0 +2024-05-23 01:31:20.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:31:20.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:20.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:20.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 75.1801ms +2024-05-23 01:31:35.512 +02:00 [ERR] There was an error when processing a message with id: '46c0ecd8c6d2456abed36f35d6b1ff3b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:31:35.516 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:31:35.519 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '46c0ecd8c6d2456abed36f35d6b1ff3b', Correlation ID: '5ea44973bec341e799807facb2b4f025', retry 1/3... +2024-05-23 01:31:35.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:31:35.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:35.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:35.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.19ms +2024-05-23 01:31:37.520 +02:00 [INF] Handling a message: friend_invited with ID: 46c0ecd8c6d2456abed36f35d6b1ff3b, Correlation ID: 5ea44973bec341e799807facb2b4f025, retry: 1 +2024-05-23 01:31:37.559 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:31:37.559 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:31:37.559 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:31:37.600 +02:00 [INF] Received HTTP response headers after 40.9846ms - 200 +2024-05-23 01:31:37.602 +02:00 [INF] End processing HTTP request after 43.1294ms - 200 +2024-05-23 01:31:37.603 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:31:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:31:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:50.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:31:50.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.0007ms +2024-05-23 01:31:59.147 +02:00 [ERR] There was an error when processing a message with id: '46c0ecd8c6d2456abed36f35d6b1ff3b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:31:59.148 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:31:59.149 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '46c0ecd8c6d2456abed36f35d6b1ff3b', Correlation ID: '5ea44973bec341e799807facb2b4f025', retry 2/3... +2024-05-23 01:32:01.147 +02:00 [INF] Handling a message: friend_invited with ID: 46c0ecd8c6d2456abed36f35d6b1ff3b, Correlation ID: 5ea44973bec341e799807facb2b4f025, retry: 2 +2024-05-23 01:32:01.182 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:32:01.182 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:01.182 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:01.225 +02:00 [INF] Received HTTP response headers after 42.9739ms - 200 +2024-05-23 01:32:01.225 +02:00 [INF] End processing HTTP request after 43.2569ms - 200 +2024-05-23 01:32:01.226 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:32:05.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:32:05.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:05.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:05.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.2755ms +2024-05-23 01:32:20.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:32:20.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:20.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:20.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3566ms +2024-05-23 01:32:22.761 +02:00 [ERR] There was an error when processing a message with id: '46c0ecd8c6d2456abed36f35d6b1ff3b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:32:22.762 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:32:22.763 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '46c0ecd8c6d2456abed36f35d6b1ff3b', Correlation ID: '5ea44973bec341e799807facb2b4f025', retry 3/3... +2024-05-23 01:32:24.765 +02:00 [INF] Handling a message: friend_invited with ID: 46c0ecd8c6d2456abed36f35d6b1ff3b, Correlation ID: 5ea44973bec341e799807facb2b4f025, retry: 3 +2024-05-23 01:32:24.803 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:32:24.803 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:24.803 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:24.839 +02:00 [INF] Received HTTP response headers after 35.7432ms - 200 +2024-05-23 01:32:24.839 +02:00 [INF] End processing HTTP request after 36.0581ms - 200 +2024-05-23 01:32:24.839 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:32:35.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:32:35.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:35.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:35.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2801ms +2024-05-23 01:32:46.556 +02:00 [ERR] There was an error when processing a message with id: '46c0ecd8c6d2456abed36f35d6b1ff3b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:32:46.562 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:32:46.566 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '46c0ecd8c6d2456abed36f35d6b1ff3b', Correlation ID: '5ea44973bec341e799807facb2b4f025', retry 4/3... +2024-05-23 01:32:46.567 +02:00 [ERR] Handling a message: friend_invited with ID: 46c0ecd8c6d2456abed36f35d6b1ff3b, Correlation ID: 5ea44973bec341e799807facb2b4f025 failed +2024-05-23 01:32:46.568 +02:00 [INF] Received a message with ID: 'ef4b5e69b16e42fca4543924f94eec32', Correlation ID: '210a4446f2fe4a68a778598b75a74b49', timestamp: 1716420674, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:32:46.568 +02:00 [INF] Handling a message: friend_invited with ID: ef4b5e69b16e42fca4543924f94eec32, Correlation ID: 210a4446f2fe4a68a778598b75a74b49, retry: 0 +2024-05-23 01:32:46.605 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:32:46.605 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:46.606 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:32:46.645 +02:00 [INF] Received HTTP response headers after 38.8354ms - 200 +2024-05-23 01:32:46.646 +02:00 [INF] End processing HTTP request after 40.8452ms - 200 +2024-05-23 01:32:46.648 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:32:50.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:32:50.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:50.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:32:50.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 42.9271ms +2024-05-23 01:32:52.398 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:32:52.399 +02:00 [INF] Handled a message: friend_invited with ID: ef4b5e69b16e42fca4543924f94eec32, Correlation ID: 210a4446f2fe4a68a778598b75a74b49, retry: 0 +2024-05-23 01:33:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:33:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:05.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:05.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2767ms +2024-05-23 01:33:20.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:33:20.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:20.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:20.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.3993ms +2024-05-23 01:33:35.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:33:35.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:35.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:35.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.3102ms +2024-05-23 01:33:50.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:33:50.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:50.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:33:50.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 83.2322ms +2024-05-23 01:33:52.611 +02:00 [INF] Received a message with ID: 'c9fd60719937483cb944f519def64416', Correlation ID: '7201d01ea29f4ff4bcf1f40a5c81ad05', timestamp: 1716420832, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:33:52.611 +02:00 [INF] Handling a message: friend_invited with ID: c9fd60719937483cb944f519def64416, Correlation ID: 7201d01ea29f4ff4bcf1f40a5c81ad05, retry: 0 +2024-05-23 01:33:52.614 +02:00 [INF] Received a message with ID: 'ee04b3903cae493c9a5e2f2fb5fdca78', Correlation ID: 'a749912cc3f94c44a8e573db57010fed', timestamp: 1716420832, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:33:52.614 +02:00 [INF] Handling a message: friend_request_sent with ID: ee04b3903cae493c9a5e2f2fb5fdca78, Correlation ID: a749912cc3f94c44a8e573db57010fed, retry: 0 +2024-05-23 01:33:52.646 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:33:52.646 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:33:52.646 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:33:52.682 +02:00 [INF] Received HTTP response headers after 35.9095ms - 200 +2024-05-23 01:33:52.682 +02:00 [INF] End processing HTTP request after 36.2156ms - 200 +2024-05-23 01:33:52.682 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:33:52.767 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:33:52.768 +02:00 [INF] Handled a message: friend_request_sent with ID: ee04b3903cae493c9a5e2f2fb5fdca78, Correlation ID: a749912cc3f94c44a8e573db57010fed, retry: 0 +2024-05-23 01:33:53.808 +02:00 [INF] Received a message with ID: '7712e78f86b440338b12b5418788af38', Correlation ID: '5d4ce68d090049eabefde68161845ada', timestamp: 1716420833, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:33:53.809 +02:00 [INF] Handling a message: friend_request_sent with ID: 7712e78f86b440338b12b5418788af38, Correlation ID: 5d4ce68d090049eabefde68161845ada, retry: 0 +2024-05-23 01:33:53.972 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:33:53.973 +02:00 [INF] Handled a message: friend_request_sent with ID: 7712e78f86b440338b12b5418788af38, Correlation ID: 5d4ce68d090049eabefde68161845ada, retry: 0 +2024-05-23 01:34:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:34:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:05.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:05.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.7592ms +2024-05-23 01:34:14.416 +02:00 [ERR] There was an error when processing a message with id: 'c9fd60719937483cb944f519def64416'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:34:14.420 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:34:14.423 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c9fd60719937483cb944f519def64416', Correlation ID: '7201d01ea29f4ff4bcf1f40a5c81ad05', retry 1/3... +2024-05-23 01:34:16.424 +02:00 [INF] Handling a message: friend_invited with ID: c9fd60719937483cb944f519def64416, Correlation ID: 7201d01ea29f4ff4bcf1f40a5c81ad05, retry: 1 +2024-05-23 01:34:16.481 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:34:16.481 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:34:16.481 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:34:16.764 +02:00 [INF] Received HTTP response headers after 282.824ms - 200 +2024-05-23 01:34:16.765 +02:00 [INF] End processing HTTP request after 283.6455ms - 200 +2024-05-23 01:34:16.765 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:34:20.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:34:20.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:20.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:20.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.5732ms +2024-05-23 01:34:35.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:34:35.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:35.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:35.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.6018ms +2024-05-23 01:34:38.200 +02:00 [ERR] There was an error when processing a message with id: 'c9fd60719937483cb944f519def64416'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:34:38.201 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:34:38.202 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c9fd60719937483cb944f519def64416', Correlation ID: '7201d01ea29f4ff4bcf1f40a5c81ad05', retry 2/3... +2024-05-23 01:34:40.204 +02:00 [INF] Handling a message: friend_invited with ID: c9fd60719937483cb944f519def64416, Correlation ID: 7201d01ea29f4ff4bcf1f40a5c81ad05, retry: 2 +2024-05-23 01:34:40.240 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:34:40.240 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:34:40.240 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:34:40.277 +02:00 [INF] Received HTTP response headers after 37.2453ms - 200 +2024-05-23 01:34:40.278 +02:00 [INF] End processing HTTP request after 37.5808ms - 200 +2024-05-23 01:34:40.278 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:34:50.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:34:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:50.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:34:50.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.8865ms +2024-05-23 01:35:01.927 +02:00 [ERR] There was an error when processing a message with id: 'c9fd60719937483cb944f519def64416'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:35:01.929 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:35:01.931 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c9fd60719937483cb944f519def64416', Correlation ID: '7201d01ea29f4ff4bcf1f40a5c81ad05', retry 3/3... +2024-05-23 01:35:03.932 +02:00 [INF] Handling a message: friend_invited with ID: c9fd60719937483cb944f519def64416, Correlation ID: 7201d01ea29f4ff4bcf1f40a5c81ad05, retry: 3 +2024-05-23 01:35:03.968 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:35:03.968 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:03.969 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:04.006 +02:00 [INF] Received HTTP response headers after 37.3773ms - 200 +2024-05-23 01:35:04.006 +02:00 [INF] End processing HTTP request after 37.9686ms - 200 +2024-05-23 01:35:04.006 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:35:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:35:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:05.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:05.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.2566ms +2024-05-23 01:35:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:35:20.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:20.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:20.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5014ms +2024-05-23 01:35:25.731 +02:00 [ERR] There was an error when processing a message with id: 'c9fd60719937483cb944f519def64416'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:35:25.734 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:35:25.738 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'c9fd60719937483cb944f519def64416', Correlation ID: '7201d01ea29f4ff4bcf1f40a5c81ad05', retry 4/3... +2024-05-23 01:35:25.738 +02:00 [ERR] Handling a message: friend_invited with ID: c9fd60719937483cb944f519def64416, Correlation ID: 7201d01ea29f4ff4bcf1f40a5c81ad05 failed +2024-05-23 01:35:25.741 +02:00 [INF] Received a message with ID: 'a221f61bf4ad407088e82b9be3a1cb33', Correlation ID: 'f98d864820394e8188a3d6ace4da6718', timestamp: 1716420833, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:35:25.742 +02:00 [INF] Handling a message: friend_invited with ID: a221f61bf4ad407088e82b9be3a1cb33, Correlation ID: f98d864820394e8188a3d6ace4da6718, retry: 0 +2024-05-23 01:35:25.776 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:35:25.777 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:25.777 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:25.815 +02:00 [INF] Received HTTP response headers after 38.1644ms - 200 +2024-05-23 01:35:25.816 +02:00 [INF] End processing HTTP request after 38.9912ms - 200 +2024-05-23 01:35:25.816 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:35:35.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:35:35.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:35.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:35.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 74.6325ms +2024-05-23 01:35:36.902 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:35:36.902 +02:00 [INF] Handled a message: friend_invited with ID: a221f61bf4ad407088e82b9be3a1cb33, Correlation ID: f98d864820394e8188a3d6ace4da6718, retry: 0 +2024-05-23 01:35:45.015 +02:00 [INF] Received a message with ID: '285ca15f3639442ebf407ee39c8ab23d', Correlation ID: '8c9df7f8df5f4551b917691a9d903a25', timestamp: 1716420945, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:35:45.015 +02:00 [INF] Handling a message: friend_invited with ID: 285ca15f3639442ebf407ee39c8ab23d, Correlation ID: 8c9df7f8df5f4551b917691a9d903a25, retry: 0 +2024-05-23 01:35:45.017 +02:00 [INF] Received a message with ID: '5ceaf56b6ff24d1ab41ff117ec6f00fc', Correlation ID: '17326cbeb4ca40b2998a2ae9bec0d886', timestamp: 1716420945, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:35:45.017 +02:00 [INF] Handling a message: friend_request_sent with ID: 5ceaf56b6ff24d1ab41ff117ec6f00fc, Correlation ID: 17326cbeb4ca40b2998a2ae9bec0d886, retry: 0 +2024-05-23 01:35:45.050 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:35:45.050 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:45.051 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:35:45.085 +02:00 [INF] Received HTTP response headers after 34.4641ms - 200 +2024-05-23 01:35:45.085 +02:00 [INF] End processing HTTP request after 34.7731ms - 200 +2024-05-23 01:35:45.085 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:35:45.176 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:35:45.176 +02:00 [INF] Handled a message: friend_request_sent with ID: 5ceaf56b6ff24d1ab41ff117ec6f00fc, Correlation ID: 17326cbeb4ca40b2998a2ae9bec0d886, retry: 0 +2024-05-23 01:35:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:35:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:50.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:35:50.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.5605ms +2024-05-23 01:36:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:36:05.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:05.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:05.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 82.3555ms +2024-05-23 01:36:06.773 +02:00 [ERR] There was an error when processing a message with id: '285ca15f3639442ebf407ee39c8ab23d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:36:06.776 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:36:06.780 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '285ca15f3639442ebf407ee39c8ab23d', Correlation ID: '8c9df7f8df5f4551b917691a9d903a25', retry 1/3... +2024-05-23 01:36:08.779 +02:00 [INF] Handling a message: friend_invited with ID: 285ca15f3639442ebf407ee39c8ab23d, Correlation ID: 8c9df7f8df5f4551b917691a9d903a25, retry: 1 +2024-05-23 01:36:08.817 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:36:08.817 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:08.817 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:08.854 +02:00 [INF] Received HTTP response headers after 36.7994ms - 200 +2024-05-23 01:36:08.854 +02:00 [INF] End processing HTTP request after 37.0842ms - 200 +2024-05-23 01:36:08.854 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:36:20.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:36:20.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:20.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:20.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.3449ms +2024-05-23 01:36:30.833 +02:00 [ERR] There was an error when processing a message with id: '285ca15f3639442ebf407ee39c8ab23d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:36:30.837 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:36:30.840 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '285ca15f3639442ebf407ee39c8ab23d', Correlation ID: '8c9df7f8df5f4551b917691a9d903a25', retry 2/3... +2024-05-23 01:36:32.840 +02:00 [INF] Handling a message: friend_invited with ID: 285ca15f3639442ebf407ee39c8ab23d, Correlation ID: 8c9df7f8df5f4551b917691a9d903a25, retry: 2 +2024-05-23 01:36:32.877 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:36:32.877 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:32.878 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:32.918 +02:00 [INF] Received HTTP response headers after 39.6563ms - 200 +2024-05-23 01:36:32.918 +02:00 [INF] End processing HTTP request after 41.0774ms - 200 +2024-05-23 01:36:32.918 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:36:35.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:36:35.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:35.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:35.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5364ms +2024-05-23 01:36:50.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:36:50.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:50.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:36:50.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.8906ms +2024-05-23 01:36:54.421 +02:00 [ERR] There was an error when processing a message with id: '285ca15f3639442ebf407ee39c8ab23d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:36:54.422 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:36:54.424 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '285ca15f3639442ebf407ee39c8ab23d', Correlation ID: '8c9df7f8df5f4551b917691a9d903a25', retry 3/3... +2024-05-23 01:36:56.424 +02:00 [INF] Handling a message: friend_invited with ID: 285ca15f3639442ebf407ee39c8ab23d, Correlation ID: 8c9df7f8df5f4551b917691a9d903a25, retry: 3 +2024-05-23 01:36:56.463 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:36:56.464 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:56.464 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:36:56.501 +02:00 [INF] Received HTTP response headers after 36.9175ms - 200 +2024-05-23 01:36:56.501 +02:00 [INF] End processing HTTP request after 37.5478ms - 200 +2024-05-23 01:36:56.501 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:37:05.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:37:05.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:05.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:05.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.364ms +2024-05-23 01:37:19.078 +02:00 [ERR] There was an error when processing a message with id: '285ca15f3639442ebf407ee39c8ab23d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:37:19.080 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:37:19.081 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '285ca15f3639442ebf407ee39c8ab23d', Correlation ID: '8c9df7f8df5f4551b917691a9d903a25', retry 4/3... +2024-05-23 01:37:19.081 +02:00 [ERR] Handling a message: friend_invited with ID: 285ca15f3639442ebf407ee39c8ab23d, Correlation ID: 8c9df7f8df5f4551b917691a9d903a25 failed +2024-05-23 01:37:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:37:20.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:20.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:20.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.6486ms +2024-05-23 01:37:35.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:37:35.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:35.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:35.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 79.186ms +2024-05-23 01:37:50.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:37:50.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:50.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:37:50.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.7206ms +2024-05-23 01:38:05.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:38:05.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:06.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:06.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 116.5876ms +2024-05-23 01:38:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:38:20.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:20.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:20.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.5329ms +2024-05-23 01:38:35.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:38:35.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:36.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:36.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 85.2095ms +2024-05-23 01:38:37.786 +02:00 [INF] Received a message with ID: '642b0718ed9c49e0af13333933230c5c', Correlation ID: '322dd57ed79745b4b8eaf9884a808419', timestamp: 1716421117, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:38:37.788 +02:00 [INF] Handling a message: friend_invited with ID: 642b0718ed9c49e0af13333933230c5c, Correlation ID: 322dd57ed79745b4b8eaf9884a808419, retry: 0 +2024-05-23 01:38:37.792 +02:00 [INF] Received a message with ID: '9fc0625e88e7451595bd8309ecb35e28', Correlation ID: 'b82ed7f2306446f891d0c5065cd6d264', timestamp: 1716421117, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:38:37.792 +02:00 [INF] Handling a message: friend_request_sent with ID: 9fc0625e88e7451595bd8309ecb35e28, Correlation ID: b82ed7f2306446f891d0c5065cd6d264, retry: 0 +2024-05-23 01:38:37.823 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:38:37.823 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:38:37.823 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:38:37.866 +02:00 [INF] Received HTTP response headers after 42.3672ms - 200 +2024-05-23 01:38:37.866 +02:00 [INF] End processing HTTP request after 42.8088ms - 200 +2024-05-23 01:38:37.866 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:38:37.940 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:38:37.940 +02:00 [INF] Handled a message: friend_request_sent with ID: 9fc0625e88e7451595bd8309ecb35e28, Correlation ID: b82ed7f2306446f891d0c5065cd6d264, retry: 0 +2024-05-23 01:38:38.295 +02:00 [INF] Received a message with ID: 'bf12c014f6f746dab6a98347972496ce', Correlation ID: 'bad0eda588014c4aa43769001cb5ae50', timestamp: 1716421118, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:38:38.296 +02:00 [INF] Handling a message: friend_request_sent with ID: bf12c014f6f746dab6a98347972496ce, Correlation ID: bad0eda588014c4aa43769001cb5ae50, retry: 0 +2024-05-23 01:38:38.445 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:38:38.445 +02:00 [INF] Handled a message: friend_request_sent with ID: bf12c014f6f746dab6a98347972496ce, Correlation ID: bad0eda588014c4aa43769001cb5ae50, retry: 0 +2024-05-23 01:38:50.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:38:50.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:50.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:38:50.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.8603ms +2024-05-23 01:38:59.737 +02:00 [ERR] There was an error when processing a message with id: '642b0718ed9c49e0af13333933230c5c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:38:59.738 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:38:59.739 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '642b0718ed9c49e0af13333933230c5c', Correlation ID: '322dd57ed79745b4b8eaf9884a808419', retry 1/3... +2024-05-23 01:39:01.742 +02:00 [INF] Handling a message: friend_invited with ID: 642b0718ed9c49e0af13333933230c5c, Correlation ID: 322dd57ed79745b4b8eaf9884a808419, retry: 1 +2024-05-23 01:39:01.781 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:39:01.782 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:01.784 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:01.821 +02:00 [INF] Received HTTP response headers after 36.8515ms - 200 +2024-05-23 01:39:01.823 +02:00 [INF] End processing HTTP request after 41.5631ms - 200 +2024-05-23 01:39:01.823 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:39:05.589 +02:00 [INF] Received a message with ID: '585b8363ba6d4ba5a1226b6aee514d3f', Correlation ID: 'a04069c0f5e64254adfbc66f850ddc9b', timestamp: 1716421145, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:39:05.590 +02:00 [INF] Handling a message: friend_request_sent with ID: 585b8363ba6d4ba5a1226b6aee514d3f, Correlation ID: a04069c0f5e64254adfbc66f850ddc9b, retry: 0 +2024-05-23 01:39:05.740 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:39:05.741 +02:00 [INF] Handled a message: friend_request_sent with ID: 585b8363ba6d4ba5a1226b6aee514d3f, Correlation ID: a04069c0f5e64254adfbc66f850ddc9b, retry: 0 +2024-05-23 01:39:05.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:39:05.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:05.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:05.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1585ms +2024-05-23 01:39:06.398 +02:00 [INF] Received a message with ID: 'f4d3b44ac07f4df4aca3458da6015e92', Correlation ID: '8c178eba35634c72b3109503a1ebaac2', timestamp: 1716421146, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:39:06.400 +02:00 [INF] Handling a message: friend_request_sent with ID: f4d3b44ac07f4df4aca3458da6015e92, Correlation ID: 8c178eba35634c72b3109503a1ebaac2, retry: 0 +2024-05-23 01:39:06.561 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 01:39:06.561 +02:00 [INF] Handled a message: friend_request_sent with ID: f4d3b44ac07f4df4aca3458da6015e92, Correlation ID: 8c178eba35634c72b3109503a1ebaac2, retry: 0 +2024-05-23 01:39:07.681 +02:00 [INF] Received a message with ID: 'ebecf00f192447059fc62f3badb3b3a0', Correlation ID: 'f3be3e15f32c4288a1b87f3e28f197e4', timestamp: 1716421147, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:39:07.681 +02:00 [INF] Handling a message: friend_request_sent with ID: ebecf00f192447059fc62f3badb3b3a0, Correlation ID: f3be3e15f32c4288a1b87f3e28f197e4, retry: 0 +2024-05-23 01:39:07.834 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:39:07.835 +02:00 [INF] Handled a message: friend_request_sent with ID: ebecf00f192447059fc62f3badb3b3a0, Correlation ID: f3be3e15f32c4288a1b87f3e28f197e4, retry: 0 +2024-05-23 01:39:20.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:39:20.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:20.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:20.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.7468ms +2024-05-23 01:39:23.802 +02:00 [ERR] There was an error when processing a message with id: '642b0718ed9c49e0af13333933230c5c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:39:23.803 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:39:23.804 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '642b0718ed9c49e0af13333933230c5c', Correlation ID: '322dd57ed79745b4b8eaf9884a808419', retry 2/3... +2024-05-23 01:39:25.803 +02:00 [INF] Handling a message: friend_invited with ID: 642b0718ed9c49e0af13333933230c5c, Correlation ID: 322dd57ed79745b4b8eaf9884a808419, retry: 2 +2024-05-23 01:39:25.838 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:39:25.838 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:25.838 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:25.873 +02:00 [INF] Received HTTP response headers after 34.707ms - 200 +2024-05-23 01:39:25.873 +02:00 [INF] End processing HTTP request after 35.2947ms - 200 +2024-05-23 01:39:25.876 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:39:35.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:39:35.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:35.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:35.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.3435ms +2024-05-23 01:39:47.929 +02:00 [ERR] There was an error when processing a message with id: '642b0718ed9c49e0af13333933230c5c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:39:47.930 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:39:47.931 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '642b0718ed9c49e0af13333933230c5c', Correlation ID: '322dd57ed79745b4b8eaf9884a808419', retry 3/3... +2024-05-23 01:39:49.933 +02:00 [INF] Handling a message: friend_invited with ID: 642b0718ed9c49e0af13333933230c5c, Correlation ID: 322dd57ed79745b4b8eaf9884a808419, retry: 3 +2024-05-23 01:39:49.970 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:39:49.971 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:49.971 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:39:50.015 +02:00 [INF] Received HTTP response headers after 43.8784ms - 200 +2024-05-23 01:39:50.016 +02:00 [INF] End processing HTTP request after 45.1597ms - 200 +2024-05-23 01:39:50.016 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:39:50.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:39:50.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:50.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:39:50.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 82.1803ms +2024-05-23 01:40:05.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:40:05.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:05.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:05.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.4283ms +2024-05-23 01:40:11.909 +02:00 [ERR] There was an error when processing a message with id: '642b0718ed9c49e0af13333933230c5c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:40:11.913 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:40:11.917 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '642b0718ed9c49e0af13333933230c5c', Correlation ID: '322dd57ed79745b4b8eaf9884a808419', retry 4/3... +2024-05-23 01:40:11.917 +02:00 [ERR] Handling a message: friend_invited with ID: 642b0718ed9c49e0af13333933230c5c, Correlation ID: 322dd57ed79745b4b8eaf9884a808419 failed +2024-05-23 01:40:11.920 +02:00 [INF] Received a message with ID: '390229270cbb44de91420ea453e6c63c', Correlation ID: '59f6cc45cbb444129095723e08bfcbfd', timestamp: 1716421118, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:40:11.921 +02:00 [INF] Handling a message: friend_invited with ID: 390229270cbb44de91420ea453e6c63c, Correlation ID: 59f6cc45cbb444129095723e08bfcbfd, retry: 0 +2024-05-23 01:40:11.957 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:40:11.957 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:40:11.957 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:40:11.993 +02:00 [INF] Received HTTP response headers after 36.2204ms - 200 +2024-05-23 01:40:11.994 +02:00 [INF] End processing HTTP request after 37.0752ms - 200 +2024-05-23 01:40:11.994 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:40:18.044 +02:00 [INF] Received a message with ID: '2f398446ba864cdd98ee1cfca8d82708', Correlation ID: 'abe09a7dbf7241d6b66504e9b88b5f2d', timestamp: 1716421218, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:40:18.045 +02:00 [INF] Handling a message: friend_request_sent with ID: 2f398446ba864cdd98ee1cfca8d82708, Correlation ID: abe09a7dbf7241d6b66504e9b88b5f2d, retry: 0 +2024-05-23 01:40:18.194 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:40:18.194 +02:00 [INF] Handled a message: friend_request_sent with ID: 2f398446ba864cdd98ee1cfca8d82708, Correlation ID: abe09a7dbf7241d6b66504e9b88b5f2d, retry: 0 +2024-05-23 01:40:19.227 +02:00 [INF] Received a message with ID: 'f813ac3868f24da99bcd828677b168a4', Correlation ID: '75f539c006b04c35a56732e3aa74bef7', timestamp: 1716421219, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:40:19.228 +02:00 [INF] Handling a message: friend_request_sent with ID: f813ac3868f24da99bcd828677b168a4, Correlation ID: 75f539c006b04c35a56732e3aa74bef7, retry: 0 +2024-05-23 01:40:19.380 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:40:19.380 +02:00 [INF] Handled a message: friend_request_sent with ID: f813ac3868f24da99bcd828677b168a4, Correlation ID: 75f539c006b04c35a56732e3aa74bef7, retry: 0 +2024-05-23 01:40:20.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:40:20.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:20.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:20.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 69.9684ms +2024-05-23 01:40:31.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:40:31.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:31.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:31.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 80.4436ms +2024-05-23 01:40:31.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:40:31.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:31.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:31.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 37.3354ms +2024-05-23 01:40:33.947 +02:00 [ERR] There was an error when processing a message with id: '390229270cbb44de91420ea453e6c63c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:40:33.951 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:40:33.955 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '390229270cbb44de91420ea453e6c63c', Correlation ID: '59f6cc45cbb444129095723e08bfcbfd', retry 1/3... +2024-05-23 01:40:35.955 +02:00 [INF] Handling a message: friend_invited with ID: 390229270cbb44de91420ea453e6c63c, Correlation ID: 59f6cc45cbb444129095723e08bfcbfd, retry: 1 +2024-05-23 01:40:35.995 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:40:35.995 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:40:35.995 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:40:36.032 +02:00 [INF] Received HTTP response headers after 36.8315ms - 200 +2024-05-23 01:40:36.032 +02:00 [INF] End processing HTTP request after 37.3435ms - 200 +2024-05-23 01:40:36.033 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:40:46.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:40:46.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.1959ms +2024-05-23 01:40:57.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:40:57.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:40:58.153 +02:00 [ERR] There was an error when processing a message with id: '390229270cbb44de91420ea453e6c63c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:40:58.154 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:40:58.155 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '390229270cbb44de91420ea453e6c63c', Correlation ID: '59f6cc45cbb444129095723e08bfcbfd', retry 2/3... +2024-05-23 01:41:00.155 +02:00 [INF] Handling a message: friend_invited with ID: 390229270cbb44de91420ea453e6c63c, Correlation ID: 59f6cc45cbb444129095723e08bfcbfd, retry: 2 +2024-05-23 01:41:00.195 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:41:00.196 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:00.196 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:00.237 +02:00 [INF] Received HTTP response headers after 40.4292ms - 200 +2024-05-23 01:41:00.237 +02:00 [INF] End processing HTTP request after 41.3519ms - 200 +2024-05-23 01:41:00.237 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:41:14.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:41:14.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16639.3668ms +2024-05-23 01:41:20.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:41:20.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:41:21.605 +02:00 [ERR] There was an error when processing a message with id: '390229270cbb44de91420ea453e6c63c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:41:21.607 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:41:21.609 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '390229270cbb44de91420ea453e6c63c', Correlation ID: '59f6cc45cbb444129095723e08bfcbfd', retry 3/3... +2024-05-23 01:41:23.607 +02:00 [INF] Handling a message: friend_invited with ID: 390229270cbb44de91420ea453e6c63c, Correlation ID: 59f6cc45cbb444129095723e08bfcbfd, retry: 3 +2024-05-23 01:41:23.644 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:41:23.645 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:23.645 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:23.680 +02:00 [INF] Received HTTP response headers after 35.3021ms - 200 +2024-05-23 01:41:23.680 +02:00 [INF] End processing HTTP request after 35.6679ms - 200 +2024-05-23 01:41:23.680 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:41:29.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:41:29.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:41:37.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:41:37.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16508.6299ms +2024-05-23 01:41:40.498 +02:00 [INF] Received a message with ID: '524d479500294b388680dff5ebd8d0f4', Correlation ID: '2499b4b11acd4ab8962228ccf63095a2', timestamp: 1716421300, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:41:40.499 +02:00 [INF] Handling a message: friend_request_sent with ID: 524d479500294b388680dff5ebd8d0f4, Correlation ID: 2499b4b11acd4ab8962228ccf63095a2, retry: 0 +2024-05-23 01:41:40.652 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:41:40.653 +02:00 [INF] Handled a message: friend_request_sent with ID: 524d479500294b388680dff5ebd8d0f4, Correlation ID: 2499b4b11acd4ab8962228ccf63095a2, retry: 0 +2024-05-23 01:41:45.182 +02:00 [ERR] There was an error when processing a message with id: '390229270cbb44de91420ea453e6c63c'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:41:45.186 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:41:45.190 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '390229270cbb44de91420ea453e6c63c', Correlation ID: '59f6cc45cbb444129095723e08bfcbfd', retry 4/3... +2024-05-23 01:41:45.190 +02:00 [ERR] Handling a message: friend_invited with ID: 390229270cbb44de91420ea453e6c63c, Correlation ID: 59f6cc45cbb444129095723e08bfcbfd failed +2024-05-23 01:41:45.192 +02:00 [INF] Received a message with ID: '6aa5cf5cdab342d3a3b5176a44e8b73e', Correlation ID: '1b923faf99394d6b8540f2838b9af86b', timestamp: 1716421145, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:41:45.193 +02:00 [INF] Handling a message: friend_invited with ID: 6aa5cf5cdab342d3a3b5176a44e8b73e, Correlation ID: 1b923faf99394d6b8540f2838b9af86b, retry: 0 +2024-05-23 01:41:45.233 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:41:45.233 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:45.233 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:41:45.269 +02:00 [INF] Received HTTP response headers after 36.3611ms - 200 +2024-05-23 01:41:45.270 +02:00 [INF] End processing HTTP request after 36.941ms - 200 +2024-05-23 01:41:45.270 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:41:45.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:41:45.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16320.5306ms +2024-05-23 01:41:56.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:41:56.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:06.399 +02:00 [ERR] There was an error when processing a message with id: '6aa5cf5cdab342d3a3b5176a44e8b73e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:42:06.400 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:42:06.401 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '6aa5cf5cdab342d3a3b5176a44e8b73e', Correlation ID: '1b923faf99394d6b8540f2838b9af86b', retry 1/3... +2024-05-23 01:42:08.399 +02:00 [INF] Handling a message: friend_invited with ID: 6aa5cf5cdab342d3a3b5176a44e8b73e, Correlation ID: 1b923faf99394d6b8540f2838b9af86b, retry: 1 +2024-05-23 01:42:08.442 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:42:08.442 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:08.442 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:08.480 +02:00 [INF] Received HTTP response headers after 37.6208ms - 200 +2024-05-23 01:42:08.481 +02:00 [INF] End processing HTTP request after 38.4849ms - 200 +2024-05-23 01:42:08.481 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:42:12.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:12.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16149.3179ms +2024-05-23 01:42:15.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:42:15.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:29.471 +02:00 [ERR] There was an error when processing a message with id: '6aa5cf5cdab342d3a3b5176a44e8b73e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:42:29.476 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:42:29.480 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '6aa5cf5cdab342d3a3b5176a44e8b73e', Correlation ID: '1b923faf99394d6b8540f2838b9af86b', retry 2/3... +2024-05-23 01:42:31.481 +02:00 [INF] Handling a message: friend_invited with ID: 6aa5cf5cdab342d3a3b5176a44e8b73e, Correlation ID: 1b923faf99394d6b8540f2838b9af86b, retry: 2 +2024-05-23 01:42:31.514 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:42:31.515 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:31.515 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:31.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:31.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16112.557ms +2024-05-23 01:42:31.550 +02:00 [INF] Received HTTP response headers after 35.2043ms - 200 +2024-05-23 01:42:31.550 +02:00 [INF] End processing HTTP request after 35.5861ms - 200 +2024-05-23 01:42:31.550 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:42:33.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:42:33.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:33.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:33.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 72.506ms +2024-05-23 01:42:33.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:42:33.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:33.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:33.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 41.7939ms +2024-05-23 01:42:48.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:42:48.925 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:49.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:42:49.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 83.8035ms +2024-05-23 01:42:53.114 +02:00 [ERR] There was an error when processing a message with id: '6aa5cf5cdab342d3a3b5176a44e8b73e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:42:53.115 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:42:53.116 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '6aa5cf5cdab342d3a3b5176a44e8b73e', Correlation ID: '1b923faf99394d6b8540f2838b9af86b', retry 3/3... +2024-05-23 01:42:55.115 +02:00 [INF] Handling a message: friend_invited with ID: 6aa5cf5cdab342d3a3b5176a44e8b73e, Correlation ID: 1b923faf99394d6b8540f2838b9af86b, retry: 3 +2024-05-23 01:42:55.154 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:42:55.155 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:55.155 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:42:55.196 +02:00 [INF] Received HTTP response headers after 40.2839ms - 200 +2024-05-23 01:42:55.196 +02:00 [INF] End processing HTTP request after 41.0958ms - 200 +2024-05-23 01:42:55.196 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:43:03.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:43:03.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:03.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:03.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.6701ms +2024-05-23 01:43:16.392 +02:00 [ERR] There was an error when processing a message with id: '6aa5cf5cdab342d3a3b5176a44e8b73e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:43:16.393 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:43:16.394 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '6aa5cf5cdab342d3a3b5176a44e8b73e', Correlation ID: '1b923faf99394d6b8540f2838b9af86b', retry 4/3... +2024-05-23 01:43:16.394 +02:00 [ERR] Handling a message: friend_invited with ID: 6aa5cf5cdab342d3a3b5176a44e8b73e, Correlation ID: 1b923faf99394d6b8540f2838b9af86b failed +2024-05-23 01:43:16.395 +02:00 [INF] Received a message with ID: '51f18b27053c472ba15bf721ac56a975', Correlation ID: '74896b27b33e4696b23a79ffcd12b39a', timestamp: 1716421146, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:43:16.395 +02:00 [INF] Handling a message: friend_invited with ID: 51f18b27053c472ba15bf721ac56a975, Correlation ID: 74896b27b33e4696b23a79ffcd12b39a, retry: 0 +2024-05-23 01:43:16.429 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:43:16.429 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:16.430 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:16.466 +02:00 [INF] Received HTTP response headers after 35.8983ms - 200 +2024-05-23 01:43:16.466 +02:00 [INF] End processing HTTP request after 36.1976ms - 200 +2024-05-23 01:43:16.466 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:43:16.821 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 01:43:16.821 +02:00 [INF] Handled a message: friend_invited with ID: 51f18b27053c472ba15bf721ac56a975, Correlation ID: 74896b27b33e4696b23a79ffcd12b39a, retry: 0 +2024-05-23 01:43:16.823 +02:00 [INF] Received a message with ID: '13765707910642a787f2ddfa34483f19', Correlation ID: '9f5c858f75f04f788cc4b199f56c31f7', timestamp: 1716421147, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:43:16.823 +02:00 [INF] Handling a message: friend_invited with ID: 13765707910642a787f2ddfa34483f19, Correlation ID: 9f5c858f75f04f788cc4b199f56c31f7, retry: 0 +2024-05-23 01:43:16.857 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:43:16.857 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:16.858 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:16.895 +02:00 [INF] Received HTTP response headers after 37.2116ms - 200 +2024-05-23 01:43:16.896 +02:00 [INF] End processing HTTP request after 38.6471ms - 200 +2024-05-23 01:43:16.896 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:43:18.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:43:18.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:18.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:18.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 77.8898ms +2024-05-23 01:43:33.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:43:33.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:33.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:33.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 68.8549ms +2024-05-23 01:43:38.271 +02:00 [ERR] There was an error when processing a message with id: '13765707910642a787f2ddfa34483f19'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:43:38.275 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:43:38.278 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '13765707910642a787f2ddfa34483f19', Correlation ID: '9f5c858f75f04f788cc4b199f56c31f7', retry 1/3... +2024-05-23 01:43:40.279 +02:00 [INF] Handling a message: friend_invited with ID: 13765707910642a787f2ddfa34483f19, Correlation ID: 9f5c858f75f04f788cc4b199f56c31f7, retry: 1 +2024-05-23 01:43:40.316 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:43:40.316 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:40.316 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:43:40.358 +02:00 [INF] Received HTTP response headers after 41.2392ms - 200 +2024-05-23 01:43:40.358 +02:00 [INF] End processing HTTP request after 41.7977ms - 200 +2024-05-23 01:43:40.358 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:43:48.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:43:48.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:48.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:43:48.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.5427ms +2024-05-23 01:44:01.736 +02:00 [ERR] There was an error when processing a message with id: '13765707910642a787f2ddfa34483f19'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:44:01.739 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:44:01.743 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '13765707910642a787f2ddfa34483f19', Correlation ID: '9f5c858f75f04f788cc4b199f56c31f7', retry 2/3... +2024-05-23 01:44:03.743 +02:00 [INF] Handling a message: friend_invited with ID: 13765707910642a787f2ddfa34483f19, Correlation ID: 9f5c858f75f04f788cc4b199f56c31f7, retry: 2 +2024-05-23 01:44:03.778 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:44:03.778 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:03.778 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:03.812 +02:00 [INF] Received HTTP response headers after 34.2482ms - 200 +2024-05-23 01:44:03.812 +02:00 [INF] End processing HTTP request after 34.5689ms - 200 +2024-05-23 01:44:03.812 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:44:03.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:44:03.921 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:44:03.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:44:03.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 71.4444ms +2024-05-23 01:44:18.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:44:18.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:44:18.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:44:18.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 70.8209ms +2024-05-23 01:44:25.771 +02:00 [ERR] There was an error when processing a message with id: '13765707910642a787f2ddfa34483f19'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:44:25.772 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:44:25.773 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '13765707910642a787f2ddfa34483f19', Correlation ID: '9f5c858f75f04f788cc4b199f56c31f7', retry 3/3... +2024-05-23 01:44:27.772 +02:00 [INF] Handling a message: friend_invited with ID: 13765707910642a787f2ddfa34483f19, Correlation ID: 9f5c858f75f04f788cc4b199f56c31f7, retry: 3 +2024-05-23 01:44:27.807 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:44:27.807 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:27.807 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:27.842 +02:00 [INF] Received HTTP response headers after 34.3939ms - 200 +2024-05-23 01:44:27.842 +02:00 [INF] End processing HTTP request after 34.7949ms - 200 +2024-05-23 01:44:27.842 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:44:49.298 +02:00 [ERR] There was an error when processing a message with id: '13765707910642a787f2ddfa34483f19'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:44:49.303 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:44:49.308 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '13765707910642a787f2ddfa34483f19', Correlation ID: '9f5c858f75f04f788cc4b199f56c31f7', retry 4/3... +2024-05-23 01:44:49.308 +02:00 [ERR] Handling a message: friend_invited with ID: 13765707910642a787f2ddfa34483f19, Correlation ID: 9f5c858f75f04f788cc4b199f56c31f7 failed +2024-05-23 01:44:49.311 +02:00 [INF] Received a message with ID: '22d1b978d46344c6b4543a7e0c8f9d4e', Correlation ID: '06f72fffca41451aad256a74c733cceb', timestamp: 1716421218, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:44:49.311 +02:00 [INF] Handling a message: friend_invited with ID: 22d1b978d46344c6b4543a7e0c8f9d4e, Correlation ID: 06f72fffca41451aad256a74c733cceb, retry: 0 +2024-05-23 01:44:49.346 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:44:49.347 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:49.347 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:44:49.383 +02:00 [INF] Received HTTP response headers after 35.9494ms - 200 +2024-05-23 01:44:49.383 +02:00 [INF] End processing HTTP request after 36.5333ms - 200 +2024-05-23 01:44:49.384 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:45:07.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:45:07.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:07.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:07.918 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:45:07.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 51.8298ms +2024-05-23 01:45:07.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:45:07.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:07.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:07.965 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:45:07.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 42.6768ms +2024-05-23 01:45:10.796 +02:00 [ERR] There was an error when processing a message with id: '22d1b978d46344c6b4543a7e0c8f9d4e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:45:10.799 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:45:10.803 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '22d1b978d46344c6b4543a7e0c8f9d4e', Correlation ID: '06f72fffca41451aad256a74c733cceb', retry 1/3... +2024-05-23 01:45:12.804 +02:00 [INF] Handling a message: friend_invited with ID: 22d1b978d46344c6b4543a7e0c8f9d4e, Correlation ID: 06f72fffca41451aad256a74c733cceb, retry: 1 +2024-05-23 01:45:12.841 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:45:12.842 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:45:12.842 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:45:12.881 +02:00 [INF] Received HTTP response headers after 38.1362ms - 200 +2024-05-23 01:45:12.881 +02:00 [INF] End processing HTTP request after 39.2193ms - 200 +2024-05-23 01:45:12.881 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:45:22.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:45:22.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:22.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:22.955 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:45:22.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 34.5145ms +2024-05-23 01:45:34.355 +02:00 [ERR] There was an error when processing a message with id: '22d1b978d46344c6b4543a7e0c8f9d4e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:45:34.358 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:45:34.361 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '22d1b978d46344c6b4543a7e0c8f9d4e', Correlation ID: '06f72fffca41451aad256a74c733cceb', retry 2/3... +2024-05-23 01:45:36.359 +02:00 [INF] Handling a message: friend_invited with ID: 22d1b978d46344c6b4543a7e0c8f9d4e, Correlation ID: 06f72fffca41451aad256a74c733cceb, retry: 2 +2024-05-23 01:45:36.398 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:45:36.399 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:45:36.399 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:45:36.439 +02:00 [INF] Received HTTP response headers after 40.0608ms - 200 +2024-05-23 01:45:36.440 +02:00 [INF] End processing HTTP request after 41.1184ms - 200 +2024-05-23 01:45:36.440 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:45:37.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:45:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:37.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:37.960 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:45:37.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 38.796ms +2024-05-23 01:45:52.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:45:52.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:52.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:45:52.961 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:45:52.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 39.8512ms +2024-05-23 01:45:58.641 +02:00 [ERR] There was an error when processing a message with id: '22d1b978d46344c6b4543a7e0c8f9d4e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:45:58.644 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:45:58.648 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '22d1b978d46344c6b4543a7e0c8f9d4e', Correlation ID: '06f72fffca41451aad256a74c733cceb', retry 3/3... +2024-05-23 01:46:00.646 +02:00 [INF] Handling a message: friend_invited with ID: 22d1b978d46344c6b4543a7e0c8f9d4e, Correlation ID: 06f72fffca41451aad256a74c733cceb, retry: 3 +2024-05-23 01:46:00.686 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:46:00.686 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:00.686 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:00.722 +02:00 [INF] Received HTTP response headers after 35.3127ms - 200 +2024-05-23 01:46:00.722 +02:00 [INF] End processing HTTP request after 35.6513ms - 200 +2024-05-23 01:46:00.722 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:46:07.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:46:07.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:07.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:07.964 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:46:07.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 41.4354ms +2024-05-23 01:46:22.326 +02:00 [ERR] There was an error when processing a message with id: '22d1b978d46344c6b4543a7e0c8f9d4e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:46:22.327 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:46:22.327 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '22d1b978d46344c6b4543a7e0c8f9d4e', Correlation ID: '06f72fffca41451aad256a74c733cceb', retry 4/3... +2024-05-23 01:46:22.328 +02:00 [ERR] Handling a message: friend_invited with ID: 22d1b978d46344c6b4543a7e0c8f9d4e, Correlation ID: 06f72fffca41451aad256a74c733cceb failed +2024-05-23 01:46:22.328 +02:00 [INF] Received a message with ID: '41c2904e3bfc40c696d321f798898c56', Correlation ID: 'ab6751bb1f2247c8b844e2d54738b9ca', timestamp: 1716421219, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:46:22.328 +02:00 [INF] Handling a message: friend_invited with ID: 41c2904e3bfc40c696d321f798898c56, Correlation ID: ab6751bb1f2247c8b844e2d54738b9ca, retry: 0 +2024-05-23 01:46:22.376 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:46:22.376 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:22.377 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:22.415 +02:00 [INF] Received HTTP response headers after 37.7625ms - 200 +2024-05-23 01:46:22.415 +02:00 [INF] End processing HTTP request after 38.6692ms - 200 +2024-05-23 01:46:22.415 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:46:22.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:46:22.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:22.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:22.959 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:46:22.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 35.8953ms +2024-05-23 01:46:37.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:46:37.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:37.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:37.963 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:46:37.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 41.6149ms +2024-05-23 01:46:44.832 +02:00 [ERR] There was an error when processing a message with id: '41c2904e3bfc40c696d321f798898c56'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:46:44.836 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:46:44.839 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '41c2904e3bfc40c696d321f798898c56', Correlation ID: 'ab6751bb1f2247c8b844e2d54738b9ca', retry 1/3... +2024-05-23 01:46:46.840 +02:00 [INF] Handling a message: friend_invited with ID: 41c2904e3bfc40c696d321f798898c56, Correlation ID: ab6751bb1f2247c8b844e2d54738b9ca, retry: 1 +2024-05-23 01:46:46.874 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:46:46.875 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:46.875 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:46:46.910 +02:00 [INF] Received HTTP response headers after 35.4277ms - 200 +2024-05-23 01:46:46.910 +02:00 [INF] End processing HTTP request after 35.8899ms - 200 +2024-05-23 01:46:46.911 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:46:52.925 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:46:52.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:52.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:46:52.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:46:52.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 38.5117ms +2024-05-23 01:47:07.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:47:07.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:07.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:07.962 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:47:07.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 36.207ms +2024-05-23 01:47:08.727 +02:00 [ERR] There was an error when processing a message with id: '41c2904e3bfc40c696d321f798898c56'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:47:08.728 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:47:08.729 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '41c2904e3bfc40c696d321f798898c56', Correlation ID: 'ab6751bb1f2247c8b844e2d54738b9ca', retry 2/3... +2024-05-23 01:47:10.727 +02:00 [INF] Handling a message: friend_invited with ID: 41c2904e3bfc40c696d321f798898c56, Correlation ID: ab6751bb1f2247c8b844e2d54738b9ca, retry: 2 +2024-05-23 01:47:10.764 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:47:10.764 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:47:10.764 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:47:10.799 +02:00 [INF] Received HTTP response headers after 34.0553ms - 200 +2024-05-23 01:47:10.799 +02:00 [INF] End processing HTTP request after 34.2979ms - 200 +2024-05-23 01:47:10.799 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:47:22.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:47:22.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:22.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:22.966 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:47:22.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 40.1658ms +2024-05-23 01:47:22.978 +02:00 [INF] Received a message with ID: 'cabe8183d67e4a67b7bd6251faf5f60d', Correlation ID: '85941c0de0694a27aaa2485c09f08c52', timestamp: 1716421642, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:47:22.978 +02:00 [INF] Handling a message: friend_request_sent with ID: cabe8183d67e4a67b7bd6251faf5f60d, Correlation ID: 85941c0de0694a27aaa2485c09f08c52, retry: 0 +2024-05-23 01:47:23.139 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 01:47:23.139 +02:00 [INF] Handled a message: friend_request_sent with ID: cabe8183d67e4a67b7bd6251faf5f60d, Correlation ID: 85941c0de0694a27aaa2485c09f08c52, retry: 0 +2024-05-23 01:47:23.883 +02:00 [INF] Received a message with ID: '1e86490b17314748b8fb5f01e167f3f7', Correlation ID: '2b46246aed654bb1ae0272fdf8eaad42', timestamp: 1716421643, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:47:23.884 +02:00 [INF] Handling a message: friend_request_sent with ID: 1e86490b17314748b8fb5f01e167f3f7, Correlation ID: 2b46246aed654bb1ae0272fdf8eaad42, retry: 0 +2024-05-23 01:47:24.036 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:47:24.036 +02:00 [INF] Handled a message: friend_request_sent with ID: 1e86490b17314748b8fb5f01e167f3f7, Correlation ID: 2b46246aed654bb1ae0272fdf8eaad42, retry: 0 +2024-05-23 01:47:24.843 +02:00 [INF] Received a message with ID: 'c3abd71297184dc285c75a882b40ae68', Correlation ID: '42f1e462d81247c2ae7fce84941b62d1', timestamp: 1716421644, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:47:24.846 +02:00 [INF] Handling a message: friend_request_sent with ID: c3abd71297184dc285c75a882b40ae68, Correlation ID: 42f1e462d81247c2ae7fce84941b62d1, retry: 0 +2024-05-23 01:47:24.996 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 01:47:24.996 +02:00 [INF] Handled a message: friend_request_sent with ID: c3abd71297184dc285c75a882b40ae68, Correlation ID: 42f1e462d81247c2ae7fce84941b62d1, retry: 0 +2024-05-23 01:47:32.901 +02:00 [ERR] There was an error when processing a message with id: '41c2904e3bfc40c696d321f798898c56'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:47:32.902 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:47:32.903 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '41c2904e3bfc40c696d321f798898c56', Correlation ID: 'ab6751bb1f2247c8b844e2d54738b9ca', retry 3/3... +2024-05-23 01:47:34.902 +02:00 [INF] Handling a message: friend_invited with ID: 41c2904e3bfc40c696d321f798898c56, Correlation ID: ab6751bb1f2247c8b844e2d54738b9ca, retry: 3 +2024-05-23 01:47:34.936 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:47:34.937 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:47:34.937 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:47:34.976 +02:00 [INF] Received HTTP response headers after 38.7485ms - 200 +2024-05-23 01:47:34.976 +02:00 [INF] End processing HTTP request after 39.1227ms - 200 +2024-05-23 01:47:34.976 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:47:40.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:47:40.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:56.988 +02:00 [ERR] There was an error when processing a message with id: '41c2904e3bfc40c696d321f798898c56'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:47:56.992 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:47:56.995 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '41c2904e3bfc40c696d321f798898c56', Correlation ID: 'ab6751bb1f2247c8b844e2d54738b9ca', retry 4/3... +2024-05-23 01:47:56.995 +02:00 [ERR] Handling a message: friend_invited with ID: 41c2904e3bfc40c696d321f798898c56, Correlation ID: ab6751bb1f2247c8b844e2d54738b9ca failed +2024-05-23 01:47:56.999 +02:00 [INF] Received a message with ID: '23d8661bcd8c45c8bb53208db9260d5e', Correlation ID: 'c3c50c40e9244f02b11c60402b995bcc', timestamp: 1716421300, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:47:56.999 +02:00 [INF] Handling a message: friend_invited with ID: 23d8661bcd8c45c8bb53208db9260d5e, Correlation ID: c3c50c40e9244f02b11c60402b995bcc, retry: 0 +2024-05-23 01:47:57.036 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 01:47:57.037 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:47:57.037 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:47:57.087 +02:00 [INF] Received HTTP response headers after 49.6758ms - 200 +2024-05-23 01:47:57.087 +02:00 [INF] End processing HTTP request after 50.6328ms - 200 +2024-05-23 01:47:57.087 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:47:58.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:47:58.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 17537.342ms +2024-05-23 01:48:05.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:48:05.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:13.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:48:13.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:18.106 +02:00 [ERR] There was an error when processing a message with id: '23d8661bcd8c45c8bb53208db9260d5e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:48:18.109 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:48:18.112 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '23d8661bcd8c45c8bb53208db9260d5e', Correlation ID: 'c3c50c40e9244f02b11c60402b995bcc', retry 1/3... +2024-05-23 01:48:20.112 +02:00 [INF] Handling a message: friend_invited with ID: 23d8661bcd8c45c8bb53208db9260d5e, Correlation ID: c3c50c40e9244f02b11c60402b995bcc, retry: 1 +2024-05-23 01:48:20.147 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 01:48:20.147 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:48:20.147 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:48:20.192 +02:00 [INF] Received HTTP response headers after 44.0875ms - 200 +2024-05-23 01:48:20.192 +02:00 [INF] End processing HTTP request after 45.4184ms - 200 +2024-05-23 01:48:20.193 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:48:21.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:21.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16449.9609ms +2024-05-23 01:48:28.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:48:28.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:30.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:30.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16594.9122ms +2024-05-23 01:48:41.618 +02:00 [ERR] There was an error when processing a message with id: '23d8661bcd8c45c8bb53208db9260d5e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:48:41.622 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:48:41.625 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '23d8661bcd8c45c8bb53208db9260d5e', Correlation ID: 'c3c50c40e9244f02b11c60402b995bcc', retry 2/3... +2024-05-23 01:48:43.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:48:43.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:43.628 +02:00 [INF] Handling a message: friend_invited with ID: 23d8661bcd8c45c8bb53208db9260d5e, Correlation ID: c3c50c40e9244f02b11c60402b995bcc, retry: 2 +2024-05-23 01:48:43.665 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 01:48:43.665 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:48:43.666 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:48:43.710 +02:00 [INF] Received HTTP response headers after 44.0962ms - 200 +2024-05-23 01:48:43.711 +02:00 [INF] End processing HTTP request after 45.4213ms - 200 +2024-05-23 01:48:43.711 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:48:44.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:44.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16429.7303ms +2024-05-23 01:48:58.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:48:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:59.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:48:59.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16454.782ms +2024-05-23 01:49:06.919 +02:00 [ERR] There was an error when processing a message with id: '23d8661bcd8c45c8bb53208db9260d5e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:49:06.922 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:49:06.925 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '23d8661bcd8c45c8bb53208db9260d5e', Correlation ID: 'c3c50c40e9244f02b11c60402b995bcc', retry 3/3... +2024-05-23 01:49:08.922 +02:00 [INF] Handling a message: friend_invited with ID: 23d8661bcd8c45c8bb53208db9260d5e, Correlation ID: c3c50c40e9244f02b11c60402b995bcc, retry: 3 +2024-05-23 01:49:08.959 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 01:49:08.959 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:49:08.960 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 01:49:09.003 +02:00 [INF] Received HTTP response headers after 43.2215ms - 200 +2024-05-23 01:49:09.004 +02:00 [INF] End processing HTTP request after 44.1648ms - 200 +2024-05-23 01:49:09.004 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:49:13.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:49:13.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:14.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:14.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16339.5837ms +2024-05-23 01:49:28.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:49:28.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:29.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:29.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16447.3138ms +2024-05-23 01:49:31.050 +02:00 [ERR] There was an error when processing a message with id: '23d8661bcd8c45c8bb53208db9260d5e'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:49:31.051 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:49:31.052 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '23d8661bcd8c45c8bb53208db9260d5e', Correlation ID: 'c3c50c40e9244f02b11c60402b995bcc', retry 4/3... +2024-05-23 01:49:31.052 +02:00 [ERR] Handling a message: friend_invited with ID: 23d8661bcd8c45c8bb53208db9260d5e, Correlation ID: c3c50c40e9244f02b11c60402b995bcc failed +2024-05-23 01:49:31.053 +02:00 [INF] Received a message with ID: '4c1147f8ef5c4a7f832ceb6f752a0fcb', Correlation ID: 'ad56c45778b44c69a1c8db7b5751f3b1', timestamp: 1716421642, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:49:31.053 +02:00 [INF] Handling a message: friend_invited with ID: 4c1147f8ef5c4a7f832ceb6f752a0fcb, Correlation ID: ad56c45778b44c69a1c8db7b5751f3b1, retry: 0 +2024-05-23 01:49:31.087 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:49:31.088 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:31.088 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:31.128 +02:00 [INF] Received HTTP response headers after 40.0968ms - 200 +2024-05-23 01:49:31.129 +02:00 [INF] End processing HTTP request after 40.9114ms - 200 +2024-05-23 01:49:31.129 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:49:31.414 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 01:49:31.414 +02:00 [INF] Handled a message: friend_invited with ID: 4c1147f8ef5c4a7f832ceb6f752a0fcb, Correlation ID: ad56c45778b44c69a1c8db7b5751f3b1, retry: 0 +2024-05-23 01:49:31.415 +02:00 [INF] Received a message with ID: 'acf5fec1b3174b0982adabb462d9a78b', Correlation ID: 'c5474859946446c7b9ba134bdc2ef396', timestamp: 1716421643, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:49:31.415 +02:00 [INF] Handling a message: friend_invited with ID: acf5fec1b3174b0982adabb462d9a78b, Correlation ID: c5474859946446c7b9ba134bdc2ef396, retry: 0 +2024-05-23 01:49:31.450 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:49:31.451 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:31.451 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:31.488 +02:00 [INF] Received HTTP response headers after 37.1557ms - 200 +2024-05-23 01:49:31.488 +02:00 [INF] End processing HTTP request after 37.4896ms - 200 +2024-05-23 01:49:31.488 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:49:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:49:43.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:45.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:45.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16645.5524ms +2024-05-23 01:49:52.196 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:49:52.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:52.937 +02:00 [ERR] There was an error when processing a message with id: 'acf5fec1b3174b0982adabb462d9a78b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:49:52.941 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:49:52.944 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'acf5fec1b3174b0982adabb462d9a78b', Correlation ID: 'c5474859946446c7b9ba134bdc2ef396', retry 1/3... +2024-05-23 01:49:54.943 +02:00 [INF] Handling a message: friend_invited with ID: acf5fec1b3174b0982adabb462d9a78b, Correlation ID: c5474859946446c7b9ba134bdc2ef396, retry: 1 +2024-05-23 01:49:54.981 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:49:54.982 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:54.982 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:49:55.025 +02:00 [INF] Received HTTP response headers after 42.6191ms - 200 +2024-05-23 01:49:55.025 +02:00 [INF] End processing HTTP request after 43.609ms - 200 +2024-05-23 01:49:55.025 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:49:59.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:49:59.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16215.588ms +2024-05-23 01:50:08.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:08.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16332.9501ms +2024-05-23 01:50:15.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:50:15.617 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:16.633 +02:00 [ERR] There was an error when processing a message with id: 'acf5fec1b3174b0982adabb462d9a78b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:50:16.636 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:50:16.639 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'acf5fec1b3174b0982adabb462d9a78b', Correlation ID: 'c5474859946446c7b9ba134bdc2ef396', retry 2/3... +2024-05-23 01:50:18.642 +02:00 [INF] Handling a message: friend_invited with ID: acf5fec1b3174b0982adabb462d9a78b, Correlation ID: c5474859946446c7b9ba134bdc2ef396, retry: 2 +2024-05-23 01:50:18.675 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:50:18.675 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:50:18.675 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:50:18.714 +02:00 [INF] Received HTTP response headers after 38.3286ms - 200 +2024-05-23 01:50:18.714 +02:00 [INF] End processing HTTP request after 38.5743ms - 200 +2024-05-23 01:50:18.714 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:50:23.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:50:23.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:32.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:32.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16410.1499ms +2024-05-23 01:50:38.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:50:38.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:39.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:39.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16023.5123ms +2024-05-23 01:50:40.021 +02:00 [ERR] There was an error when processing a message with id: 'acf5fec1b3174b0982adabb462d9a78b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:50:40.022 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:50:40.023 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'acf5fec1b3174b0982adabb462d9a78b', Correlation ID: 'c5474859946446c7b9ba134bdc2ef396', retry 3/3... +2024-05-23 01:50:42.024 +02:00 [INF] Handling a message: friend_invited with ID: acf5fec1b3174b0982adabb462d9a78b, Correlation ID: c5474859946446c7b9ba134bdc2ef396, retry: 3 +2024-05-23 01:50:42.060 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:50:42.060 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:50:42.061 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:50:42.105 +02:00 [INF] Received HTTP response headers after 44.4506ms - 200 +2024-05-23 01:50:42.106 +02:00 [INF] End processing HTTP request after 45.2982ms - 200 +2024-05-23 01:50:42.106 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:50:53.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:50:53.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:55.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:50:55.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16450.6509ms +2024-05-23 01:51:03.528 +02:00 [ERR] There was an error when processing a message with id: 'acf5fec1b3174b0982adabb462d9a78b'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:51:03.529 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:51:03.530 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'acf5fec1b3174b0982adabb462d9a78b', Correlation ID: 'c5474859946446c7b9ba134bdc2ef396', retry 4/3... +2024-05-23 01:51:03.530 +02:00 [ERR] Handling a message: friend_invited with ID: acf5fec1b3174b0982adabb462d9a78b, Correlation ID: c5474859946446c7b9ba134bdc2ef396 failed +2024-05-23 01:51:03.532 +02:00 [INF] Received a message with ID: 'e20a4bd334714e019e834dfd4ef7d2db', Correlation ID: 'b04256fff7d54399bf0e2eab846f7925', timestamp: 1716421644, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:51:03.533 +02:00 [INF] Handling a message: friend_invited with ID: e20a4bd334714e019e834dfd4ef7d2db, Correlation ID: b04256fff7d54399bf0e2eab846f7925, retry: 0 +2024-05-23 01:51:03.585 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:51:03.585 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:03.585 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:03.622 +02:00 [INF] Received HTTP response headers after 36.9012ms - 200 +2024-05-23 01:51:03.622 +02:00 [INF] End processing HTTP request after 37.5869ms - 200 +2024-05-23 01:51:03.623 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:51:08.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:51:08.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:10.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:10.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16220.5997ms +2024-05-23 01:51:23.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:51:23.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:24.879 +02:00 [ERR] There was an error when processing a message with id: 'e20a4bd334714e019e834dfd4ef7d2db'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:51:24.881 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:51:24.882 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e20a4bd334714e019e834dfd4ef7d2db', Correlation ID: 'b04256fff7d54399bf0e2eab846f7925', retry 1/3... +2024-05-23 01:51:25.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:25.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16149.2117ms +2024-05-23 01:51:26.884 +02:00 [INF] Handling a message: friend_invited with ID: e20a4bd334714e019e834dfd4ef7d2db, Correlation ID: b04256fff7d54399bf0e2eab846f7925, retry: 1 +2024-05-23 01:51:26.923 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:51:26.924 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:26.924 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:26.965 +02:00 [INF] Received HTTP response headers after 41.1919ms - 200 +2024-05-23 01:51:26.966 +02:00 [INF] End processing HTTP request after 42.0713ms - 200 +2024-05-23 01:51:26.966 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:51:38.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:51:38.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:40.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:40.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16496.392ms +2024-05-23 01:51:48.825 +02:00 [ERR] There was an error when processing a message with id: 'e20a4bd334714e019e834dfd4ef7d2db'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:51:48.829 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:51:48.832 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e20a4bd334714e019e834dfd4ef7d2db', Correlation ID: 'b04256fff7d54399bf0e2eab846f7925', retry 2/3... +2024-05-23 01:51:50.833 +02:00 [INF] Handling a message: friend_invited with ID: e20a4bd334714e019e834dfd4ef7d2db, Correlation ID: b04256fff7d54399bf0e2eab846f7925, retry: 2 +2024-05-23 01:51:50.870 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:51:50.870 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:50.870 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:51:50.904 +02:00 [INF] Received HTTP response headers after 34.3514ms - 200 +2024-05-23 01:51:50.904 +02:00 [INF] End processing HTTP request after 34.7035ms - 200 +2024-05-23 01:51:50.904 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:51:53.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:51:53.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:55.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:51:55.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16415.669ms +2024-05-23 01:52:08.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:52:08.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:10.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:10.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16378.9862ms +2024-05-23 01:52:12.369 +02:00 [ERR] There was an error when processing a message with id: 'e20a4bd334714e019e834dfd4ef7d2db'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:52:12.372 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:52:12.375 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e20a4bd334714e019e834dfd4ef7d2db', Correlation ID: 'b04256fff7d54399bf0e2eab846f7925', retry 3/3... +2024-05-23 01:52:14.378 +02:00 [INF] Handling a message: friend_invited with ID: e20a4bd334714e019e834dfd4ef7d2db, Correlation ID: b04256fff7d54399bf0e2eab846f7925, retry: 3 +2024-05-23 01:52:14.412 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 01:52:14.413 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:52:14.413 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 01:52:14.450 +02:00 [INF] Received HTTP response headers after 36.9285ms - 200 +2024-05-23 01:52:14.452 +02:00 [INF] End processing HTTP request after 39.4307ms - 200 +2024-05-23 01:52:14.453 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:52:23.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:52:23.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:25.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:25.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16325.6706ms +2024-05-23 01:52:35.894 +02:00 [ERR] There was an error when processing a message with id: 'e20a4bd334714e019e834dfd4ef7d2db'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:52:35.895 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:52:35.896 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'e20a4bd334714e019e834dfd4ef7d2db', Correlation ID: 'b04256fff7d54399bf0e2eab846f7925', retry 4/3... +2024-05-23 01:52:35.896 +02:00 [ERR] Handling a message: friend_invited with ID: e20a4bd334714e019e834dfd4ef7d2db, Correlation ID: b04256fff7d54399bf0e2eab846f7925 failed +2024-05-23 01:52:38.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:52:38.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:40.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:40.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16483.8978ms +2024-05-23 01:52:53.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:52:53.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:55.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:52:55.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16412.9802ms +2024-05-23 01:53:08.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:53:08.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:10.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:10.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16260.2661ms +2024-05-23 01:53:23.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:53:23.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:25.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:25.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16425.9821ms +2024-05-23 01:53:38.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:53:38.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:40.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:40.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16698.5855ms +2024-05-23 01:53:53.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:53:53.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:55.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:53:55.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16546.5815ms +2024-05-23 01:54:08.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:54:08.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:10.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:10.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16437.8562ms +2024-05-23 01:54:23.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:54:23.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:25.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:25.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16594.9209ms +2024-05-23 01:54:38.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:54:38.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:40.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:40.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16489.958ms +2024-05-23 01:54:53.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:54:53.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:55.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:54:55.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16775.4762ms +2024-05-23 01:55:08.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:55:08.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:10.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:10.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16405.2537ms +2024-05-23 01:55:23.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:55:23.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:25.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:25.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16625.225ms +2024-05-23 01:55:38.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:55:38.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:40.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:40.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16788.2007ms +2024-05-23 01:55:53.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:55:53.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:55.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:55:55.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16413.929ms +2024-05-23 01:56:08.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:56:08.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:56:10.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:56:10.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16636.4879ms +2024-05-23 01:56:23.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:56:23.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:56:27.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:56:27.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 18077.4931ms +2024-05-23 01:56:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:56:41.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 17068.8462ms +2024-05-23 01:56:47.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:56:47.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:04.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:04.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16408.5079ms +2024-05-23 01:57:12.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:57:12.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:12.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:57:12.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:28.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:28.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16702.2651ms +2024-05-23 01:57:28.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:28.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16134.7553ms +2024-05-23 01:57:32.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:57:32.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:36.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:57:36.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:44.074 +02:00 [INF] Received a message with ID: '21053bb011eb48248f1bdd63d8846d57', Correlation ID: 'f152dba0cb914fcc8772954de6632838', timestamp: 1716422264, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:57:44.074 +02:00 [INF] Handling a message: friend_invited with ID: 21053bb011eb48248f1bdd63d8846d57, Correlation ID: f152dba0cb914fcc8772954de6632838, retry: 0 +2024-05-23 01:57:44.077 +02:00 [INF] Received a message with ID: '96b493aab12e4a2e9cddee4e89855b78', Correlation ID: '57c20f8c95f446e9b2974460cd955c72', timestamp: 1716422264, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:57:44.077 +02:00 [INF] Handling a message: friend_request_sent with ID: 96b493aab12e4a2e9cddee4e89855b78, Correlation ID: 57c20f8c95f446e9b2974460cd955c72, retry: 0 +2024-05-23 01:57:44.108 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:57:44.109 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:57:44.109 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:57:44.148 +02:00 [INF] Received HTTP response headers after 39.1164ms - 200 +2024-05-23 01:57:44.148 +02:00 [INF] End processing HTTP request after 39.8143ms - 200 +2024-05-23 01:57:44.149 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:57:44.233 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:57:44.233 +02:00 [INF] Handled a message: friend_request_sent with ID: 96b493aab12e4a2e9cddee4e89855b78, Correlation ID: 57c20f8c95f446e9b2974460cd955c72, retry: 0 +2024-05-23 01:57:44.993 +02:00 [INF] Received a message with ID: '3a13b503f5364bb798ff813a1f6aaa29', Correlation ID: '37edffc4ed2b4578a03c9b857217cf47', timestamp: 1716422264, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:57:44.993 +02:00 [INF] Handling a message: friend_request_sent with ID: 3a13b503f5364bb798ff813a1f6aaa29, Correlation ID: 37edffc4ed2b4578a03c9b857217cf47, retry: 0 +2024-05-23 01:57:45.143 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 01:57:45.144 +02:00 [INF] Handled a message: friend_request_sent with ID: 3a13b503f5364bb798ff813a1f6aaa29, Correlation ID: 37edffc4ed2b4578a03c9b857217cf47, retry: 0 +2024-05-23 01:57:45.843 +02:00 [INF] Received a message with ID: 'a8904d02c70c46dc80b0001264fc8cc9', Correlation ID: 'c42335ed3e724fe7b60519257d2c4ad6', timestamp: 1716422265, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:57:45.844 +02:00 [INF] Handling a message: friend_request_sent with ID: a8904d02c70c46dc80b0001264fc8cc9, Correlation ID: c42335ed3e724fe7b60519257d2c4ad6, retry: 0 +2024-05-23 01:57:46.261 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 01:57:46.262 +02:00 [INF] Handled a message: friend_request_sent with ID: a8904d02c70c46dc80b0001264fc8cc9, Correlation ID: c42335ed3e724fe7b60519257d2c4ad6, retry: 0 +2024-05-23 01:57:46.804 +02:00 [INF] Received a message with ID: '62a48eaff3a446fd94ea0520c2e1bc06', Correlation ID: 'fa3f824ee65341bea146fd2420c5bb08', timestamp: 1716422266, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:57:46.804 +02:00 [INF] Handling a message: friend_request_sent with ID: 62a48eaff3a446fd94ea0520c2e1bc06, Correlation ID: fa3f824ee65341bea146fd2420c5bb08, retry: 0 +2024-05-23 01:57:47.517 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:57:47.518 +02:00 [INF] Handled a message: friend_request_sent with ID: 62a48eaff3a446fd94ea0520c2e1bc06, Correlation ID: fa3f824ee65341bea146fd2420c5bb08, retry: 0 +2024-05-23 01:57:48.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:48.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16539.5637ms +2024-05-23 01:57:52.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:57:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 16369.336ms +2024-05-23 01:58:00.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:58:00.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:06.067 +02:00 [ERR] There was an error when processing a message with id: '21053bb011eb48248f1bdd63d8846d57'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:58:06.084 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:58:06.086 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21053bb011eb48248f1bdd63d8846d57', Correlation ID: 'f152dba0cb914fcc8772954de6632838', retry 1/3... +2024-05-23 01:58:08.090 +02:00 [INF] Handling a message: friend_invited with ID: 21053bb011eb48248f1bdd63d8846d57, Correlation ID: f152dba0cb914fcc8772954de6632838, retry: 1 +2024-05-23 01:58:08.131 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:58:08.131 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:08.132 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:08.173 +02:00 [INF] Received HTTP response headers after 41.3559ms - 200 +2024-05-23 01:58:08.173 +02:00 [INF] End processing HTTP request after 42.0388ms - 200 +2024-05-23 01:58:08.173 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:58:08.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - null null +2024-05-23 01:58:08.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:21.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:21.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 20460.4963ms +2024-05-23 01:58:26.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:26.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 - 200 null application/json 18174.7293ms +2024-05-23 01:58:27.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:58:27.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:27.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:27.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 110.7805ms +2024-05-23 01:58:27.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:58:27.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:28.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:28.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 73.416ms +2024-05-23 01:58:33.967 +02:00 [ERR] There was an error when processing a message with id: '21053bb011eb48248f1bdd63d8846d57'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:58:33.979 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:58:33.982 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21053bb011eb48248f1bdd63d8846d57', Correlation ID: 'f152dba0cb914fcc8772954de6632838', retry 2/3... +2024-05-23 01:58:35.982 +02:00 [INF] Handling a message: friend_invited with ID: 21053bb011eb48248f1bdd63d8846d57, Correlation ID: f152dba0cb914fcc8772954de6632838, retry: 2 +2024-05-23 01:58:36.017 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:58:36.017 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:36.018 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:36.056 +02:00 [INF] Received HTTP response headers after 38.6332ms - 200 +2024-05-23 01:58:36.057 +02:00 [INF] End processing HTTP request after 39.3314ms - 200 +2024-05-23 01:58:36.057 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:58:42.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 01:58:42.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:43.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:43.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 107.82ms +2024-05-23 01:58:43.919 +02:00 [INF] Received a message with ID: '7ead58dcb2274440a6f3517a35c819a2', Correlation ID: '2c5fdc7c04364cf8b4b3d4eead1bbb60', timestamp: 1716422323, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:58:43.919 +02:00 [INF] Handling a message: friend_request_sent with ID: 7ead58dcb2274440a6f3517a35c819a2, Correlation ID: 2c5fdc7c04364cf8b4b3d4eead1bbb60, retry: 0 +2024-05-23 01:58:44.072 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:58:44.072 +02:00 [INF] Handled a message: friend_request_sent with ID: 7ead58dcb2274440a6f3517a35c819a2, Correlation ID: 2c5fdc7c04364cf8b4b3d4eead1bbb60, retry: 0 +2024-05-23 01:58:45.397 +02:00 [INF] Received a message with ID: '92b3a2fbd76f401982d22d75498c141a', Correlation ID: 'e3dbdd5b23d9422ab73650fe30dc9c0f', timestamp: 1716422325, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:58:45.398 +02:00 [INF] Handling a message: friend_request_sent with ID: 92b3a2fbd76f401982d22d75498c141a, Correlation ID: e3dbdd5b23d9422ab73650fe30dc9c0f, retry: 0 +2024-05-23 01:58:45.552 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:58:45.552 +02:00 [INF] Handled a message: friend_request_sent with ID: 92b3a2fbd76f401982d22d75498c141a, Correlation ID: e3dbdd5b23d9422ab73650fe30dc9c0f, retry: 0 +2024-05-23 01:58:57.549 +02:00 [ERR] There was an error when processing a message with id: '21053bb011eb48248f1bdd63d8846d57'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:58:57.553 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:58:57.555 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21053bb011eb48248f1bdd63d8846d57', Correlation ID: 'f152dba0cb914fcc8772954de6632838', retry 3/3... +2024-05-23 01:58:58.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:58:58.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:58:59.556 +02:00 [INF] Handling a message: friend_invited with ID: 21053bb011eb48248f1bdd63d8846d57, Correlation ID: f152dba0cb914fcc8772954de6632838, retry: 3 +2024-05-23 01:58:59.593 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:58:59.593 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:59.593 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:58:59.630 +02:00 [INF] Received HTTP response headers after 37.1671ms - 200 +2024-05-23 01:58:59.631 +02:00 [INF] End processing HTTP request after 37.8241ms - 200 +2024-05-23 01:58:59.631 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:15.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:15.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16484.4675ms +2024-05-23 01:59:15.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:59:15.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:15.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:15.995 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:59:15.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 39.3415ms +2024-05-23 01:59:16.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:59:16.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:16.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:16.036 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 27 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 01:59:16.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 400 null application/json 37.2084ms +2024-05-23 01:59:20.991 +02:00 [ERR] There was an error when processing a message with id: '21053bb011eb48248f1bdd63d8846d57'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:59:20.996 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939680 (0x1B995A0) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:59:21.000 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21053bb011eb48248f1bdd63d8846d57', Correlation ID: 'f152dba0cb914fcc8772954de6632838', retry 4/3... +2024-05-23 01:59:21.000 +02:00 [ERR] Handling a message: friend_invited with ID: 21053bb011eb48248f1bdd63d8846d57, Correlation ID: f152dba0cb914fcc8772954de6632838 failed +2024-05-23 01:59:21.004 +02:00 [INF] Received a message with ID: '22972c961185470c8a1d9d51c427b9a0', Correlation ID: 'd2457d12c563413db128826b03a075d0', timestamp: 1716422264, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:59:21.004 +02:00 [INF] Handling a message: friend_invited with ID: 22972c961185470c8a1d9d51c427b9a0, Correlation ID: d2457d12c563413db128826b03a075d0, retry: 0 +2024-05-23 01:59:21.039 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:59:21.039 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.039 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.076 +02:00 [INF] Received HTTP response headers after 36.6084ms - 200 +2024-05-23 01:59:21.076 +02:00 [INF] End processing HTTP request after 36.906ms - 200 +2024-05-23 01:59:21.076 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:21.459 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 01:59:21.459 +02:00 [INF] Handled a message: friend_invited with ID: 22972c961185470c8a1d9d51c427b9a0, Correlation ID: d2457d12c563413db128826b03a075d0, retry: 0 +2024-05-23 01:59:21.460 +02:00 [INF] Received a message with ID: '22e94c60226845338457d171b709b91f', Correlation ID: '29017fd1c6834e45a3e478b30f29e7f0', timestamp: 1716422265, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:59:21.460 +02:00 [INF] Handling a message: friend_invited with ID: 22e94c60226845338457d171b709b91f, Correlation ID: 29017fd1c6834e45a3e478b30f29e7f0, retry: 0 +2024-05-23 01:59:21.494 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:59:21.495 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.495 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.531 +02:00 [INF] Received HTTP response headers after 36.447ms - 200 +2024-05-23 01:59:21.532 +02:00 [INF] End processing HTTP request after 37.1791ms - 200 +2024-05-23 01:59:21.532 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:21.732 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 01:59:21.732 +02:00 [INF] Handled a message: friend_invited with ID: 22e94c60226845338457d171b709b91f, Correlation ID: 29017fd1c6834e45a3e478b30f29e7f0, retry: 0 +2024-05-23 01:59:21.733 +02:00 [INF] Received a message with ID: '43b8f55d0afe421cbd0489d812b6affb', Correlation ID: 'aa9630aaadb1469e935f1de5b54aa7f2', timestamp: 1716422266, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:59:21.733 +02:00 [INF] Handling a message: friend_invited with ID: 43b8f55d0afe421cbd0489d812b6affb, Correlation ID: aa9630aaadb1469e935f1de5b54aa7f2, retry: 0 +2024-05-23 01:59:21.770 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 01:59:21.770 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.770 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 01:59:21.806 +02:00 [INF] Received HTTP response headers after 35.5111ms - 200 +2024-05-23 01:59:21.806 +02:00 [INF] End processing HTTP request after 35.7879ms - 200 +2024-05-23 01:59:21.806 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:21.990 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 01:59:21.990 +02:00 [INF] Handled a message: friend_invited with ID: 43b8f55d0afe421cbd0489d812b6affb, Correlation ID: aa9630aaadb1469e935f1de5b54aa7f2, retry: 0 +2024-05-23 01:59:21.991 +02:00 [INF] Received a message with ID: 'f8a4e390276d4b24877eeb28eee710ca', Correlation ID: 'aa3a876e4a5945328bfd2b1aae78613a', timestamp: 1716422323, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 01:59:21.991 +02:00 [INF] Handling a message: friend_invited with ID: f8a4e390276d4b24877eeb28eee710ca, Correlation ID: aa3a876e4a5945328bfd2b1aae78613a, retry: 0 +2024-05-23 01:59:22.026 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:59:22.026 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:59:22.026 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:59:22.062 +02:00 [INF] Received HTTP response headers after 35.636ms - 200 +2024-05-23 01:59:22.062 +02:00 [INF] End processing HTTP request after 35.9457ms - 200 +2024-05-23 01:59:22.062 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:31.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 01:59:31.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:31.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 01:59:31.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.5927ms +2024-05-23 01:59:37.078 +02:00 [INF] Received a message with ID: 'd968c4ad84464931ad464e2f8fb09514', Correlation ID: '6189b7c2922c4221820beb9c0c561d8f', timestamp: 1716422377, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 01:59:37.078 +02:00 [INF] Handling a message: friend_request_sent with ID: d968c4ad84464931ad464e2f8fb09514, Correlation ID: 6189b7c2922c4221820beb9c0c561d8f, retry: 0 +2024-05-23 01:59:37.232 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 01:59:37.232 +02:00 [INF] Handled a message: friend_request_sent with ID: d968c4ad84464931ad464e2f8fb09514, Correlation ID: 6189b7c2922c4221820beb9c0c561d8f, retry: 0 +2024-05-23 01:59:43.598 +02:00 [ERR] There was an error when processing a message with id: 'f8a4e390276d4b24877eeb28eee710ca'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 01:59:43.599 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 01:59:43.599 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f8a4e390276d4b24877eeb28eee710ca', Correlation ID: 'aa3a876e4a5945328bfd2b1aae78613a', retry 1/3... +2024-05-23 01:59:45.600 +02:00 [INF] Handling a message: friend_invited with ID: f8a4e390276d4b24877eeb28eee710ca, Correlation ID: aa3a876e4a5945328bfd2b1aae78613a, retry: 1 +2024-05-23 01:59:45.634 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 01:59:45.635 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:59:45.635 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 01:59:45.673 +02:00 [INF] Received HTTP response headers after 38.154ms - 200 +2024-05-23 01:59:45.673 +02:00 [INF] End processing HTTP request after 38.4646ms - 200 +2024-05-23 01:59:45.673 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 01:59:46.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 01:59:46.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:03.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:03.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16467.5022ms +2024-05-23 02:00:13.444 +02:00 [ERR] There was an error when processing a message with id: 'f8a4e390276d4b24877eeb28eee710ca'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:00:13.445 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:00:13.446 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f8a4e390276d4b24877eeb28eee710ca', Correlation ID: 'aa3a876e4a5945328bfd2b1aae78613a', retry 2/3... +2024-05-23 02:00:15.446 +02:00 [INF] Handling a message: friend_invited with ID: f8a4e390276d4b24877eeb28eee710ca, Correlation ID: aa3a876e4a5945328bfd2b1aae78613a, retry: 2 +2024-05-23 02:00:15.487 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 02:00:15.487 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:00:15.488 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:00:15.529 +02:00 [INF] Received HTTP response headers after 41.4057ms - 200 +2024-05-23 02:00:15.530 +02:00 [INF] End processing HTTP request after 42.6925ms - 200 +2024-05-23 02:00:15.530 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:00:16.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:00:16.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:16.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:16.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.058ms +2024-05-23 02:00:16.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:00:16.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:16.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:16.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 33.675ms +2024-05-23 02:00:31.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:00:31.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:31.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:31.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.1228ms +2024-05-23 02:00:37.256 +02:00 [ERR] There was an error when processing a message with id: 'f8a4e390276d4b24877eeb28eee710ca'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:00:37.257 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:00:37.258 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f8a4e390276d4b24877eeb28eee710ca', Correlation ID: 'aa3a876e4a5945328bfd2b1aae78613a', retry 3/3... +2024-05-23 02:00:39.256 +02:00 [INF] Handling a message: friend_invited with ID: f8a4e390276d4b24877eeb28eee710ca, Correlation ID: aa3a876e4a5945328bfd2b1aae78613a, retry: 3 +2024-05-23 02:00:39.292 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 02:00:39.292 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:00:39.293 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:00:39.334 +02:00 [INF] Received HTTP response headers after 40.7541ms - 200 +2024-05-23 02:00:39.335 +02:00 [INF] End processing HTTP request after 42.8042ms - 200 +2024-05-23 02:00:39.335 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:00:46.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:00:46.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:46.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:00:46.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.8881ms +2024-05-23 02:01:00.888 +02:00 [ERR] There was an error when processing a message with id: 'f8a4e390276d4b24877eeb28eee710ca'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:01:00.889 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939670 (0x1B99596) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:01:00.890 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'f8a4e390276d4b24877eeb28eee710ca', Correlation ID: 'aa3a876e4a5945328bfd2b1aae78613a', retry 4/3... +2024-05-23 02:01:00.890 +02:00 [ERR] Handling a message: friend_invited with ID: f8a4e390276d4b24877eeb28eee710ca, Correlation ID: aa3a876e4a5945328bfd2b1aae78613a failed +2024-05-23 02:01:00.891 +02:00 [INF] Received a message with ID: 'a48e0072020d4212bab9cf2fa729fef0', Correlation ID: 'bdbce25e0773463e8a70ef22b86a49d0', timestamp: 1716422325, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:01:00.891 +02:00 [INF] Handling a message: friend_invited with ID: a48e0072020d4212bab9cf2fa729fef0, Correlation ID: bdbce25e0773463e8a70ef22b86a49d0, retry: 0 +2024-05-23 02:01:00.935 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 02:01:00.935 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:01:00.935 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 02:01:00.971 +02:00 [INF] Received HTTP response headers after 35.7115ms - 200 +2024-05-23 02:01:00.971 +02:00 [INF] End processing HTTP request after 36.4695ms - 200 +2024-05-23 02:01:00.972 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:01:01.205 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 02:01:01.205 +02:00 [INF] Handled a message: friend_invited with ID: a48e0072020d4212bab9cf2fa729fef0, Correlation ID: bdbce25e0773463e8a70ef22b86a49d0, retry: 0 +2024-05-23 02:01:01.205 +02:00 [INF] Received a message with ID: '43ef8fe51b7644519cc17cb47b3f9b30', Correlation ID: 'cd9b759586954e4099b1b78853f54b00', timestamp: 1716422377, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:01:01.206 +02:00 [INF] Handling a message: friend_invited with ID: 43ef8fe51b7644519cc17cb47b3f9b30, Correlation ID: cd9b759586954e4099b1b78853f54b00, retry: 0 +2024-05-23 02:01:01.254 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:01:01.254 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:01.254 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:01.292 +02:00 [INF] Received HTTP response headers after 37.7956ms - 200 +2024-05-23 02:01:01.292 +02:00 [INF] End processing HTTP request after 38.0775ms - 200 +2024-05-23 02:01:01.292 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:01:01.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:01:01.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:01.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:01.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.7131ms +2024-05-23 02:01:16.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:01:16.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:16.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:16.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.2116ms +2024-05-23 02:01:22.865 +02:00 [ERR] There was an error when processing a message with id: '43ef8fe51b7644519cc17cb47b3f9b30'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:01:22.868 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:01:22.871 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '43ef8fe51b7644519cc17cb47b3f9b30', Correlation ID: 'cd9b759586954e4099b1b78853f54b00', retry 1/3... +2024-05-23 02:01:24.871 +02:00 [INF] Handling a message: friend_invited with ID: 43ef8fe51b7644519cc17cb47b3f9b30, Correlation ID: cd9b759586954e4099b1b78853f54b00, retry: 1 +2024-05-23 02:01:24.916 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:01:24.916 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:24.916 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:24.956 +02:00 [INF] Received HTTP response headers after 39.2033ms - 200 +2024-05-23 02:01:24.956 +02:00 [INF] End processing HTTP request after 40.2784ms - 200 +2024-05-23 02:01:24.957 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:01:31.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:01:31.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:31.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:31.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.1997ms +2024-05-23 02:01:46.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:01:46.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:46.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:01:46.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.5448ms +2024-05-23 02:01:47.492 +02:00 [ERR] There was an error when processing a message with id: '43ef8fe51b7644519cc17cb47b3f9b30'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:01:47.495 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:01:47.498 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '43ef8fe51b7644519cc17cb47b3f9b30', Correlation ID: 'cd9b759586954e4099b1b78853f54b00', retry 2/3... +2024-05-23 02:01:49.499 +02:00 [INF] Handling a message: friend_invited with ID: 43ef8fe51b7644519cc17cb47b3f9b30, Correlation ID: cd9b759586954e4099b1b78853f54b00, retry: 2 +2024-05-23 02:01:49.537 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:01:49.537 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:49.537 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:01:49.591 +02:00 [INF] Received HTTP response headers after 54.2687ms - 200 +2024-05-23 02:01:49.592 +02:00 [INF] End processing HTTP request after 54.5444ms - 200 +2024-05-23 02:01:49.592 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:02:01.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:02:01.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:01.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:01.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.6901ms +2024-05-23 02:02:13.310 +02:00 [ERR] There was an error when processing a message with id: '43ef8fe51b7644519cc17cb47b3f9b30'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:02:13.313 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:02:13.315 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '43ef8fe51b7644519cc17cb47b3f9b30', Correlation ID: 'cd9b759586954e4099b1b78853f54b00', retry 3/3... +2024-05-23 02:02:15.315 +02:00 [INF] Handling a message: friend_invited with ID: 43ef8fe51b7644519cc17cb47b3f9b30, Correlation ID: cd9b759586954e4099b1b78853f54b00, retry: 3 +2024-05-23 02:02:15.352 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:02:15.353 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:02:15.353 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:02:15.395 +02:00 [INF] Received HTTP response headers after 41.9659ms - 200 +2024-05-23 02:02:15.395 +02:00 [INF] End processing HTTP request after 42.7364ms - 200 +2024-05-23 02:02:15.396 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:02:16.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:02:16.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:16.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:16.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 51.1042ms +2024-05-23 02:02:31.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:02:31.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:31.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:31.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.6669ms +2024-05-23 02:02:37.512 +02:00 [ERR] There was an error when processing a message with id: '43ef8fe51b7644519cc17cb47b3f9b30'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:02:37.514 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:02:37.515 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '43ef8fe51b7644519cc17cb47b3f9b30', Correlation ID: 'cd9b759586954e4099b1b78853f54b00', retry 4/3... +2024-05-23 02:02:37.515 +02:00 [ERR] Handling a message: friend_invited with ID: 43ef8fe51b7644519cc17cb47b3f9b30, Correlation ID: cd9b759586954e4099b1b78853f54b00 failed +2024-05-23 02:02:46.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:02:46.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:46.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:02:46.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.7031ms +2024-05-23 02:03:01.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:03:01.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:01.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:01.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.3571ms +2024-05-23 02:03:16.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:03:16.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:16.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:16.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.4812ms +2024-05-23 02:03:31.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:03:31.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:31.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:31.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 33.6537ms +2024-05-23 02:03:46.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:03:46.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:46.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:03:46.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.3378ms +2024-05-23 02:04:01.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:04:01.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:01.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:01.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.4419ms +2024-05-23 02:04:16.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:04:16.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:16.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:16.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.5237ms +2024-05-23 02:04:31.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:04:31.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:31.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:31.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.8591ms +2024-05-23 02:04:46.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:04:46.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:46.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:04:46.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.1052ms +2024-05-23 02:05:01.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:05:01.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:01.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:01.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 33.8005ms +2024-05-23 02:05:16.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:05:16.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:16.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:16.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.3624ms +2024-05-23 02:05:31.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:05:31.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:31.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:31.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 43.1037ms +2024-05-23 02:05:33.767 +02:00 [INF] Received a message with ID: '96d5141b36a64ccba957f0b51fc047f3', Correlation ID: '6377da90baab40879f73a480471349f0', timestamp: 1716422733, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:05:33.768 +02:00 [INF] Handling a message: friend_invited with ID: 96d5141b36a64ccba957f0b51fc047f3, Correlation ID: 6377da90baab40879f73a480471349f0, retry: 0 +2024-05-23 02:05:33.771 +02:00 [INF] Received a message with ID: '501e85ce34004583b2253f2bc1bcedc7', Correlation ID: 'eb688c0a41b343e9a3ee5987573a1fbe', timestamp: 1716422733, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:05:33.771 +02:00 [INF] Handling a message: friend_request_sent with ID: 501e85ce34004583b2253f2bc1bcedc7, Correlation ID: eb688c0a41b343e9a3ee5987573a1fbe, retry: 0 +2024-05-23 02:05:33.805 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:05:33.805 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:33.805 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:33.844 +02:00 [INF] Received HTTP response headers after 39.0149ms - 200 +2024-05-23 02:05:33.844 +02:00 [INF] End processing HTTP request after 39.4903ms - 200 +2024-05-23 02:05:33.845 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:05:33.937 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:05:33.937 +02:00 [INF] Handled a message: friend_request_sent with ID: 501e85ce34004583b2253f2bc1bcedc7, Correlation ID: eb688c0a41b343e9a3ee5987573a1fbe, retry: 0 +2024-05-23 02:05:34.295 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:05:34.295 +02:00 [INF] Handled a message: friend_invited with ID: 96d5141b36a64ccba957f0b51fc047f3, Correlation ID: 6377da90baab40879f73a480471349f0, retry: 0 +2024-05-23 02:05:46.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:05:46.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:46.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:05:46.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.71ms +2024-05-23 02:05:56.276 +02:00 [INF] Received a message with ID: '5da63b161b684f4f92789a662647c817', Correlation ID: '96eed350a4ba42dfa43300e3b0a3af98', timestamp: 1716422756, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:05:56.276 +02:00 [INF] Handling a message: friend_invited with ID: 5da63b161b684f4f92789a662647c817, Correlation ID: 96eed350a4ba42dfa43300e3b0a3af98, retry: 0 +2024-05-23 02:05:56.279 +02:00 [INF] Received a message with ID: '5cb756daaa33426299b6344f4eb0d136', Correlation ID: '8bdd38dd9f214af899f214072bb58f63', timestamp: 1716422756, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:05:56.280 +02:00 [INF] Handling a message: friend_request_sent with ID: 5cb756daaa33426299b6344f4eb0d136, Correlation ID: 8bdd38dd9f214af899f214072bb58f63, retry: 0 +2024-05-23 02:05:56.312 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:05:56.313 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:56.313 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:56.357 +02:00 [INF] Received HTTP response headers after 44.1723ms - 200 +2024-05-23 02:05:56.358 +02:00 [INF] End processing HTTP request after 44.9758ms - 200 +2024-05-23 02:05:56.358 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:05:56.438 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:05:56.438 +02:00 [INF] Handled a message: friend_request_sent with ID: 5cb756daaa33426299b6344f4eb0d136, Correlation ID: 8bdd38dd9f214af899f214072bb58f63, retry: 0 +2024-05-23 02:05:56.971 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:05:56.972 +02:00 [INF] Handled a message: friend_invited with ID: 5da63b161b684f4f92789a662647c817, Correlation ID: 96eed350a4ba42dfa43300e3b0a3af98, retry: 0 +2024-05-23 02:05:59.071 +02:00 [INF] Received a message with ID: '4f0c840a55ae4fcfbf03b500a600233b', Correlation ID: '188e652422664644a053830db3d4d5c7', timestamp: 1716422759, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:05:59.071 +02:00 [INF] Handling a message: friend_invited with ID: 4f0c840a55ae4fcfbf03b500a600233b, Correlation ID: 188e652422664644a053830db3d4d5c7, retry: 0 +2024-05-23 02:05:59.072 +02:00 [INF] Received a message with ID: '9b7c303ab48b49d699f260efa82780fb', Correlation ID: 'ca4d47380307449794f85c5bf6d91e06', timestamp: 1716422759, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:05:59.074 +02:00 [INF] Handling a message: friend_request_sent with ID: 9b7c303ab48b49d699f260efa82780fb, Correlation ID: ca4d47380307449794f85c5bf6d91e06, retry: 0 +2024-05-23 02:05:59.107 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:05:59.107 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:59.107 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:05:59.143 +02:00 [INF] Received HTTP response headers after 35.6552ms - 200 +2024-05-23 02:05:59.143 +02:00 [INF] End processing HTTP request after 35.9711ms - 200 +2024-05-23 02:05:59.143 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:05:59.217 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:05:59.217 +02:00 [INF] Handled a message: friend_request_sent with ID: 9b7c303ab48b49d699f260efa82780fb, Correlation ID: ca4d47380307449794f85c5bf6d91e06, retry: 0 +2024-05-23 02:05:59.328 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:05:59.328 +02:00 [INF] Handled a message: friend_invited with ID: 4f0c840a55ae4fcfbf03b500a600233b, Correlation ID: 188e652422664644a053830db3d4d5c7, retry: 0 +2024-05-23 02:06:00.946 +02:00 [INF] Received a message with ID: '0cc115339e3a41188c25dfae892609c4', Correlation ID: 'dba79830ce5143538274046f56a12ce2', timestamp: 1716422760, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:06:00.946 +02:00 [INF] Received a message with ID: '8c936a5c393d4c79b32c1532f2dfde98', Correlation ID: 'bf1d231016ac4958b16fd9ceff6353e9', timestamp: 1716422760, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:06:00.946 +02:00 [INF] Handling a message: friend_invited with ID: 0cc115339e3a41188c25dfae892609c4, Correlation ID: dba79830ce5143538274046f56a12ce2, retry: 0 +2024-05-23 02:06:00.946 +02:00 [INF] Handling a message: friend_request_sent with ID: 8c936a5c393d4c79b32c1532f2dfde98, Correlation ID: bf1d231016ac4958b16fd9ceff6353e9, retry: 0 +2024-05-23 02:06:00.981 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:06:00.981 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:00.982 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:01.020 +02:00 [INF] Received HTTP response headers after 37.8014ms - 200 +2024-05-23 02:06:01.020 +02:00 [INF] End processing HTTP request after 38.7536ms - 200 +2024-05-23 02:06:01.020 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:06:01.199 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to c4819385-2bdf-41c3-a21c-5a9e0f195fda. +2024-05-23 02:06:01.199 +02:00 [INF] Handled a message: friend_request_sent with ID: 8c936a5c393d4c79b32c1532f2dfde98, Correlation ID: bf1d231016ac4958b16fd9ceff6353e9, retry: 0 +2024-05-23 02:06:01.211 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to c4819385-2bdf-41c3-a21c-5a9e0f195fda. +2024-05-23 02:06:01.212 +02:00 [INF] Handled a message: friend_invited with ID: 0cc115339e3a41188c25dfae892609c4, Correlation ID: dba79830ce5143538274046f56a12ce2, retry: 0 +2024-05-23 02:06:01.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:06:01.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:01.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:01.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.9166ms +2024-05-23 02:06:16.140 +02:00 [INF] Received a message with ID: '8b416c3e12d044a3a3062ef3c5447630', Correlation ID: 'a55b2beed2544bd78360b750151121df', timestamp: 1716422776, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:06:16.140 +02:00 [INF] Handling a message: friend_invited with ID: 8b416c3e12d044a3a3062ef3c5447630, Correlation ID: a55b2beed2544bd78360b750151121df, retry: 0 +2024-05-23 02:06:16.143 +02:00 [INF] Received a message with ID: '7f8f0b7d77d142deba041f40b0a8dc69', Correlation ID: '5751f4b54ca44ee8b79de40f335a7f4a', timestamp: 1716422776, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:06:16.143 +02:00 [INF] Handling a message: friend_request_sent with ID: 7f8f0b7d77d142deba041f40b0a8dc69, Correlation ID: 5751f4b54ca44ee8b79de40f335a7f4a, retry: 0 +2024-05-23 02:06:16.176 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:06:16.176 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:16.176 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:16.217 +02:00 [INF] Received HTTP response headers after 40.4314ms - 200 +2024-05-23 02:06:16.217 +02:00 [INF] End processing HTTP request after 41.0978ms - 200 +2024-05-23 02:06:16.217 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:06:16.422 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:06:16.422 +02:00 [INF] Handled a message: friend_request_sent with ID: 7f8f0b7d77d142deba041f40b0a8dc69, Correlation ID: 5751f4b54ca44ee8b79de40f335a7f4a, retry: 0 +2024-05-23 02:06:16.490 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:06:16.490 +02:00 [INF] Handled a message: friend_invited with ID: 8b416c3e12d044a3a3062ef3c5447630, Correlation ID: a55b2beed2544bd78360b750151121df, retry: 0 +2024-05-23 02:06:16.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:06:16.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:16.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:16.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.6639ms +2024-05-23 02:06:20.241 +02:00 [INF] Received a message with ID: '4883f9c17ef04f0cb28ca32bd68f2da0', Correlation ID: 'ff11a4bfb32e46d6aedd36db3d7097ae', timestamp: 1716422780, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:06:20.241 +02:00 [INF] Received a message with ID: '7edfcd842f5a4ccd961ecc6f22a8dfed', Correlation ID: 'c2e7fe75eb2444379aa556fcd604993a', timestamp: 1716422780, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:06:20.241 +02:00 [INF] Handling a message: friend_request_sent with ID: 4883f9c17ef04f0cb28ca32bd68f2da0, Correlation ID: ff11a4bfb32e46d6aedd36db3d7097ae, retry: 0 +2024-05-23 02:06:20.241 +02:00 [INF] Handling a message: friend_invited with ID: 7edfcd842f5a4ccd961ecc6f22a8dfed, Correlation ID: c2e7fe75eb2444379aa556fcd604993a, retry: 0 +2024-05-23 02:06:20.278 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:06:20.278 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:20.278 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:20.317 +02:00 [INF] Received HTTP response headers after 38.3837ms - 200 +2024-05-23 02:06:20.317 +02:00 [INF] End processing HTTP request after 38.7876ms - 200 +2024-05-23 02:06:20.317 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:06:20.422 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:06:20.422 +02:00 [INF] Handled a message: friend_request_sent with ID: 4883f9c17ef04f0cb28ca32bd68f2da0, Correlation ID: ff11a4bfb32e46d6aedd36db3d7097ae, retry: 0 +2024-05-23 02:06:20.657 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 7e9fd928-fbde-4468-89b1-6e712345ecc7. +2024-05-23 02:06:20.657 +02:00 [INF] Handled a message: friend_invited with ID: 7edfcd842f5a4ccd961ecc6f22a8dfed, Correlation ID: c2e7fe75eb2444379aa556fcd604993a, retry: 0 +2024-05-23 02:06:20.960 +02:00 [INF] Received a message with ID: '0bcf1bbd749e4df09735690d3802ec14', Correlation ID: 'ed3165327a3042708ee3fa3b3349ea70', timestamp: 1716422780, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:06:20.960 +02:00 [INF] Received a message with ID: 'c94d62463d8d456d9568f90375360a82', Correlation ID: '15bc0d1e20ea41068da4022be8543cd5', timestamp: 1716422780, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:06:20.961 +02:00 [INF] Handling a message: friend_invited with ID: 0bcf1bbd749e4df09735690d3802ec14, Correlation ID: ed3165327a3042708ee3fa3b3349ea70, retry: 0 +2024-05-23 02:06:20.961 +02:00 [INF] Handling a message: friend_request_sent with ID: c94d62463d8d456d9568f90375360a82, Correlation ID: 15bc0d1e20ea41068da4022be8543cd5, retry: 0 +2024-05-23 02:06:20.997 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:06:20.997 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:20.997 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:21.037 +02:00 [INF] Received HTTP response headers after 40.2911ms - 200 +2024-05-23 02:06:21.037 +02:00 [INF] End processing HTTP request after 40.6344ms - 200 +2024-05-23 02:06:21.037 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:06:21.115 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:06:21.116 +02:00 [INF] Handled a message: friend_request_sent with ID: c94d62463d8d456d9568f90375360a82, Correlation ID: 15bc0d1e20ea41068da4022be8543cd5, retry: 0 +2024-05-23 02:06:21.982 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:06:21.983 +02:00 [INF] Handled a message: friend_invited with ID: 0bcf1bbd749e4df09735690d3802ec14, Correlation ID: ed3165327a3042708ee3fa3b3349ea70, retry: 0 +2024-05-23 02:06:22.089 +02:00 [INF] Received a message with ID: '32793491cfb34cafab137fba108a198f', Correlation ID: 'dcece7fa087e4dacbe659b42c50e5314', timestamp: 1716422782, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:06:22.090 +02:00 [INF] Handling a message: friend_invited with ID: 32793491cfb34cafab137fba108a198f, Correlation ID: dcece7fa087e4dacbe659b42c50e5314, retry: 0 +2024-05-23 02:06:22.089 +02:00 [INF] Received a message with ID: 'c981eca470074790b8f410f2b7951f91', Correlation ID: '1d168ed873a14ccfb60a973157064e9e', timestamp: 1716422782, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:06:22.091 +02:00 [INF] Handling a message: friend_request_sent with ID: c981eca470074790b8f410f2b7951f91, Correlation ID: 1d168ed873a14ccfb60a973157064e9e, retry: 0 +2024-05-23 02:06:22.124 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:06:22.125 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:22.125 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:06:22.160 +02:00 [INF] Received HTTP response headers after 35.2492ms - 200 +2024-05-23 02:06:22.160 +02:00 [INF] End processing HTTP request after 35.5615ms - 200 +2024-05-23 02:06:22.160 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:06:22.246 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 02:06:22.246 +02:00 [INF] Handled a message: friend_request_sent with ID: c981eca470074790b8f410f2b7951f91, Correlation ID: 1d168ed873a14ccfb60a973157064e9e, retry: 0 +2024-05-23 02:06:22.350 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 02:06:22.351 +02:00 [INF] Handled a message: friend_invited with ID: 32793491cfb34cafab137fba108a198f, Correlation ID: dcece7fa087e4dacbe659b42c50e5314, retry: 0 +2024-05-23 02:06:31.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:06:31.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:31.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:31.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.8598ms +2024-05-23 02:06:46.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:06:46.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:46.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:06:46.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.0541ms +2024-05-23 02:07:01.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:07:01.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:01.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:01.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.8953ms +2024-05-23 02:07:16.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:07:16.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:16.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:16.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.3702ms +2024-05-23 02:07:31.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:07:31.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:31.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:31.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.1877ms +2024-05-23 02:07:46.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:07:46.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:46.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:07:46.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.9196ms +2024-05-23 02:08:01.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:08:01.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:01.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:01.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.5906ms +2024-05-23 02:08:16.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:08:16.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:16.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:16.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.1694ms +2024-05-23 02:08:31.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:08:31.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:31.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:31.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.2847ms +2024-05-23 02:08:46.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:08:46.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:46.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:08:46.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.6017ms +2024-05-23 02:09:01.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:09:01.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:01.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:01.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.5156ms +2024-05-23 02:09:16.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:09:16.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:16.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:16.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.7777ms +2024-05-23 02:09:31.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:09:31.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:31.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:31.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.8983ms +2024-05-23 02:09:46.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:09:46.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:46.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:09:46.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.5248ms +2024-05-23 02:10:01.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:10:01.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:01.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:01.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.2955ms +2024-05-23 02:10:16.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:10:16.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:16.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:16.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 41.3688ms +2024-05-23 02:10:31.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:10:31.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:31.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:31.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.8166ms +2024-05-23 02:10:46.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:10:46.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:46.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:10:46.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 33.7848ms +2024-05-23 02:11:01.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:11:01.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:01.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:01.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.3817ms +2024-05-23 02:11:16.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:11:16.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:16.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:16.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.3029ms +2024-05-23 02:11:31.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:11:31.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:31.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:31.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.5734ms +2024-05-23 02:11:46.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:11:46.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:46.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:11:46.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.3028ms +2024-05-23 02:12:01.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:12:01.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:01.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:01.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 43.333ms +2024-05-23 02:12:16.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:12:16.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:16.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:16.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.2757ms +2024-05-23 02:12:24.960 +02:00 [INF] Received a message with ID: '3c51e089425b4e82a4c6a67f6a249b6b', Correlation ID: '51fb01d74e9b4c2e8211b41bfa429bf3', timestamp: 1716423144, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:12:24.961 +02:00 [INF] Handling a message: friend_request_sent with ID: 3c51e089425b4e82a4c6a67f6a249b6b, Correlation ID: 51fb01d74e9b4c2e8211b41bfa429bf3, retry: 0 +2024-05-23 02:12:24.962 +02:00 [INF] Received a message with ID: 'd167dd28cdbc46e0b8f32e2e02af00f1', Correlation ID: 'f5904a807c3a4ef79f6575f608145a61', timestamp: 1716423144, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:12:24.963 +02:00 [INF] Handling a message: friend_invited with ID: d167dd28cdbc46e0b8f32e2e02af00f1, Correlation ID: f5904a807c3a4ef79f6575f608145a61, retry: 0 +2024-05-23 02:12:25.110 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 02:12:25.111 +02:00 [INF] Handled a message: friend_request_sent with ID: 3c51e089425b4e82a4c6a67f6a249b6b, Correlation ID: 51fb01d74e9b4c2e8211b41bfa429bf3, retry: 0 +2024-05-23 02:12:25.330 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:12:25.330 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:25.331 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:25.372 +02:00 [INF] Received HTTP response headers after 41.5327ms - 200 +2024-05-23 02:12:25.373 +02:00 [INF] End processing HTTP request after 42.3979ms - 200 +2024-05-23 02:12:25.373 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:12:25.830 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 02:12:25.830 +02:00 [INF] Handled a message: friend_invited with ID: d167dd28cdbc46e0b8f32e2e02af00f1, Correlation ID: f5904a807c3a4ef79f6575f608145a61, retry: 0 +2024-05-23 02:12:25.895 +02:00 [INF] Received a message with ID: '3f690c9e7de74877be300434df974a4b', Correlation ID: 'd6fe02fc1b8842c592744e8c7232bace', timestamp: 1716423145, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:12:25.896 +02:00 [INF] Handling a message: friend_request_sent with ID: 3f690c9e7de74877be300434df974a4b, Correlation ID: d6fe02fc1b8842c592744e8c7232bace, retry: 0 +2024-05-23 02:12:25.895 +02:00 [INF] Received a message with ID: 'b6cba7b8c59242e4902c4d1e30ee66f4', Correlation ID: 'a3dbf0edfff74a8e94ae36ca283287c6', timestamp: 1716423145, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:12:25.896 +02:00 [INF] Handling a message: friend_invited with ID: b6cba7b8c59242e4902c4d1e30ee66f4, Correlation ID: a3dbf0edfff74a8e94ae36ca283287c6, retry: 0 +2024-05-23 02:12:25.933 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:12:25.934 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:25.936 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:25.976 +02:00 [INF] Received HTTP response headers after 39.1403ms - 200 +2024-05-23 02:12:25.976 +02:00 [INF] End processing HTTP request after 42.0073ms - 200 +2024-05-23 02:12:25.976 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:12:26.051 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 02:12:26.051 +02:00 [INF] Handled a message: friend_request_sent with ID: 3f690c9e7de74877be300434df974a4b, Correlation ID: d6fe02fc1b8842c592744e8c7232bace, retry: 0 +2024-05-23 02:12:26.886 +02:00 [INF] Received a message with ID: 'dcdb0c88bfed4c399fb5c734fd8291ef', Correlation ID: '1d6f84670c024f5dbecbe35a06141156', timestamp: 1716423146, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:12:26.887 +02:00 [INF] Handling a message: friend_request_sent with ID: dcdb0c88bfed4c399fb5c734fd8291ef, Correlation ID: 1d6f84670c024f5dbecbe35a06141156, retry: 0 +2024-05-23 02:12:27.339 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 02:12:27.339 +02:00 [INF] Handled a message: friend_request_sent with ID: dcdb0c88bfed4c399fb5c734fd8291ef, Correlation ID: 1d6f84670c024f5dbecbe35a06141156, retry: 0 +2024-05-23 02:12:29.042 +02:00 [INF] Received a message with ID: '23a48737977241c883ce58c519e81be8', Correlation ID: '68b3f8da40254d11a4b68c770a180a3a', timestamp: 1716423149, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:12:29.043 +02:00 [INF] Handling a message: friend_request_sent with ID: 23a48737977241c883ce58c519e81be8, Correlation ID: 68b3f8da40254d11a4b68c770a180a3a, retry: 0 +2024-05-23 02:12:29.194 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:12:29.194 +02:00 [INF] Handled a message: friend_request_sent with ID: 23a48737977241c883ce58c519e81be8, Correlation ID: 68b3f8da40254d11a4b68c770a180a3a, retry: 0 +2024-05-23 02:12:31.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:12:31.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:31.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:31.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.292ms +2024-05-23 02:12:46.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:12:46.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:46.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:12:46.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.2452ms +2024-05-23 02:12:49.217 +02:00 [ERR] There was an error when processing a message with id: 'b6cba7b8c59242e4902c4d1e30ee66f4'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:12:49.219 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:12:49.220 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b6cba7b8c59242e4902c4d1e30ee66f4', Correlation ID: 'a3dbf0edfff74a8e94ae36ca283287c6', retry 1/3... +2024-05-23 02:12:51.219 +02:00 [INF] Handling a message: friend_invited with ID: b6cba7b8c59242e4902c4d1e30ee66f4, Correlation ID: a3dbf0edfff74a8e94ae36ca283287c6, retry: 1 +2024-05-23 02:12:51.256 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:12:51.256 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:51.256 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:12:51.296 +02:00 [INF] Received HTTP response headers after 39.1303ms - 200 +2024-05-23 02:12:51.296 +02:00 [INF] End processing HTTP request after 40.0242ms - 200 +2024-05-23 02:12:51.296 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:13:01.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:13:01.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:01.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:01.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.034ms +2024-05-23 02:13:14.676 +02:00 [ERR] There was an error when processing a message with id: 'b6cba7b8c59242e4902c4d1e30ee66f4'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:13:14.678 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:13:14.680 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b6cba7b8c59242e4902c4d1e30ee66f4', Correlation ID: 'a3dbf0edfff74a8e94ae36ca283287c6', retry 2/3... +2024-05-23 02:13:16.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:13:16.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:16.680 +02:00 [INF] Handling a message: friend_invited with ID: b6cba7b8c59242e4902c4d1e30ee66f4, Correlation ID: a3dbf0edfff74a8e94ae36ca283287c6, retry: 2 +2024-05-23 02:13:16.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:16.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.2471ms +2024-05-23 02:13:16.717 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:13:16.717 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:13:16.717 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:13:16.755 +02:00 [INF] Received HTTP response headers after 38.0844ms - 200 +2024-05-23 02:13:16.756 +02:00 [INF] End processing HTTP request after 38.7851ms - 200 +2024-05-23 02:13:16.756 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:13:31.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:13:31.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:31.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:31.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.3394ms +2024-05-23 02:13:38.028 +02:00 [ERR] There was an error when processing a message with id: 'b6cba7b8c59242e4902c4d1e30ee66f4'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:13:38.031 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:13:38.035 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b6cba7b8c59242e4902c4d1e30ee66f4', Correlation ID: 'a3dbf0edfff74a8e94ae36ca283287c6', retry 3/3... +2024-05-23 02:13:40.035 +02:00 [INF] Handling a message: friend_invited with ID: b6cba7b8c59242e4902c4d1e30ee66f4, Correlation ID: a3dbf0edfff74a8e94ae36ca283287c6, retry: 3 +2024-05-23 02:13:40.072 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:13:40.072 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:13:40.072 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:13:40.113 +02:00 [INF] Received HTTP response headers after 40.1962ms - 200 +2024-05-23 02:13:40.113 +02:00 [INF] End processing HTTP request after 41.2658ms - 200 +2024-05-23 02:13:40.114 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:13:46.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:13:46.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:46.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:13:46.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.5624ms +2024-05-23 02:14:01.562 +02:00 [ERR] There was an error when processing a message with id: 'b6cba7b8c59242e4902c4d1e30ee66f4'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:14:01.566 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:14:01.569 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'b6cba7b8c59242e4902c4d1e30ee66f4', Correlation ID: 'a3dbf0edfff74a8e94ae36ca283287c6', retry 4/3... +2024-05-23 02:14:01.570 +02:00 [ERR] Handling a message: friend_invited with ID: b6cba7b8c59242e4902c4d1e30ee66f4, Correlation ID: a3dbf0edfff74a8e94ae36ca283287c6 failed +2024-05-23 02:14:01.573 +02:00 [INF] Received a message with ID: '4bc248039f414809a19b635359bcd02a', Correlation ID: '1ab5445263004a64a595ce4b1845b247', timestamp: 1716423146, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:14:01.573 +02:00 [INF] Handling a message: friend_invited with ID: 4bc248039f414809a19b635359bcd02a, Correlation ID: 1ab5445263004a64a595ce4b1845b247, retry: 0 +2024-05-23 02:14:01.609 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:14:01.610 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:01.610 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:01.649 +02:00 [INF] Received HTTP response headers after 38.4884ms - 200 +2024-05-23 02:14:01.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:01.649 +02:00 [INF] End processing HTTP request after 39.6541ms - 200 +2024-05-23 02:14:01.651 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:14:01.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:01.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:01.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.2581ms +2024-05-23 02:14:16.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:16.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:16.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:16.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.7529ms +2024-05-23 02:14:22.896 +02:00 [ERR] There was an error when processing a message with id: '4bc248039f414809a19b635359bcd02a'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:14:22.899 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:14:22.902 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4bc248039f414809a19b635359bcd02a', Correlation ID: '1ab5445263004a64a595ce4b1845b247', retry 1/3... +2024-05-23 02:14:24.903 +02:00 [INF] Handling a message: friend_invited with ID: 4bc248039f414809a19b635359bcd02a, Correlation ID: 1ab5445263004a64a595ce4b1845b247, retry: 1 +2024-05-23 02:14:24.938 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:14:24.938 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:24.938 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:24.974 +02:00 [INF] Received HTTP response headers after 35.5194ms - 200 +2024-05-23 02:14:24.974 +02:00 [INF] End processing HTTP request after 35.9287ms - 200 +2024-05-23 02:14:24.974 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:14:31.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:31.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:31.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:31.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.9719ms +2024-05-23 02:14:40.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:40.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:40.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:40.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.0923ms +2024-05-23 02:14:40.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:40.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:40.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:40.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.638ms +2024-05-23 02:14:46.441 +02:00 [ERR] There was an error when processing a message with id: '4bc248039f414809a19b635359bcd02a'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:14:46.442 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:14:46.444 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4bc248039f414809a19b635359bcd02a', Correlation ID: '1ab5445263004a64a595ce4b1845b247', retry 2/3... +2024-05-23 02:14:48.443 +02:00 [INF] Handling a message: friend_invited with ID: 4bc248039f414809a19b635359bcd02a, Correlation ID: 1ab5445263004a64a595ce4b1845b247, retry: 2 +2024-05-23 02:14:48.478 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:14:48.479 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:48.479 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:14:48.519 +02:00 [INF] Received HTTP response headers after 40.1805ms - 200 +2024-05-23 02:14:48.520 +02:00 [INF] End processing HTTP request after 41.1972ms - 200 +2024-05-23 02:14:48.520 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:14:55.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:14:55.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:55.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:14:55.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.8967ms +2024-05-23 02:15:09.916 +02:00 [ERR] There was an error when processing a message with id: '4bc248039f414809a19b635359bcd02a'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:15:09.920 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:15:09.924 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4bc248039f414809a19b635359bcd02a', Correlation ID: '1ab5445263004a64a595ce4b1845b247', retry 3/3... +2024-05-23 02:15:10.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:15:10.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:10.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:10.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.2746ms +2024-05-23 02:15:11.924 +02:00 [INF] Handling a message: friend_invited with ID: 4bc248039f414809a19b635359bcd02a, Correlation ID: 1ab5445263004a64a595ce4b1845b247, retry: 3 +2024-05-23 02:15:11.967 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:15:11.967 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:15:11.967 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:15:12.006 +02:00 [INF] Received HTTP response headers after 38.2138ms - 200 +2024-05-23 02:15:12.007 +02:00 [INF] End processing HTTP request after 39.6538ms - 200 +2024-05-23 02:15:12.007 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:15:25.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:15:25.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:25.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:25.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.3471ms +2024-05-23 02:15:35.207 +02:00 [ERR] There was an error when processing a message with id: '4bc248039f414809a19b635359bcd02a'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:15:35.209 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:15:35.210 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '4bc248039f414809a19b635359bcd02a', Correlation ID: '1ab5445263004a64a595ce4b1845b247', retry 4/3... +2024-05-23 02:15:35.210 +02:00 [ERR] Handling a message: friend_invited with ID: 4bc248039f414809a19b635359bcd02a, Correlation ID: 1ab5445263004a64a595ce4b1845b247 failed +2024-05-23 02:15:35.211 +02:00 [INF] Received a message with ID: '597666dc2ff14c68be857dd91beddb66', Correlation ID: 'd6cb994df6d5460ab5c85b0f70e94905', timestamp: 1716423149, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:15:35.211 +02:00 [INF] Handling a message: friend_invited with ID: 597666dc2ff14c68be857dd91beddb66, Correlation ID: d6cb994df6d5460ab5c85b0f70e94905, retry: 0 +2024-05-23 02:15:35.245 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:15:35.246 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:15:35.246 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:15:35.283 +02:00 [INF] Received HTTP response headers after 36.8178ms - 200 +2024-05-23 02:15:35.283 +02:00 [INF] End processing HTTP request after 37.2236ms - 200 +2024-05-23 02:15:35.283 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:15:37.016 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 0081b30c-ed71-4cb0-be03-e573bd46f820. +2024-05-23 02:15:37.016 +02:00 [INF] Handled a message: friend_invited with ID: 597666dc2ff14c68be857dd91beddb66, Correlation ID: d6cb994df6d5460ab5c85b0f70e94905, retry: 0 +2024-05-23 02:15:39.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:15:39.759 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:39.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:39.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 75.5698ms +2024-05-23 02:15:39.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:15:39.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:39.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:39.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 45.8395ms +2024-05-23 02:15:54.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:15:54.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:54.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:15:54.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.3131ms +2024-05-23 02:16:09.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:16:09.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:16:09.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:16:09.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.3557ms +2024-05-23 02:16:14.623 +02:00 [INF] Received a message with ID: '21b4adf9775041168c9ec22324d8c07d', Correlation ID: '130f7b033abb4122a249167d4485229d', timestamp: 1716423374, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:16:14.623 +02:00 [INF] Handling a message: friend_invited with ID: 21b4adf9775041168c9ec22324d8c07d, Correlation ID: 130f7b033abb4122a249167d4485229d, retry: 0 +2024-05-23 02:16:14.625 +02:00 [INF] Received a message with ID: '153a74e24c444168830a636b5373ce2e', Correlation ID: '3d6b9397e49d4b98ae8db5c2d94427ea', timestamp: 1716423374, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:16:14.625 +02:00 [INF] Handling a message: friend_request_sent with ID: 153a74e24c444168830a636b5373ce2e, Correlation ID: 3d6b9397e49d4b98ae8db5c2d94427ea, retry: 0 +2024-05-23 02:16:14.662 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:16:14.662 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:16:14.662 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:16:14.697 +02:00 [INF] Received HTTP response headers after 34.3314ms - 200 +2024-05-23 02:16:14.697 +02:00 [INF] End processing HTTP request after 34.6515ms - 200 +2024-05-23 02:16:14.697 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:16:14.774 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 02:16:14.774 +02:00 [INF] Handled a message: friend_request_sent with ID: 153a74e24c444168830a636b5373ce2e, Correlation ID: 3d6b9397e49d4b98ae8db5c2d94427ea, retry: 0 +2024-05-23 02:16:29.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:16:29.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:16:36.474 +02:00 [ERR] There was an error when processing a message with id: '21b4adf9775041168c9ec22324d8c07d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:16:36.475 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:16:36.476 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21b4adf9775041168c9ec22324d8c07d', Correlation ID: '130f7b033abb4122a249167d4485229d', retry 1/3... +2024-05-23 02:16:38.477 +02:00 [INF] Handling a message: friend_invited with ID: 21b4adf9775041168c9ec22324d8c07d, Correlation ID: 130f7b033abb4122a249167d4485229d, retry: 1 +2024-05-23 02:16:38.515 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:16:38.516 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:16:38.516 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:16:38.555 +02:00 [INF] Received HTTP response headers after 39.0283ms - 200 +2024-05-23 02:16:38.556 +02:00 [INF] End processing HTTP request after 39.9485ms - 200 +2024-05-23 02:16:38.556 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:16:45.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:16:45.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16163.6299ms +2024-05-23 02:16:48.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:16:48.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:00.376 +02:00 [ERR] There was an error when processing a message with id: '21b4adf9775041168c9ec22324d8c07d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:17:00.386 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:17:00.391 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21b4adf9775041168c9ec22324d8c07d', Correlation ID: '130f7b033abb4122a249167d4485229d', retry 2/3... +2024-05-23 02:17:00.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:17:00.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:02.390 +02:00 [INF] Handling a message: friend_invited with ID: 21b4adf9775041168c9ec22324d8c07d, Correlation ID: 130f7b033abb4122a249167d4485229d, retry: 2 +2024-05-23 02:17:02.433 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:17:02.433 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:17:02.434 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:17:02.473 +02:00 [INF] Received HTTP response headers after 38.9614ms - 200 +2024-05-23 02:17:02.473 +02:00 [INF] End processing HTTP request after 39.8231ms - 200 +2024-05-23 02:17:02.474 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:17:04.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:04.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16193.1532ms +2024-05-23 02:17:16.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:16.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16065.4967ms +2024-05-23 02:17:25.476 +02:00 [ERR] There was an error when processing a message with id: '21b4adf9775041168c9ec22324d8c07d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:17:25.480 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:17:25.483 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21b4adf9775041168c9ec22324d8c07d', Correlation ID: '130f7b033abb4122a249167d4485229d', retry 3/3... +2024-05-23 02:17:27.483 +02:00 [INF] Handling a message: friend_invited with ID: 21b4adf9775041168c9ec22324d8c07d, Correlation ID: 130f7b033abb4122a249167d4485229d, retry: 3 +2024-05-23 02:17:27.517 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:17:27.517 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:17:27.517 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:17:27.552 +02:00 [INF] Received HTTP response headers after 35.1839ms - 200 +2024-05-23 02:17:27.553 +02:00 [INF] End processing HTTP request after 35.6136ms - 200 +2024-05-23 02:17:27.553 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:17:30.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:17:30.720 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:46.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:17:46.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16170.4237ms +2024-05-23 02:17:50.908 +02:00 [ERR] There was an error when processing a message with id: '21b4adf9775041168c9ec22324d8c07d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 02:17:50.908 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28939672 (0x1B99598) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "bf759205-b6b2-4f41-ad79-9ab58ccff882"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 02:17:50.909 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '21b4adf9775041168c9ec22324d8c07d', Correlation ID: '130f7b033abb4122a249167d4485229d', retry 4/3... +2024-05-23 02:17:50.909 +02:00 [ERR] Handling a message: friend_invited with ID: 21b4adf9775041168c9ec22324d8c07d, Correlation ID: 130f7b033abb4122a249167d4485229d failed +2024-05-23 02:17:54.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:17:54.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:02.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:18:02.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:10.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:10.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16426.3316ms +2024-05-23 02:18:17.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:18:17.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:18.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:18.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16217.0708ms +2024-05-23 02:18:32.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:18:32.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:33.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:33.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16452.8739ms +2024-05-23 02:18:47.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:18:47.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:49.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:18:49.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16514.8796ms +2024-05-23 02:19:02.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:02.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:03.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:03.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16476.2003ms +2024-05-23 02:19:18.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:18.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16179.4744ms +2024-05-23 02:19:21.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:21.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:23.552 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:23.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:24.688 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:24.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:38.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:38.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16331.5589ms +2024-05-23 02:19:38.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:38.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:39.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:39.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16278.2562ms +2024-05-23 02:19:40.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:40.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:41.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:41.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16328.1312ms +2024-05-23 02:19:44.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:44.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:53.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:53.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:54.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:54.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16040.4601ms +2024-05-23 02:19:55.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:55.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:55.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:19:55.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15964.633ms +2024-05-23 02:19:56.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:19:56.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:00.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:00.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16292.7886ms +2024-05-23 02:20:08.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:08.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:09.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:09.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16426.946ms +2024-05-23 02:20:10.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:10.116 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:10.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:10.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15943.0639ms +2024-05-23 02:20:11.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:11.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:12.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16172.0392ms +2024-05-23 02:20:23.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:23.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:24.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:24.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16278.5907ms +2024-05-23 02:20:25.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:25.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:26.184 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:26.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16069.0864ms +2024-05-23 02:20:26.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:26.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:27.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:27.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16470.4473ms +2024-05-23 02:20:38.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:38.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:39.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:39.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16165.4054ms +2024-05-23 02:20:40.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:40.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:41.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:41.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16200.4103ms +2024-05-23 02:20:41.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:41.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:42.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:42.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15863.255ms +2024-05-23 02:20:53.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:53.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:54.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:54.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16292.0994ms +2024-05-23 02:20:55.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:55.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:56.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:56.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16332.4044ms +2024-05-23 02:20:56.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:20:56.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:57.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:20:57.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16345.953ms +2024-05-23 02:21:08.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:08.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:09.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:09.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16243.6405ms +2024-05-23 02:21:10.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:10.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:11.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:11.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16048.0606ms +2024-05-23 02:21:11.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:11.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:12.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:12.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16147.3782ms +2024-05-23 02:21:23.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:23.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:24.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:24.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16165.0083ms +2024-05-23 02:21:25.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:25.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:26.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:26.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16025.0031ms +2024-05-23 02:21:26.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:26.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:28.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:28.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16570.7666ms +2024-05-23 02:21:38.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:38.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:39.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:39.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16228.5528ms +2024-05-23 02:21:40.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:40.121 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:41.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:41.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:41.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:41.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16553.0301ms +2024-05-23 02:21:42.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:42.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16158.4934ms +2024-05-23 02:21:53.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:53.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:54.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:54.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16374.5957ms +2024-05-23 02:21:55.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:55.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:56.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:56.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16307.592ms +2024-05-23 02:21:56.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:21:56.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:58.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:21:58.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16568.2267ms +2024-05-23 02:22:08.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:08.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:09.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:09.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16126.1746ms +2024-05-23 02:22:10.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:10.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:11.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:11.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16001.2415ms +2024-05-23 02:22:11.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:11.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:12.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:12.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16235.0469ms +2024-05-23 02:22:23.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:23.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:24.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:24.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16149.078ms +2024-05-23 02:22:25.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:25.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:26.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:26.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16219.2998ms +2024-05-23 02:22:26.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:26.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:27.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:27.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16268.4206ms +2024-05-23 02:22:38.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:38.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:40.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:40.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16573.1062ms +2024-05-23 02:22:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:41.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:41.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:41.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:41.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16529.2474ms +2024-05-23 02:22:42.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:42.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16145.8015ms +2024-05-23 02:22:53.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:55.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:55.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:55.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:55.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16723.2206ms +2024-05-23 02:22:56.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:56.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16321.6395ms +2024-05-23 02:22:56.512 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:22:56.512 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:57.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:22:57.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16414.5607ms +2024-05-23 02:23:08.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:08.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:09.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:09.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16122.483ms +2024-05-23 02:23:10.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:10.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:11.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:11.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:11.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:11.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16523.2258ms +2024-05-23 02:23:12.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:12.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16347.1584ms +2024-05-23 02:23:23.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:23.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:24.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:24.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16337.4161ms +2024-05-23 02:23:25.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:25.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:26.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:26.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16038.3501ms +2024-05-23 02:23:26.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:26.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:27.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:27.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16147.2653ms +2024-05-23 02:23:38.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:38.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:39.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:39.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16198.962ms +2024-05-23 02:23:40.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:40.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:41.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:41.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16275.6766ms +2024-05-23 02:23:41.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:41.506 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:42.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:42.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16228.531ms +2024-05-23 02:23:53.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:53.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:54.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:54.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16195.1818ms +2024-05-23 02:23:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:55.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:56.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:56.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16237.4454ms +2024-05-23 02:23:56.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:23:56.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:57.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:23:57.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16097.9021ms +2024-05-23 02:24:08.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:08.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:09.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:09.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16200.894ms +2024-05-23 02:24:10.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:10.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:11.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:11.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:11.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:11.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16707.9977ms +2024-05-23 02:24:13.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:13.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16643.431ms +2024-05-23 02:24:23.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:23.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:24.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:24.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16305.4173ms +2024-05-23 02:24:25.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:25.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:26.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:26.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16103.7214ms +2024-05-23 02:24:26.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:26.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:27.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:27.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16361.0757ms +2024-05-23 02:24:38.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:38.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:39.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:39.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16492.1015ms +2024-05-23 02:24:40.115 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:40.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:41.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:41.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16445.4994ms +2024-05-23 02:24:41.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:41.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:42.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:42.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16051.5987ms +2024-05-23 02:24:53.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:53.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:54.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:54.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16116.3659ms +2024-05-23 02:24:55.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:55.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:56.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:24:56.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:56.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:56.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16512.2954ms +2024-05-23 02:24:57.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:24:57.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16182.2878ms +2024-05-23 02:25:08.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:08.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:09.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:09.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16349.766ms +2024-05-23 02:25:10.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:10.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:11.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:11.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16292.0114ms +2024-05-23 02:25:11.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:11.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:12.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:12.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16015.3886ms +2024-05-23 02:25:23.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:23.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:24.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:24.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16255.8325ms +2024-05-23 02:25:25.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:25.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:26.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:26.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16206.0835ms +2024-05-23 02:25:26.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:26.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:27.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:27.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16410.4152ms +2024-05-23 02:25:38.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:38.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:39.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:39.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16004.2649ms +2024-05-23 02:25:40.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:40.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:41.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:41.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16018.026ms +2024-05-23 02:25:41.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:41.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:42.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:42.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16465.0825ms +2024-05-23 02:25:53.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:53.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:54.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:54.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16251.4938ms +2024-05-23 02:25:55.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:55.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:56.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:56.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16380.5048ms +2024-05-23 02:25:56.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:25:56.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:58.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:25:58.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16721.7084ms +2024-05-23 02:26:08.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:08.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:09.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:09.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16017.3114ms +2024-05-23 02:26:10.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:10.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:11.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:11.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16231.3605ms +2024-05-23 02:26:11.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:11.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:12.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:12.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15990.5113ms +2024-05-23 02:26:23.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:23.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:24.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:24.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16147.7403ms +2024-05-23 02:26:25.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:25.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:26.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:26.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16032.3806ms +2024-05-23 02:26:26.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:26.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:27.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:27.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16299.5077ms +2024-05-23 02:26:38.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:38.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:39.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:39.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15976.6631ms +2024-05-23 02:26:40.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:40.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:41.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:41.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16215.924ms +2024-05-23 02:26:41.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:41.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:42.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:42.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15965.8059ms +2024-05-23 02:26:53.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:53.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:54.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:54.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16171.0347ms +2024-05-23 02:26:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:55.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:56.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:56.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16281.0873ms +2024-05-23 02:26:56.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:26:56.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:58.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:26:58.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16736.3485ms +2024-05-23 02:27:08.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:08.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:09.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:09.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15989.1952ms +2024-05-23 02:27:10.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:10.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:11.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:11.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:11.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:11.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16495.0991ms +2024-05-23 02:27:12.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:12.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16065.6343ms +2024-05-23 02:27:23.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:23.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:24.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:24.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16248.2429ms +2024-05-23 02:27:25.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:25.011 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:26.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:26.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16329.6697ms +2024-05-23 02:27:26.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:26.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:27.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:27.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16197.7752ms +2024-05-23 02:27:38.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:38.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:39.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:39.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16224.5979ms +2024-05-23 02:27:40.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:40.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:41.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:41.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:41.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:41.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16810.6741ms +2024-05-23 02:27:42.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:42.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16060.5388ms +2024-05-23 02:27:53.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:53.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:54.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:54.803 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16359.3113ms +2024-05-23 02:27:55.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:55.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:56.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:56.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16363.6854ms +2024-05-23 02:27:56.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:27:56.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:57.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:27:57.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16299.9567ms +2024-05-23 02:28:08.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:08.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:09.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:09.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15989.4164ms +2024-05-23 02:28:10.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:10.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:11.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:11.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16321.9259ms +2024-05-23 02:28:11.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:11.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:12.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16117.4347ms +2024-05-23 02:28:23.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:23.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:24.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:24.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16078.9706ms +2024-05-23 02:28:25.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:25.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:26.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:26.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16148.0235ms +2024-05-23 02:28:26.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:26.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:27.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:27.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16238.0748ms +2024-05-23 02:28:38.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:38.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:39.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:39.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16232.5958ms +2024-05-23 02:28:40.013 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:40.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:41.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:41.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16122.8063ms +2024-05-23 02:28:41.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:41.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16167.1949ms +2024-05-23 02:28:53.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:53.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:54.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:54.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16102.5297ms +2024-05-23 02:28:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:55.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:56.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:56.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16010.1388ms +2024-05-23 02:28:56.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:28:56.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:57.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:28:57.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16084.6694ms +2024-05-23 02:29:08.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:08.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:09.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:09.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16060.9776ms +2024-05-23 02:29:10.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:10.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:11.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:11.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16003.1991ms +2024-05-23 02:29:11.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:11.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:12.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:12.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16025.2113ms +2024-05-23 02:29:23.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:23.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:24.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:24.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16123.2839ms +2024-05-23 02:29:25.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:25.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:26.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:26.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16311.1724ms +2024-05-23 02:29:26.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:26.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:27.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:27.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16350.7784ms +2024-05-23 02:29:38.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:38.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:39.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:39.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16196.2501ms +2024-05-23 02:29:40.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:40.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:40.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:40.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15980.3951ms +2024-05-23 02:29:41.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:41.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:42.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:42.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15899.4326ms +2024-05-23 02:29:53.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:53.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:54.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:54.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16289.2709ms +2024-05-23 02:29:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:55.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:56.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:56.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16044.6651ms +2024-05-23 02:29:56.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:29:56.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:57.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:29:57.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16057.1841ms +2024-05-23 02:30:08.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:08.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:09.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:09.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15917.46ms +2024-05-23 02:30:10.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:10.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:11.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:11.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16181.7365ms +2024-05-23 02:30:11.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:11.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:12.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:12.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16085.4572ms +2024-05-23 02:30:23.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:23.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:24.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:24.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16014.2849ms +2024-05-23 02:30:25.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:25.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:25.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:25.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15889.4302ms +2024-05-23 02:30:26.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:26.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:27.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:27.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16290.5452ms +2024-05-23 02:30:38.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:38.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:39.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:39.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16131.2482ms +2024-05-23 02:30:40.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:40.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:41.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:41.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16066.5152ms +2024-05-23 02:30:41.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:41.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:42.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:42.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16216.7698ms +2024-05-23 02:30:53.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:54.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:54.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16197.2048ms +2024-05-23 02:30:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:55.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:56.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:56.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16087.486ms +2024-05-23 02:30:56.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:30:56.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:57.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:30:57.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16025.7665ms +2024-05-23 02:31:08.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:08.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:09.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:09.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16339.3315ms +2024-05-23 02:31:10.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:10.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:11.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:11.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16448.5343ms +2024-05-23 02:31:11.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:11.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:12.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:12.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16236.5404ms +2024-05-23 02:31:23.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:23.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:24.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:24.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16361.4159ms +2024-05-23 02:31:25.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:25.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:26.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:26.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16026.7306ms +2024-05-23 02:31:26.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:26.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:27.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:27.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16467.2695ms +2024-05-23 02:31:38.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:38.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:39.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:39.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16175.501ms +2024-05-23 02:31:40.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:40.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:41.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:41.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16109.3047ms +2024-05-23 02:31:41.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:41.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:42.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:42.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16042.0046ms +2024-05-23 02:31:53.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:53.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:54.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:54.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16196.0291ms +2024-05-23 02:31:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:55.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:56.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:56.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16103.3823ms +2024-05-23 02:31:56.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:31:56.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:57.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:31:57.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15971.0012ms +2024-05-23 02:32:08.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:08.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:09.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:09.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16001.2751ms +2024-05-23 02:32:10.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:10.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:11.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:11.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16078.3877ms +2024-05-23 02:32:11.513 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:11.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:12.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:12.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15996.4084ms +2024-05-23 02:32:23.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:23.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:24.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:24.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16019.5092ms +2024-05-23 02:32:25.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:25.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:26.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:26.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16093.0915ms +2024-05-23 02:32:26.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:26.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:27.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:27.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16206.712ms +2024-05-23 02:32:38.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:38.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:39.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:39.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16423.5726ms +2024-05-23 02:32:40.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:40.158 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:41.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:41.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16052.5955ms +2024-05-23 02:32:41.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:41.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:42.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:42.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16221.6887ms +2024-05-23 02:32:53.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:53.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:54.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:54.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16227.1748ms +2024-05-23 02:32:55.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:55.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:56.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:56.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16217.6556ms +2024-05-23 02:32:56.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:32:56.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:57.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:32:57.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16257.7639ms +2024-05-23 02:33:08.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:08.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:09.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:09.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15925.1635ms +2024-05-23 02:33:10.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:10.109 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:11.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:11.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16217.2285ms +2024-05-23 02:33:11.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:11.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:12.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:12.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16170.0867ms +2024-05-23 02:33:23.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:23.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:25.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:25.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:25.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:25.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16505.7001ms +2024-05-23 02:33:26.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:26.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16256.3001ms +2024-05-23 02:33:26.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:26.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:27.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:27.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16119.6215ms +2024-05-23 02:33:32.170 +02:00 [INF] Received a message with ID: '6591d2c147dd46a4a0f62dff712afde1', Correlation ID: '0c0ae4ba4c7d437cb23f5559a2371605', timestamp: 1716424412, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:33:32.170 +02:00 [INF] Received a message with ID: '574204c86aaf467c948390cca53202cc', Correlation ID: '860e8e1f83d043c4b2cf346063242464', timestamp: 1716424412, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:33:32.173 +02:00 [INF] Handling a message: friend_request_sent with ID: 574204c86aaf467c948390cca53202cc, Correlation ID: 860e8e1f83d043c4b2cf346063242464, retry: 0 +2024-05-23 02:33:32.173 +02:00 [INF] Handling a message: friend_invited with ID: 6591d2c147dd46a4a0f62dff712afde1, Correlation ID: 0c0ae4ba4c7d437cb23f5559a2371605, retry: 0 +2024-05-23 02:33:32.213 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 02:33:32.213 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 02:33:32.213 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 02:33:32.252 +02:00 [INF] Received HTTP response headers after 38.3423ms - 200 +2024-05-23 02:33:32.252 +02:00 [INF] End processing HTTP request after 39.181ms - 200 +2024-05-23 02:33:32.252 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:33:32.328 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 02:33:32.328 +02:00 [INF] Handled a message: friend_request_sent with ID: 574204c86aaf467c948390cca53202cc, Correlation ID: 860e8e1f83d043c4b2cf346063242464, retry: 0 +2024-05-23 02:33:32.444 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 02:33:32.445 +02:00 [INF] Handled a message: friend_invited with ID: 6591d2c147dd46a4a0f62dff712afde1, Correlation ID: 0c0ae4ba4c7d437cb23f5559a2371605, retry: 0 +2024-05-23 02:33:38.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:38.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:39.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:39.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16456.7147ms +2024-05-23 02:33:40.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:33:40.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:41.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:41.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16190.5746ms +2024-05-23 02:33:43.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:43.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16374.6496ms +2024-05-23 02:33:49.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:33:49.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:49.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:49.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.1103ms +2024-05-23 02:33:49.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:33:49.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:49.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:49.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 34.9684ms +2024-05-23 02:33:54.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:54.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16209.5234ms +2024-05-23 02:33:56.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:33:56.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16427.522ms +2024-05-23 02:34:04.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:34:04.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:04.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:04.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.9893ms +2024-05-23 02:34:19.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:34:19.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:19.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:19.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.0281ms +2024-05-23 02:34:34.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:34:34.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:34.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:34.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.2021ms +2024-05-23 02:34:49.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:34:49.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:49.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:34:49.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.639ms +2024-05-23 02:35:04.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:04.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:04.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:04.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.0692ms +2024-05-23 02:35:19.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:19.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:19.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:19.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.9344ms +2024-05-23 02:35:30.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:30.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:30.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:30.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.0372ms +2024-05-23 02:35:30.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:30.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:30.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:30.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.2123ms +2024-05-23 02:35:32.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:32.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:33.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:33.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.5267ms +2024-05-23 02:35:33.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:33.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:33.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:33.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.3714ms +2024-05-23 02:35:34.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:34.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:34.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:34.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.2092ms +2024-05-23 02:35:42.790 +02:00 [INF] Received a message with ID: '8bda6a64d8b74ccea1564220ff1a056c', Correlation ID: '13ecede1911e43b0bc17d94fa121eca1', timestamp: 1716424542, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 02:35:42.791 +02:00 [INF] Handling a message: friend_request_sent with ID: 8bda6a64d8b74ccea1564220ff1a056c, Correlation ID: 13ecede1911e43b0bc17d94fa121eca1, retry: 0 +2024-05-23 02:35:42.790 +02:00 [INF] Received a message with ID: 'e2b70138da194d6db0cc2e4538ca0774', Correlation ID: '969ae790143140b2b12f9092b5d9c28f', timestamp: 1716424542, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 02:35:42.794 +02:00 [INF] Handling a message: friend_invited with ID: e2b70138da194d6db0cc2e4538ca0774, Correlation ID: 969ae790143140b2b12f9092b5d9c28f, retry: 0 +2024-05-23 02:35:42.829 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 02:35:42.830 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:35:42.830 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 02:35:42.867 +02:00 [INF] Received HTTP response headers after 37.108ms - 200 +2024-05-23 02:35:42.867 +02:00 [INF] End processing HTTP request after 37.685ms - 200 +2024-05-23 02:35:42.868 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 02:35:42.950 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 02:35:42.950 +02:00 [INF] Handled a message: friend_request_sent with ID: 8bda6a64d8b74ccea1564220ff1a056c, Correlation ID: 13ecede1911e43b0bc17d94fa121eca1, retry: 0 +2024-05-23 02:35:43.505 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 02:35:43.505 +02:00 [INF] Handled a message: friend_invited with ID: e2b70138da194d6db0cc2e4538ca0774, Correlation ID: 969ae790143140b2b12f9092b5d9c28f, retry: 0 +2024-05-23 02:35:45.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:45.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:45.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:45.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.9743ms +2024-05-23 02:35:48.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:48.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:48.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:48.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.5696ms +2024-05-23 02:35:49.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:35:49.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:49.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:35:49.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.761ms +2024-05-23 02:36:00.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:00.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:00.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:00.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.3432ms +2024-05-23 02:36:03.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:03.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:03.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:03.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.6205ms +2024-05-23 02:36:04.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:04.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:04.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:04.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.3207ms +2024-05-23 02:36:15.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:15.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:15.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:15.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.939ms +2024-05-23 02:36:18.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:18.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:18.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:18.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.2748ms +2024-05-23 02:36:19.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:19.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:19.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:19.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.6368ms +2024-05-23 02:36:30.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:30.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:30.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:30.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.9223ms +2024-05-23 02:36:33.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:33.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:33.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:33.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.1842ms +2024-05-23 02:36:34.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:34.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:34.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:34.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.3197ms +2024-05-23 02:36:45.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:45.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:45.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:45.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.227ms +2024-05-23 02:36:48.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:48.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:48.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:48.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.4951ms +2024-05-23 02:36:49.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:36:49.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:49.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:36:49.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.4175ms +2024-05-23 02:37:00.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:00.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:00.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:00.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.1424ms +2024-05-23 02:37:03.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:03.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:03.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:03.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.5112ms +2024-05-23 02:37:04.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:04.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:04.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:04.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.1654ms +2024-05-23 02:37:15.722 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:15.723 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:15.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:15.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.6281ms +2024-05-23 02:37:18.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:18.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:18.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:18.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.4158ms +2024-05-23 02:37:19.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:19.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:19.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:19.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.8496ms +2024-05-23 02:37:30.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:30.723 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:30.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:30.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 38.6294ms +2024-05-23 02:37:33.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:33.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:33.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:33.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.4293ms +2024-05-23 02:37:34.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:34.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:34.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:34.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.5849ms +2024-05-23 02:37:45.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:45.724 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:45.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:45.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.3879ms +2024-05-23 02:37:48.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:48.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:48.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:48.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.2281ms +2024-05-23 02:37:49.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:49.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:49.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:49.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.4352ms +2024-05-23 02:37:51.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:37:51.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:51.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:37:51.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.9609ms +2024-05-23 02:38:00.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:00.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.0885ms +2024-05-23 02:38:00.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:00.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:00.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.5514ms +2024-05-23 02:38:00.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 36.7233ms +2024-05-23 02:38:00.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:00.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:00.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.4115ms +2024-05-23 02:38:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 40.3449ms +2024-05-23 02:38:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.6477ms +2024-05-23 02:38:02.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:02.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:02.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 35.6937ms +2024-05-23 02:38:03.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:03.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:03.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:03.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 39.2185ms +2024-05-23 02:38:04.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - null null +2024-05-23 02:38:04.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:04.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:04.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f - 200 null application/json 37.8179ms +2024-05-23 02:38:19.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:38:19.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:30.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:38:30.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:36.151 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:36.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16175.7622ms +2024-05-23 02:38:42.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 02:38:42.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:46.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:38:46.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16349.775ms +2024-05-23 02:39:03.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 02:39:03.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 21201.0863ms +2024-05-23 09:11:32.620 +02:00 [INF] Deregistering a service [id: notifications-service:0a4b27260d174de8ae8b64c786a78359] from Consul... +2024-05-23 09:11:32.629 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0a4b27260d174de8ae8b64c786a78359" +2024-05-23 09:11:32.629 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0a4b27260d174de8ae8b64c786a78359 +2024-05-23 09:11:32.630 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0a4b27260d174de8ae8b64c786a78359 +2024-05-23 09:11:32.698 +02:00 [INF] Received HTTP response headers after 68.2742ms - 200 +2024-05-23 09:11:32.699 +02:00 [INF] End processing HTTP request after 69.492ms - 200 +2024-05-23 09:11:32.699 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 09:11:32.704 +02:00 [INF] Deregistered a service [id: notifications-service:0a4b27260d174de8ae8b64c786a78359] from Consul. +2024-05-23 09:34:06.761 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 09:34:06.804 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 09:34:06.885 +02:00 [INF] Registering a service [id: notifications-service:23255d17ab0043ba9c56a63ec4060bf0] in Consul... +2024-05-23 09:34:06.903 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 09:34:06.906 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 09:34:06.907 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 09:34:06.918 +02:00 [INF] Received HTTP response headers after 8.6809ms - 200 +2024-05-23 09:34:06.919 +02:00 [INF] End processing HTTP request after 13.1937ms - 200 +2024-05-23 09:34:06.921 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 09:34:06.922 +02:00 [INF] Registered a service [id: notifications-service:23255d17ab0043ba9c56a63ec4060bf0] in Consul. +2024-05-23 09:34:06.928 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 09:34:06.937 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 09:34:06.939 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 09:34:06.941 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 09:34:06.944 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 09:34:06.946 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 09:34:06.947 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 09:34:06.949 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 09:34:10.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:34:10.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:10.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:34:10.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:23.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:23.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13200.9622ms +2024-05-23 09:34:24.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:24.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13549.4758ms +2024-05-23 09:34:25.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:34:25.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:38.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:38.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12681.0864ms +2024-05-23 09:34:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:34:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:53.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:34:53.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12935.3274ms +2024-05-23 09:34:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:34:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:08.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:08.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12932.5887ms +2024-05-23 09:35:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:35:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:23.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:23.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12936.1418ms +2024-05-23 09:35:25.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:35:25.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:38.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:38.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12701.2465ms +2024-05-23 09:35:40.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:35:40.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:53.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:35:53.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12897.5863ms +2024-05-23 09:35:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:35:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:08.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:08.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12735.3209ms +2024-05-23 09:36:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:36:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:23.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:23.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12684.5973ms +2024-05-23 09:36:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:36:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:38.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:38.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12902.2855ms +2024-05-23 09:36:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:36:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:43.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2023-01-01&endDate=2023-01-31&page=1&resultsPerPage=5 - null null +2024-05-23 09:36:43.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:53.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:53.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12546.1514ms +2024-05-23 09:36:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:36:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:56.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:36:56.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2023-01-01&endDate=2023-01-31&page=1&resultsPerPage=5 - 200 null application/json 12730.6297ms +2024-05-23 09:37:08.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:08.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12739.9471ms +2024-05-23 09:37:10.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:37:10.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:23.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:23.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12920.1185ms +2024-05-23 09:37:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:37:25.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:38.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-22&endDate=2024-05-23&page=1&resultsPerPage=5 - null null +2024-05-23 09:37:38.007 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:39.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:39.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13699.9623ms +2024-05-23 09:37:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:37:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:52.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:52.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-22&endDate=2024-05-23&page=1&resultsPerPage=5 - 200 null application/json 14516.3978ms +2024-05-23 09:37:54.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:37:54.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13752.4579ms +2024-05-23 09:37:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:37:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:02.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-23&endDate=2024-05-23&page=1&resultsPerPage=5 - null null +2024-05-23 09:38:02.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:10.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:10.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 14937.402ms +2024-05-23 09:38:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:38:10.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:15.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:15.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-23&endDate=2024-05-23&page=1&resultsPerPage=5 - 200 null application/json 13942.4391ms +2024-05-23 09:38:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:38:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:27.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:27.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 16555.7979ms +2024-05-23 09:38:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:38:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:44.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:44.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 18284.0067ms +2024-05-23 09:38:54.159 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-21&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 09:38:54.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:55.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:38:55.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:56.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:38:56.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15309.0702ms +2024-05-23 09:39:08.645 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:08.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-21&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 14486.8881ms +2024-05-23 09:39:10.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:39:10.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:11.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:11.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15484.5731ms +2024-05-23 09:39:24.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:24.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13815.3515ms +2024-05-23 09:39:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:39:25.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:25.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 09:39:25.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:40.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:40.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 14459.44ms +2024-05-23 09:39:40.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:40.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 15000.0888ms +2024-05-23 09:39:40.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:39:40.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:54.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:39:54.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13996.8149ms +2024-05-23 09:39:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:39:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:10.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:40:10.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:13.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:13.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 17485.8064ms +2024-05-23 09:40:23.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:23.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13193.5629ms +2024-05-23 09:40:25.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:40:25.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:38.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:38.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13085.8585ms +2024-05-23 09:40:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:40:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:54.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:40:54.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 13209.0322ms +2024-05-23 09:40:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:40:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:08.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:08.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12925.5216ms +2024-05-23 09:41:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:41:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:23.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:23.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12700.0225ms +2024-05-23 09:41:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:41:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:38.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:38.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12430.3192ms +2024-05-23 09:41:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:41:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:53.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:41:53.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12490.8782ms +2024-05-23 09:41:55.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:41:55.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:08.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:08.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12972.5724ms +2024-05-23 09:42:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:42:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:23.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:23.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12684.3229ms +2024-05-23 09:42:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:42:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:38.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:38.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12529.8175ms +2024-05-23 09:42:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:42:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:53.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:42:53.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12963.8936ms +2024-05-23 09:42:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:42:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:08.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:08.406 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12613.5723ms +2024-05-23 09:43:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:43:10.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:23.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:23.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12635.2073ms +2024-05-23 09:43:25.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:43:25.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:38.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:38.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12786.8332ms +2024-05-23 09:43:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:43:40.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:53.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:43:53.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12738.981ms +2024-05-23 09:43:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:43:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:08.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:08.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12873.7408ms +2024-05-23 09:44:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:44:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:23.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:23.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 12483.1847ms +2024-05-23 09:44:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:44:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:44:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:44:55.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:44:55.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:45:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:45:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:45:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:45:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:45:40.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:45:40.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:45:55.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:45:55.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:07.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:07.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:10.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:10.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:37.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:37.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:52.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:46:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:46:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:03.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:03.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157510.6094ms +2024-05-23 09:47:07.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:07.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:10.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:10.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:18.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:18.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157258.7373ms +2024-05-23 09:47:22.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:22.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:25.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:25.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:33.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:33.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157249.4513ms +2024-05-23 09:47:37.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:37.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:48.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:48.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157290.586ms +2024-05-23 09:47:51.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:51.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:52.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:52.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:47:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:47:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:02.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:02.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157052.3907ms +2024-05-23 09:48:07.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:07.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:18.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:18.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157287.8481ms +2024-05-23 09:48:21.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:21.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:25.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:36.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:36.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:37.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:37.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:37.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:37.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162116.8759ms +2024-05-23 09:48:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:45.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:45.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157789.0818ms +2024-05-23 09:48:47.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:47.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157138.6145ms +2024-05-23 09:48:51.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:51.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:52.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:52.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:48:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:48:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:06.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:06.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:07.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:07.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:15.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:15.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169756.6104ms +2024-05-23 09:49:16.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:16.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158627.4171ms +2024-05-23 09:49:19.410 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:19.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158617.2934ms +2024-05-23 09:49:21.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:21.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:36.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:36.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:37.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:37.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:38.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:38.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165283.2598ms +2024-05-23 09:49:38.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:38.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162335.78ms +2024-05-23 09:49:39.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:39.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:40.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:51.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:51.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:52.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:52.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164482.2241ms +2024-05-23 09:49:52.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:52.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:52.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:49:52.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162004.1896ms +2024-05-23 09:49:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:49:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:07.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:07.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164566.7776ms +2024-05-23 09:50:07.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:07.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:07.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:07.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162095.8208ms +2024-05-23 09:50:09.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:09.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:21.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:21.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:22.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:22.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161605.5027ms +2024-05-23 09:50:22.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:22.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164608.8696ms +2024-05-23 09:50:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:24.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:24.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:36.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:36.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:37.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:37.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:37.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:37.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166012.2743ms +2024-05-23 09:50:37.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:37.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162049.0341ms +2024-05-23 09:50:37.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:37.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165130.3343ms +2024-05-23 09:50:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:39.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:51.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:51.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:52.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:52.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164655.0753ms +2024-05-23 09:50:52.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:52.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161747.1789ms +2024-05-23 09:50:52.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:52.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:54.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:54.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:50:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:50:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:06.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:06.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:07.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:07.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161554.6486ms +2024-05-23 09:51:07.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:07.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165667.0004ms +2024-05-23 09:51:07.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:07.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:09.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:09.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:21.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:21.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:22.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:22.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164733.3586ms +2024-05-23 09:51:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:22.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:22.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166012.4343ms +2024-05-23 09:51:22.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:22.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162101.3927ms +2024-05-23 09:51:24.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:24.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:36.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:36.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:37.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:37.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:37.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:37.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165135.635ms +2024-05-23 09:51:37.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:37.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166194.1188ms +2024-05-23 09:51:38.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:38.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162650.1486ms +2024-05-23 09:51:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:39.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:51.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:51.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:55.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:51:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:57.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:57.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169722.1333ms +2024-05-23 09:51:57.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:57.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170726.0717ms +2024-05-23 09:51:57.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:57.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166796.3137ms +2024-05-23 09:51:59.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:59.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157363.6609ms +2024-05-23 09:51:59.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:51:59.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157121.5625ms +2024-05-23 09:52:06.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:06.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:07.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:07.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:09.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:09.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:10.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:14.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:14.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168757.1927ms +2024-05-23 09:52:14.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:14.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157762.0817ms +2024-05-23 09:52:14.800 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:14.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157006.3309ms +2024-05-23 09:52:21.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:21.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:24.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:24.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:26.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:26.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167145.6952ms +2024-05-23 09:52:27.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:27.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166758.8305ms +2024-05-23 09:52:29.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:29.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157269.9279ms +2024-05-23 09:52:29.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:29.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157153.346ms +2024-05-23 09:52:36.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:36.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:37.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:37.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:39.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:39.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:44.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:44.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168775.5666ms +2024-05-23 09:52:51.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:51.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:54.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:54.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:52:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:59.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:59.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171764.7044ms +2024-05-23 09:52:59.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:59.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169771.4624ms +2024-05-23 09:52:59.597 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:59.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168804.2812ms +2024-05-23 09:52:59.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:52:59.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158114.4623ms +2024-05-23 09:53:05.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:05.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162832.4931ms +2024-05-23 09:53:07.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:07.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:09.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:09.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:14.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:14.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169744.5124ms +2024-05-23 09:53:14.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:14.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168745.5943ms +2024-05-23 09:53:14.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:14.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157829.5171ms +2024-05-23 09:53:20.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:20.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162361.9236ms +2024-05-23 09:53:21.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:21.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:22.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:24.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:24.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:29.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:29.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168822.5579ms +2024-05-23 09:53:29.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:29.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157832.5961ms +2024-05-23 09:53:29.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:29.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169829.3333ms +2024-05-23 09:53:35.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:35.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162401.2742ms +2024-05-23 09:53:37.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:37.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:39.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:40.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:44.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:44.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169750.3123ms +2024-05-23 09:53:44.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:44.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168820.0626ms +2024-05-23 09:53:44.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:44.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157832.6421ms +2024-05-23 09:53:51.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:51.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:52.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:52.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:54.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:54.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:55.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:53:55.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167365.6489ms +2024-05-23 09:53:55.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:53:55.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:05.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:05.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 175292.735ms +2024-05-23 09:54:06.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:06.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:07.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:07.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:09.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:09.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163735.7638ms +2024-05-23 09:54:20.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 178735.6987ms +2024-05-23 09:54:20.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 177747.5785ms +2024-05-23 09:54:20.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 189758.1851ms +2024-05-23 09:54:20.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 175762.5427ms +2024-05-23 09:54:20.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162783.3479ms +2024-05-23 09:54:20.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 160783.4372ms +2024-05-23 09:54:20.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:20.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 174797.4398ms +2024-05-23 09:54:21.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:21.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:24.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:24.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:32.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:32.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171565.3552ms +2024-05-23 09:54:35.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:35.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 159233.8479ms +2024-05-23 09:54:35.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:35.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163292.5386ms +2024-05-23 09:54:36.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:36.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:37.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:37.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:39.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:39.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:51.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:51.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 160926.9146ms +2024-05-23 09:54:51.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:51.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:51.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:51.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165014.4605ms +2024-05-23 09:54:52.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:52.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162301.8318ms +2024-05-23 09:54:52.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:52.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164312.9047ms +2024-05-23 09:54:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:54:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:54:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:04.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:04.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 159939.5029ms +2024-05-23 09:55:04.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:04.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 159013.0538ms +2024-05-23 09:55:05.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:05.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163476.278ms +2024-05-23 09:55:05.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:05.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162615.061ms +2024-05-23 09:55:06.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:06.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:07.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:07.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:09.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:09.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:10.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:21.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:21.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164882.2462ms +2024-05-23 09:55:21.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:21.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161936.6453ms +2024-05-23 09:55:21.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:21.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:21.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:21.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161011.182ms +2024-05-23 09:55:22.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:22.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164216.9308ms +2024-05-23 09:55:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:25.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:36.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:36.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:36.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:36.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165150.3735ms +2024-05-23 09:55:37.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:37.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164218.3835ms +2024-05-23 09:55:37.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:37.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162280.4313ms +2024-05-23 09:55:37.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:37.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161516.2922ms +2024-05-23 09:55:37.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:37.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:39.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:39.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:51.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:51.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163592.2516ms +2024-05-23 09:55:51.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:51.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161592.5498ms +2024-05-23 09:55:51.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:51.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 160618.9653ms +2024-05-23 09:55:51.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:51.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:52.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:52.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:54.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:54.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:55:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:55:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:06.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:06.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161173.7327ms +2024-05-23 09:56:06.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:06.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162172.1499ms +2024-05-23 09:56:07.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:07.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165229.6284ms +2024-05-23 09:56:07.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:07.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164384.9055ms +2024-05-23 09:56:07.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:07.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:09.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:09.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:10.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:21.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:21.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161740.9742ms +2024-05-23 09:56:21.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:21.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163757.5189ms +2024-05-23 09:56:21.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:21.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 160949.3563ms +2024-05-23 09:56:21.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:21.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:24.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:24.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:36.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:36.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:37.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:37.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:39.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:39.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:40.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:40.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:51.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:51.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:52.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:52.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:54.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:54.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:56:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:56:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:06.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:06.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:07.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:07.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:09.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:09.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:13.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:13.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 201136.937ms +2024-05-23 09:57:18.953 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:18.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 191158.9563ms +2024-05-23 09:57:21.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:21.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:22.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:23.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:23.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 209171.9291ms +2024-05-23 09:57:24.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:24.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:29.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:29.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 213364.4822ms +2024-05-23 09:57:36.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:36.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:37.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:37.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:39.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:39.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:44.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:44.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 217212.3875ms +2024-05-23 09:57:49.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:49.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 237211.2881ms +2024-05-23 09:57:52.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:52.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:52.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:52.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:57:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 215650.7943ms +2024-05-23 09:57:57.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185655.0175ms +2024-05-23 09:57:57.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 226658.873ms +2024-05-23 09:57:57.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 200675.5962ms +2024-05-23 09:57:57.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 211678.9417ms +2024-05-23 09:57:57.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.482 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 199689.3726ms +2024-05-23 09:57:57.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169710.2284ms +2024-05-23 09:57:57.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166716.343ms +2024-05-23 09:57:57.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167720.7354ms +2024-05-23 09:57:57.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 197723.2162ms +2024-05-23 09:57:57.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 212725.0694ms +2024-05-23 09:57:57.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 196732.4199ms +2024-05-23 09:57:57.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 227731.6647ms +2024-05-23 09:57:57.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 184742.0089ms +2024-05-23 09:57:57.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170742.9744ms +2024-05-23 09:57:57.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:57:57.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 181980.4251ms +2024-05-23 09:58:06.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:06.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:07.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:07.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:09.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:09.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167260.6998ms +2024-05-23 09:58:09.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:09.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:14.058 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:14.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171265.7494ms +2024-05-23 09:58:21.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:21.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:24.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:24.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:36.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:36.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:37.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:37.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:39.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:39.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:40.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:51.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:51.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:52.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:54.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:54.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:58:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:58:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 188651.7239ms +2024-05-23 09:59:00.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 214666.7918ms +2024-05-23 09:59:00.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 203663.8061ms +2024-05-23 09:59:00.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 200670.3325ms +2024-05-23 09:59:00.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185669.566ms +2024-05-23 09:59:00.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 199676.2895ms +2024-05-23 09:59:00.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 202664.7817ms +2024-05-23 09:59:00.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172713.5825ms +2024-05-23 09:59:00.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158716.0436ms +2024-05-23 09:59:00.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169720.189ms +2024-05-23 09:59:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 187717.1556ms +2024-05-23 09:59:00.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170726.1286ms +2024-05-23 09:59:00.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:00.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 184746.309ms +2024-05-23 09:59:06.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:06.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163867.8199ms +2024-05-23 09:59:06.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:06.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:07.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:07.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:09.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:09.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:11.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:11.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166877.3176ms +2024-05-23 09:59:15.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:15.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169704.0875ms +2024-05-23 09:59:15.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:15.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158712.2507ms +2024-05-23 09:59:15.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:15.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157817.1029ms +2024-05-23 09:59:17.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:17.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157293.8974ms +2024-05-23 09:59:17.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:17.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157180.744ms +2024-05-23 09:59:21.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:21.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:22.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:24.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:33.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:33.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 159068.9734ms +2024-05-23 09:59:34.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:34.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162297.6756ms +2024-05-23 09:59:34.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:34.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161306.245ms +2024-05-23 09:59:34.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:34.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158446.2349ms +2024-05-23 09:59:36.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:36.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:37.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:37.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:39.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:39.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:51.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:51.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:52.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:52.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:54.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:54.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 09:59:55.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 09:59:55.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:06.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:06.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:07.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:07.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:09.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:09.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:21.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:21.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:22.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:24.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:24.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:36.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:36.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:37.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:37.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165217.0227ms +2024-05-23 10:00:37.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:37.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:38.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:38.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 192260.9266ms +2024-05-23 10:00:38.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:38.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 210429.5297ms +2024-05-23 10:00:38.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:38.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162508.1052ms +2024-05-23 10:00:38.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:38.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 181622.1773ms +2024-05-23 10:00:39.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:39.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:40.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:40.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 180688.9471ms +2024-05-23 10:00:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:41.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:41.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168242.3305ms +2024-05-23 10:00:41.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:41.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 211789.8448ms +2024-05-23 10:00:41.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:41.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 184055.4733ms +2024-05-23 10:00:41.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:41.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 181120.3342ms +2024-05-23 10:00:42.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:42.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 211688.4608ms +2024-05-23 10:00:42.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:42.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 197981.3703ms +2024-05-23 10:00:43.034 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:43.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 216240.8716ms +2024-05-23 10:00:43.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:43.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 201057.0392ms +2024-05-23 10:00:50.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:50.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 208473.5652ms +2024-05-23 10:00:51.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:51.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:52.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:52.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:54.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:54.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:00:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:00:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:06.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:06.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:07.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:07.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:09.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:09.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:21.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:21.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:22.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:22.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:24.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:24.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:36.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:36.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 209367.7123ms +2024-05-23 10:01:36.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:36.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:37.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:37.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:39.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:39.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:51.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:54.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:54.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:01:55.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:01:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:00.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:00.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 201138.6226ms +2024-05-23 10:02:05.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:05.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 235149.1427ms +2024-05-23 10:02:06.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:06.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:07.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:07.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:09.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:09.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:10.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:10.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 214165.2924ms +2024-05-23 10:02:15.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 203810.8421ms +2024-05-23 10:02:15.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 214817.101ms +2024-05-23 10:02:15.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 199809.7088ms +2024-05-23 10:02:15.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 200816.3165ms +2024-05-23 10:02:15.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 202821.2324ms +2024-05-23 10:02:15.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 230825.9825ms +2024-05-23 10:02:15.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 245837.1514ms +2024-05-23 10:02:15.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169837.8016ms +2024-05-23 10:02:15.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 217881.6487ms +2024-05-23 10:02:15.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 233890.3745ms +2024-05-23 10:02:15.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 247893.4476ms +2024-05-23 10:02:15.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 232895.024ms +2024-05-23 10:02:15.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 173901.4088ms +2024-05-23 10:02:15.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 188906.9526ms +2024-05-23 10:02:15.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 229911.106ms +2024-05-23 10:02:15.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185912.5003ms +2024-05-23 10:02:15.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170941.037ms +2024-05-23 10:02:15.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158967.1933ms +2024-05-23 10:02:15.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172980.1347ms +2024-05-23 10:02:15.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 188000.272ms +2024-05-23 10:02:15.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:15.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185000.6766ms +2024-05-23 10:02:16.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:16.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158311.0697ms +2024-05-23 10:02:21.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:21.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:24.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:24.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:25.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:25.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:30.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:30.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158745.1673ms +2024-05-23 10:02:30.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:30.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170738.0944ms +2024-05-23 10:02:30.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:30.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169765.8104ms +2024-05-23 10:02:30.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:30.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157765.4997ms +2024-05-23 10:02:36.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:36.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:37.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:37.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162220.8452ms +2024-05-23 10:02:37.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:37.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:39.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:39.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:40.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:45.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:45.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158842.4073ms +2024-05-23 10:02:45.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:45.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169867.6862ms +2024-05-23 10:02:45.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:45.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157870.4127ms +2024-05-23 10:02:51.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:54.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:54.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:02:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:02:55.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:01.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:01.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172143.9004ms +2024-05-23 10:03:06.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:06.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:06.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:06.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 176178.8377ms +2024-05-23 10:03:07.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:07.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:09.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:09.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:10.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:10.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172777.1704ms +2024-05-23 10:03:15.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157786.7567ms +2024-05-23 10:03:15.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 173793.0751ms +2024-05-23 10:03:15.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170794.3782ms +2024-05-23 10:03:15.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158796.7202ms +2024-05-23 10:03:15.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:15.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169808.0252ms +2024-05-23 10:03:21.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:21.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:22.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:22.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:24.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:25.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:30.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:30.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158753.4228ms +2024-05-23 10:03:30.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:30.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157764.4714ms +2024-05-23 10:03:30.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:30.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170765.1199ms +2024-05-23 10:03:30.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:30.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169769.7359ms +2024-05-23 10:03:36.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:36.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:37.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:37.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:40.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:40.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:42.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:42.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168134.4925ms +2024-05-23 10:03:45.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:45.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169754.6301ms +2024-05-23 10:03:45.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:45.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158753.4508ms +2024-05-23 10:03:45.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:45.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157756.6541ms +2024-05-23 10:03:47.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:47.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157803.5981ms +2024-05-23 10:03:51.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:51.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:52.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:52.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:53.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:53.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162946.461ms +2024-05-23 10:03:54.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:54.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:03:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:03:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:06.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:06.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:07.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:07.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:09.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:09.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:10.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 177863.5481ms +2024-05-23 10:04:20.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 160868.016ms +2024-05-23 10:04:20.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 174871.1457ms +2024-05-23 10:04:20.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162869.5206ms +2024-05-23 10:04:20.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163878.7791ms +2024-05-23 10:04:20.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 178890.6933ms +2024-05-23 10:04:20.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:20.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 175896.852ms +2024-05-23 10:04:21.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:21.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:22.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:23.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:23.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162735.6884ms +2024-05-23 10:04:24.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:24.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:25.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:25.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:37.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:37.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:39.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:51.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:54.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:54.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:54.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:54.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 183164.4133ms +2024-05-23 10:04:54.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:54.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 179175.685ms +2024-05-23 10:04:54.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:54.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164182.1488ms +2024-05-23 10:04:55.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:55.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168211.7693ms +2024-05-23 10:04:55.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:04:55.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 180439.929ms +2024-05-23 10:04:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:04:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:05.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:05.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 175624.7295ms +2024-05-23 10:05:05.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:05.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:05.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 192630.3728ms +2024-05-23 10:05:05.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 177630.5431ms +2024-05-23 10:05:06.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:06.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:07.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:07.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:07.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:07.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165122.7001ms +2024-05-23 10:05:08.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:08.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162704.4532ms +2024-05-23 10:05:09.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:09.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167278.0431ms +2024-05-23 10:05:09.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:09.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164330.8952ms +2024-05-23 10:05:09.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:09.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:10.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:10.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:21.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:21.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:22.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:22.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164929.301ms +2024-05-23 10:05:22.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:23.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:23.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162581.6998ms +2024-05-23 10:05:23.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:23.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163820.2327ms +2024-05-23 10:05:23.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:23.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166848.6674ms +2024-05-23 10:05:24.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:24.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:36.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:36.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:37.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:37.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:39.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:39.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:51.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:51.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:52.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:52.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164875.9531ms +2024-05-23 10:05:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:52.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:53.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:53.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 178302.3165ms +2024-05-23 10:05:53.153 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:53.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166345.6087ms +2024-05-23 10:05:53.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:53.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164023.5694ms +2024-05-23 10:05:54.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:54.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 182316.2938ms +2024-05-23 10:05:54.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:54.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:54.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:05:54.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164133.8262ms +2024-05-23 10:05:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:05:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:05.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:05.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 189557.061ms +2024-05-23 10:06:06.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:06.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:07.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:07.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165982.474ms +2024-05-23 10:06:07.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:07.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:07.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:07.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165051.8117ms +2024-05-23 10:06:08.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:08.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162408.7968ms +2024-05-23 10:06:08.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:08.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163622.0781ms +2024-05-23 10:06:09.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:09.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:10.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:21.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:21.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164711.2603ms +2024-05-23 10:06:22.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161789.9796ms +2024-05-23 10:06:22.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162986.1728ms +2024-05-23 10:06:22.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:22.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166046.9098ms +2024-05-23 10:06:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:25.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:36.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:36.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:37.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:37.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:39.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:39.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:40.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:40.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:51.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:51.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:52.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:52.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:06:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:06:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172773.8887ms +2024-05-23 10:07:00.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169787.1664ms +2024-05-23 10:07:00.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185783.8587ms +2024-05-23 10:07:00.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 188798.7312ms +2024-05-23 10:07:00.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170796.2072ms +2024-05-23 10:07:00.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:00.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158896.3002ms +2024-05-23 10:07:06.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:06.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:07.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:07.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:09.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:09.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171761.4902ms +2024-05-23 10:07:14.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 201761.4638ms +2024-05-23 10:07:14.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168781.7697ms +2024-05-23 10:07:14.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 187778.0213ms +2024-05-23 10:07:14.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169778.6144ms +2024-05-23 10:07:14.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:14.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 198786.3354ms +2024-05-23 10:07:15.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:15.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157341.6664ms +2024-05-23 10:07:16.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:16.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 156957.94ms +2024-05-23 10:07:21.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:21.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:22.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:24.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:25.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:36.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:36.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:37.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:37.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:39.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:39.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169696.9547ms +2024-05-23 10:07:44.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172806.5395ms +2024-05-23 10:07:44.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171810.5475ms +2024-05-23 10:07:44.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157795.4924ms +2024-05-23 10:07:44.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 183813.4751ms +2024-05-23 10:07:44.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:44.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168812.622ms +2024-05-23 10:07:50.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:50.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162510.4699ms +2024-05-23 10:07:51.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:52.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:52.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:54.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:54.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:07:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:07:55.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:00.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:00.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169725.3835ms +2024-05-23 10:08:00.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:00.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157737.5912ms +2024-05-23 10:08:00.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:00.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 170740.0154ms +2024-05-23 10:08:00.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:00.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158747.5418ms +2024-05-23 10:08:06.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:06.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:07.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:07.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:09.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:09.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:13.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:13.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168247.4069ms +2024-05-23 10:08:14.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:14.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157739.1889ms +2024-05-23 10:08:14.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:14.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168745.3576ms +2024-05-23 10:08:21.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:21.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:22.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:22.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:24.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:24.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:25.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:25.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167260.8663ms +2024-05-23 10:08:25.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:25.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:29.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:29.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168686.2052ms +2024-05-23 10:08:29.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:29.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169684.0699ms +2024-05-23 10:08:29.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:29.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157687.907ms +2024-05-23 10:08:35.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:35.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162367.2939ms +2024-05-23 10:08:36.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:36.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:37.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:37.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:39.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:39.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:44.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:44.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169789.7387ms +2024-05-23 10:08:44.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:44.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157785.2326ms +2024-05-23 10:08:44.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:44.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168822.1882ms +2024-05-23 10:08:44.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:44.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157181.3639ms +2024-05-23 10:08:51.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:52.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:52.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:54.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:54.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:08:55.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:08:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 167130.8196ms +2024-05-23 10:09:00.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:00.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169766.2652ms +2024-05-23 10:09:00.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:00.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158770.8628ms +2024-05-23 10:09:00.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:00.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157778.4476ms +2024-05-23 10:09:06.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:06.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:07.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:07.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:09.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:09.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:15.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:15.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169748.7978ms +2024-05-23 10:09:15.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:15.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158775.5805ms +2024-05-23 10:09:15.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:15.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157774.3494ms +2024-05-23 10:09:17.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:17.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157250.2371ms +2024-05-23 10:09:18.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:18.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 157470.5186ms +2024-05-23 10:09:21.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:21.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:22.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:22.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:24.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:24.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:36.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:36.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:37.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:37.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164982.5991ms +2024-05-23 10:09:37.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:37.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:38.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:38.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162233.0346ms +2024-05-23 10:09:38.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:38.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166244.3694ms +2024-05-23 10:09:38.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:38.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163303.8814ms +2024-05-23 10:09:39.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:39.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:51.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:51.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:52.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:52.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161340.4338ms +2024-05-23 10:09:52.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:52.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165342.3195ms +2024-05-23 10:09:52.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:52.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162466.159ms +2024-05-23 10:09:52.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:52.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164811.8628ms +2024-05-23 10:09:52.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:52.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:54.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:54.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:09:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:09:55.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:06.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:06.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:06.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:06.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161162.7338ms +2024-05-23 10:10:07.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:07.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165221.1632ms +2024-05-23 10:10:07.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:07.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164571.8906ms +2024-05-23 10:10:07.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:07.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:08.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:08.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163442.0342ms +2024-05-23 10:10:09.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:09.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:10.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:10.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:21.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:21.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:21.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:21.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162166.7237ms +2024-05-23 10:10:22.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:22.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161421.5199ms +2024-05-23 10:10:22.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:22.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164478.9261ms +2024-05-23 10:10:22.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:22.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165571.1323ms +2024-05-23 10:10:22.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:22.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:24.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:24.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:36.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:36.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:37.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:37.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162866.851ms +2024-05-23 10:10:37.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:37.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164899.0598ms +2024-05-23 10:10:37.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:37.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:37.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:37.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162087.9359ms +2024-05-23 10:10:38.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:38.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166282.0595ms +2024-05-23 10:10:39.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:39.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:51.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:51.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161941.7806ms +2024-05-23 10:10:51.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:51.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:51.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:51.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165082.1869ms +2024-05-23 10:10:52.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:52.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164596.4769ms +2024-05-23 10:10:52.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:52.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161926.4109ms +2024-05-23 10:10:52.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:52.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:54.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:54.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:10:55.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:10:55.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:06.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:06.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:07.105 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:07.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162309.0398ms +2024-05-23 10:11:07.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:07.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164647.771ms +2024-05-23 10:11:07.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:07.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161749.3313ms +2024-05-23 10:11:07.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:07.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:08.222 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:08.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166427.2386ms +2024-05-23 10:11:09.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:09.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:21.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:21.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161878.8476ms +2024-05-23 10:11:21.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:21.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:21.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:21.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 161154.6632ms +2024-05-23 10:11:22.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:22.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 164252.3199ms +2024-05-23 10:11:22.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:22.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165292.6999ms +2024-05-23 10:11:22.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:22.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:24.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:25.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:25.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:27.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 10:11:27.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:36.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:36.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 165004.8149ms +2024-05-23 10:11:37.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:37.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 163011.0626ms +2024-05-23 10:11:37.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 166043.7895ms +2024-05-23 10:11:37.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:37.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162133.2486ms +2024-05-23 10:11:39.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:39.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:40.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:40.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:51.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:51.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:52.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:52.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:54.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:54.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:11:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 171738.1118ms +2024-05-23 10:11:59.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 168736.1282ms +2024-05-23 10:11:59.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 169739.6111ms +2024-05-23 10:11:59.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 172752.224ms +2024-05-23 10:11:59.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:11:59.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 158090.9424ms +2024-05-23 10:12:05.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:05.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 162648.8164ms +2024-05-23 10:12:06.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:06.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:07.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:07.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:09.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:09.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:10.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:10.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:21.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:21.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:22.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:22.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:24.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:24.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:30.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:30.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 185700.1764ms +2024-05-23 10:12:36.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:36.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:37.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:37.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:39.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:39.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:40.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:40.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:51.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:51.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:52.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:52.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:54.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:54.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:12:55.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:12:55.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:13:37.644 +02:00 [INF] Deregistering a service [id: notifications-service:23255d17ab0043ba9c56a63ec4060bf0] from Consul... +2024-05-23 10:13:37.645 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:23255d17ab0043ba9c56a63ec4060bf0" +2024-05-23 10:13:37.645 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:23255d17ab0043ba9c56a63ec4060bf0 +2024-05-23 10:13:37.645 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:23255d17ab0043ba9c56a63ec4060bf0 +2024-05-23 10:13:37.652 +02:00 [INF] Received HTTP response headers after 6.8979ms - 200 +2024-05-23 10:13:37.653 +02:00 [INF] End processing HTTP request after 7.3465ms - 200 +2024-05-23 10:13:37.653 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:13:37.654 +02:00 [INF] Deregistered a service [id: notifications-service:23255d17ab0043ba9c56a63ec4060bf0] from Consul. +2024-05-23 10:14:21.880 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 10:14:21.924 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 10:14:21.991 +02:00 [INF] Registering a service [id: notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45] in Consul... +2024-05-23 10:14:22.011 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 10:14:22.016 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:14:22.018 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:14:22.026 +02:00 [INF] Received HTTP response headers after 5.3088ms - 200 +2024-05-23 10:14:22.027 +02:00 [INF] End processing HTTP request after 12.289ms - 200 +2024-05-23 10:14:22.030 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:14:22.031 +02:00 [INF] Registered a service [id: notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45] in Consul. +2024-05-23 10:14:22.038 +02:00 [INF] Deregistering a service [id: notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45] from Consul... +2024-05-23 10:14:22.039 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45" +2024-05-23 10:14:22.039 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45 +2024-05-23 10:14:22.039 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45 +2024-05-23 10:14:22.042 +02:00 [INF] Received HTTP response headers after 2.2299ms - 200 +2024-05-23 10:14:22.042 +02:00 [INF] End processing HTTP request after 3.1065ms - 200 +2024-05-23 10:14:22.043 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:14:22.043 +02:00 [INF] Deregistered a service [id: notifications-service:250f7bcb4d384477b1cbd2d9ff0acf45] from Consul. +2024-05-23 10:14:34.947 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 10:14:34.994 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 10:14:35.049 +02:00 [INF] Registering a service [id: notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60] in Consul... +2024-05-23 10:14:35.078 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 10:14:35.082 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:14:35.082 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:14:35.089 +02:00 [INF] Received HTTP response headers after 4.8145ms - 200 +2024-05-23 10:14:35.090 +02:00 [INF] End processing HTTP request after 9.1576ms - 200 +2024-05-23 10:14:35.093 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:14:35.094 +02:00 [INF] Registered a service [id: notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60] in Consul. +2024-05-23 10:14:35.102 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 10:14:35.114 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 10:14:35.116 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 10:14:35.120 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 10:14:35.122 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 10:14:35.125 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 10:14:35.129 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 10:14:35.131 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 10:14:38.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 10:14:38.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:14:40.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:14:40.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:14:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:14:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:15:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:15:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:15:25.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:15:25.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:15:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:15:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:15:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:15:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:16:31.188 +02:00 [INF] Deregistering a service [id: notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60] from Consul... +2024-05-23 10:16:31.189 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60" +2024-05-23 10:16:31.189 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60 +2024-05-23 10:16:31.189 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60 +2024-05-23 10:16:31.191 +02:00 [INF] Received HTTP response headers after 1.9478ms - 200 +2024-05-23 10:16:31.191 +02:00 [INF] End processing HTTP request after 2.4536ms - 200 +2024-05-23 10:16:31.191 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:16:31.192 +02:00 [INF] Deregistered a service [id: notifications-service:e9d3b5dc52e54b86b3cfc8795ff56c60] from Consul. +2024-05-23 10:19:35.537 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 10:19:35.579 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 10:19:35.633 +02:00 [INF] Registering a service [id: notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf] in Consul... +2024-05-23 10:19:35.655 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 10:19:35.659 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:19:35.661 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:19:35.670 +02:00 [INF] Received HTTP response headers after 6.3514ms - 200 +2024-05-23 10:19:35.671 +02:00 [INF] End processing HTTP request after 12.2234ms - 200 +2024-05-23 10:19:35.674 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:19:35.675 +02:00 [INF] Registered a service [id: notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf] in Consul. +2024-05-23 10:19:35.682 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 10:19:35.691 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 10:19:35.694 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 10:19:35.696 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 10:19:35.700 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 10:19:35.703 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 10:19:35.706 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 10:19:35.709 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 10:19:38.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 10:19:38.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:39.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:39.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 199.1002ms +2024-05-23 10:19:40.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:19:40.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:40.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:40.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 84.999ms +2024-05-23 10:19:55.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:19:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:55.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:19:55.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 78.2876ms +2024-05-23 10:20:06.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=100 - null null +2024-05-23 10:20:06.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:06.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:06.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=100 - 200 null application/json 74.1997ms +2024-05-23 10:20:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:20:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:10.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:10.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.0104ms +2024-05-23 10:20:25.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:20:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:25.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:25.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 72.9562ms +2024-05-23 10:20:40.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:20:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:44.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:44.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 4142.3502ms +2024-05-23 10:20:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:20:55.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:55.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:55.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 76.2621ms +2024-05-23 10:20:58.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - null null +2024-05-23 10:20:58.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:58.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:20:58.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - 200 null application/json 90.5602ms +2024-05-23 10:21:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:21:10.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:14.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:14.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 3537.1684ms +2024-05-23 10:21:25.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:21:25.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:25.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:25.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.5325ms +2024-05-23 10:21:40.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:21:40.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:40.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:40.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.1677ms +2024-05-23 10:21:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:21:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:55.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:21:55.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.4847ms +2024-05-23 10:22:03.018 +02:00 [INF] Deregistering a service [id: notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf] from Consul... +2024-05-23 10:22:03.019 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf" +2024-05-23 10:22:03.019 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf +2024-05-23 10:22:03.019 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf +2024-05-23 10:22:03.022 +02:00 [INF] Received HTTP response headers after 2.17ms - 200 +2024-05-23 10:22:03.022 +02:00 [INF] End processing HTTP request after 2.6285ms - 200 +2024-05-23 10:22:03.022 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:22:03.023 +02:00 [INF] Deregistered a service [id: notifications-service:77f8a7bef1c343aa8ad9fd2375c947bf] from Consul. +2024-05-23 10:22:10.444 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 10:22:10.482 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 10:22:10.567 +02:00 [INF] Registering a service [id: notifications-service:ec005073fd5f4947a4f7a7c5af0f528e] in Consul... +2024-05-23 10:22:10.585 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 10:22:10.589 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:22:10.590 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:22:10.596 +02:00 [INF] Received HTTP response headers after 4.4328ms - 200 +2024-05-23 10:22:10.597 +02:00 [INF] End processing HTTP request after 8.8054ms - 200 +2024-05-23 10:22:10.599 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:22:10.600 +02:00 [INF] Registered a service [id: notifications-service:ec005073fd5f4947a4f7a7c5af0f528e] in Consul. +2024-05-23 10:22:10.605 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 10:22:10.615 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 10:22:10.617 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 10:22:10.619 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 10:22:10.621 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 10:22:10.623 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 10:22:10.625 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 10:22:10.626 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 10:22:10.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:22:10.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:11.024 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:11.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 205.8014ms +2024-05-23 10:22:12.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - null null +2024-05-23 10:22:12.359 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:12.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:12.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - 200 null application/json 82.7796ms +2024-05-23 10:22:25.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:22:25.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:25.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:25.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 83.9794ms +2024-05-23 10:22:35.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - null null +2024-05-23 10:22:35.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:35.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:35.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - 200 null application/json 88.962ms +2024-05-23 10:22:40.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:22:40.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:40.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:40.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 80.8641ms +2024-05-23 10:22:55.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:22:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:55.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:22:55.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 77.9528ms +2024-05-23 10:23:10.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:23:10.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:10.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:10.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.772ms +2024-05-23 10:23:25.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:23:25.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:25.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:25.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.4317ms +2024-05-23 10:23:40.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:23:40.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:40.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:40.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2014ms +2024-05-23 10:23:55.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:23:55.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:55.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:23:55.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.3273ms +2024-05-23 10:24:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:24:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:10.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:10.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.2232ms +2024-05-23 10:24:24.693 +02:00 [INF] Deregistering a service [id: notifications-service:ec005073fd5f4947a4f7a7c5af0f528e] from Consul... +2024-05-23 10:24:24.696 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ec005073fd5f4947a4f7a7c5af0f528e" +2024-05-23 10:24:24.696 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ec005073fd5f4947a4f7a7c5af0f528e +2024-05-23 10:24:24.696 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ec005073fd5f4947a4f7a7c5af0f528e +2024-05-23 10:24:24.699 +02:00 [INF] Received HTTP response headers after 2.9471ms - 200 +2024-05-23 10:24:24.700 +02:00 [INF] End processing HTTP request after 3.5134ms - 200 +2024-05-23 10:24:24.700 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:24:24.701 +02:00 [INF] Deregistered a service [id: notifications-service:ec005073fd5f4947a4f7a7c5af0f528e] from Consul. +2024-05-23 10:24:33.452 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 10:24:33.496 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 10:24:33.553 +02:00 [INF] Registering a service [id: notifications-service:a8c0ed1985924c64b1fceaf7f1104a89] in Consul... +2024-05-23 10:24:33.571 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 10:24:33.574 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:24:33.575 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 10:24:33.581 +02:00 [INF] Received HTTP response headers after 4.2118ms - 200 +2024-05-23 10:24:33.582 +02:00 [INF] End processing HTTP request after 8.2761ms - 200 +2024-05-23 10:24:33.585 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 10:24:33.585 +02:00 [INF] Registered a service [id: notifications-service:a8c0ed1985924c64b1fceaf7f1104a89] in Consul. +2024-05-23 10:24:33.591 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 10:24:33.602 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 10:24:33.606 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 10:24:33.608 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 10:24:33.611 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 10:24:33.613 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 10:24:33.615 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 10:24:33.617 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 10:24:36.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - null null +2024-05-23 10:24:36.182 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:36.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:36.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - 200 null application/json 201.5434ms +2024-05-23 10:24:40.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:24:40.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:40.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:40.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 82.4658ms +2024-05-23 10:24:55.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - null null +2024-05-23 10:24:55.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:55.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:55.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=2&resultsPerPage=100 - 200 null application/json 80.2987ms +2024-05-23 10:24:55.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:24:55.796 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:55.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:24:55.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.3994ms +2024-05-23 10:25:03.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - null null +2024-05-23 10:25:03.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:03.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:03.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&resultsPerPage=100 - 200 null application/json 86.2481ms +2024-05-23 10:25:10.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:25:10.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:10.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:10.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 82.9356ms +2024-05-23 10:25:23.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 10:25:23.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:23.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:23.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 80.3272ms +2024-05-23 10:25:25.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:25:25.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:25.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:25.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 75.0107ms +2024-05-23 10:25:40.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:25:40.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:40.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:40.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 80.6259ms +2024-05-23 10:25:55.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:25:55.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:55.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:25:55.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 73.3213ms +2024-05-23 10:26:10.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:26:10.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:26:10.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:26:10.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 74.6066ms +2024-05-23 10:26:25.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 10:26:25.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:26:25.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 10:26:25.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 101.0219ms +2024-05-23 13:26:57.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 13:26:57.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:26:57.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:26:57.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 63.384ms +2024-05-23 13:29:57.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 13:29:57.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:29:58.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:29:58.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 61.3151ms +2024-05-23 13:32:06.150 +02:00 [INF] Deregistering a service [id: notifications-service:a8c0ed1985924c64b1fceaf7f1104a89] from Consul... +2024-05-23 13:32:06.152 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a8c0ed1985924c64b1fceaf7f1104a89" +2024-05-23 13:32:06.153 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a8c0ed1985924c64b1fceaf7f1104a89 +2024-05-23 13:32:06.153 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a8c0ed1985924c64b1fceaf7f1104a89 +2024-05-23 13:32:06.160 +02:00 [INF] Received HTTP response headers after 6.2942ms - 200 +2024-05-23 13:32:06.160 +02:00 [INF] End processing HTTP request after 7.6704ms - 200 +2024-05-23 13:32:06.161 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:32:06.162 +02:00 [INF] Deregistered a service [id: notifications-service:a8c0ed1985924c64b1fceaf7f1104a89] from Consul. +2024-05-23 13:32:13.288 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 13:32:13.323 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 13:32:13.377 +02:00 [INF] Registering a service [id: notifications-service:336fd5ae95594d839080727c9c2fbb42] in Consul... +2024-05-23 13:32:13.393 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 13:32:13.396 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:32:13.397 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:32:13.403 +02:00 [INF] Received HTTP response headers after 4.0181ms - 200 +2024-05-23 13:32:13.404 +02:00 [INF] End processing HTTP request after 8.3387ms - 200 +2024-05-23 13:32:13.406 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:32:13.407 +02:00 [INF] Registered a service [id: notifications-service:336fd5ae95594d839080727c9c2fbb42] in Consul. +2024-05-23 13:32:13.413 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 13:32:13.421 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 13:32:13.423 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 13:32:13.425 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 13:32:13.427 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 13:32:13.428 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 13:32:13.430 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 13:32:13.432 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 13:32:17.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - null null +2024-05-23 13:32:17.772 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:32:17.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:32:17.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10 - 200 null application/json 193.2464ms +2024-05-23 13:32:38.108 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 13:32:38.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:32:38.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:32:38.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 60.651ms +2024-05-23 13:35:30.613 +02:00 [INF] Deregistering a service [id: notifications-service:336fd5ae95594d839080727c9c2fbb42] from Consul... +2024-05-23 13:35:30.614 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:336fd5ae95594d839080727c9c2fbb42" +2024-05-23 13:35:30.615 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:336fd5ae95594d839080727c9c2fbb42 +2024-05-23 13:35:30.615 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:336fd5ae95594d839080727c9c2fbb42 +2024-05-23 13:35:30.619 +02:00 [INF] Received HTTP response headers after 3.4669ms - 200 +2024-05-23 13:35:30.619 +02:00 [INF] End processing HTTP request after 4.2966ms - 200 +2024-05-23 13:35:30.619 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:35:30.620 +02:00 [INF] Deregistered a service [id: notifications-service:336fd5ae95594d839080727c9c2fbb42] from Consul. +2024-05-23 13:35:39.127 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 13:35:39.163 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 13:35:39.216 +02:00 [INF] Registering a service [id: notifications-service:5963b1f3f93747e2844421a98d7ccec7] in Consul... +2024-05-23 13:35:39.232 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 13:35:39.236 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:35:39.236 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:35:39.242 +02:00 [INF] Received HTTP response headers after 4.1448ms - 200 +2024-05-23 13:35:39.243 +02:00 [INF] End processing HTTP request after 8.2039ms - 200 +2024-05-23 13:35:39.246 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:35:39.246 +02:00 [INF] Registered a service [id: notifications-service:5963b1f3f93747e2844421a98d7ccec7] in Consul. +2024-05-23 13:35:39.252 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 13:35:39.260 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 13:35:39.262 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 13:35:39.264 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 13:35:39.266 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 13:35:39.268 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 13:35:39.270 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 13:35:39.271 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 13:35:40.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 13:35:40.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:35:40.405 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:35:40.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 140.8592ms +2024-05-23 13:35:44.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 13:35:44.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:35:44.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:35:44.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 37.6238ms +2024-05-23 13:36:49.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 13:36:49.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:36:49.416 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:36:49.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 37.9033ms +2024-05-23 13:36:51.869 +02:00 [INF] Deregistering a service [id: notifications-service:5963b1f3f93747e2844421a98d7ccec7] from Consul... +2024-05-23 13:36:51.870 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:5963b1f3f93747e2844421a98d7ccec7" +2024-05-23 13:36:51.870 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5963b1f3f93747e2844421a98d7ccec7 +2024-05-23 13:36:51.871 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5963b1f3f93747e2844421a98d7ccec7 +2024-05-23 13:36:51.872 +02:00 [INF] Received HTTP response headers after 1.4115ms - 200 +2024-05-23 13:36:51.872 +02:00 [INF] End processing HTTP request after 2.0814ms - 200 +2024-05-23 13:36:51.873 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:36:51.873 +02:00 [INF] Deregistered a service [id: notifications-service:5963b1f3f93747e2844421a98d7ccec7] from Consul. +2024-05-23 13:36:59.153 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 13:36:59.189 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 13:36:59.272 +02:00 [INF] Registering a service [id: notifications-service:79b5504782c54a459dfb63a3712cf60a] in Consul... +2024-05-23 13:36:59.291 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 13:36:59.294 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:36:59.295 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 13:36:59.302 +02:00 [INF] Received HTTP response headers after 4.4496ms - 200 +2024-05-23 13:36:59.303 +02:00 [INF] End processing HTTP request after 8.7636ms - 200 +2024-05-23 13:36:59.305 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 13:36:59.306 +02:00 [INF] Registered a service [id: notifications-service:79b5504782c54a459dfb63a3712cf60a] in Consul. +2024-05-23 13:36:59.312 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 13:36:59.321 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 13:36:59.323 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 13:36:59.324 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 13:36:59.326 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 13:36:59.328 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 13:36:59.330 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 13:36:59.332 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 13:37:00.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 13:37:00.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:37:00.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 13:37:00.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 187.004ms +2024-05-23 16:12:08.298 +02:00 [INF] Deregistering a service [id: notifications-service:79b5504782c54a459dfb63a3712cf60a] from Consul... +2024-05-23 16:12:08.299 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:79b5504782c54a459dfb63a3712cf60a" +2024-05-23 16:12:08.299 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:79b5504782c54a459dfb63a3712cf60a +2024-05-23 16:12:08.299 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:79b5504782c54a459dfb63a3712cf60a +2024-05-23 16:12:08.304 +02:00 [INF] Received HTTP response headers after 3.3262ms - 200 +2024-05-23 16:12:08.304 +02:00 [INF] End processing HTTP request after 5.0121ms - 200 +2024-05-23 16:12:08.304 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 16:12:08.305 +02:00 [INF] Deregistered a service [id: notifications-service:79b5504782c54a459dfb63a3712cf60a] from Consul. +2024-05-23 16:12:20.346 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 16:12:20.406 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 16:12:20.467 +02:00 [INF] Registering a service [id: notifications-service:12d69db6fe084408ae1e317643c7e5c2] in Consul... +2024-05-23 16:12:20.491 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 16:12:20.495 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 16:12:20.496 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 16:12:20.504 +02:00 [INF] Received HTTP response headers after 4.9574ms - 200 +2024-05-23 16:12:20.506 +02:00 [INF] End processing HTTP request after 11.0977ms - 200 +2024-05-23 16:12:20.511 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 16:12:20.513 +02:00 [INF] Registered a service [id: notifications-service:12d69db6fe084408ae1e317643c7e5c2] in Consul. +2024-05-23 16:12:20.521 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 16:12:20.530 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 16:12:20.539 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 16:12:20.543 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 16:12:20.550 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 16:12:20.552 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 16:12:20.555 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 16:12:20.556 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 16:12:22.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 16:12:23.149 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 16:12:23.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 16:12:23.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 426.1834ms +2024-05-23 16:19:18.624 +02:00 [INF] Deregistering a service [id: notifications-service:12d69db6fe084408ae1e317643c7e5c2] from Consul... +2024-05-23 16:19:18.626 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:12d69db6fe084408ae1e317643c7e5c2" +2024-05-23 16:19:18.627 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:12d69db6fe084408ae1e317643c7e5c2 +2024-05-23 16:19:18.628 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:12d69db6fe084408ae1e317643c7e5c2 +2024-05-23 16:19:18.637 +02:00 [INF] Received HTTP response headers after 8.4779ms - 200 +2024-05-23 16:19:18.639 +02:00 [INF] End processing HTTP request after 11.2535ms - 200 +2024-05-23 16:19:18.639 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 16:19:18.640 +02:00 [INF] Deregistered a service [id: notifications-service:12d69db6fe084408ae1e317643c7e5c2] from Consul. +2024-05-23 16:19:34.378 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 16:19:34.425 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 16:19:34.489 +02:00 [INF] Registering a service [id: notifications-service:5d486840fefd465aae6e97e6765e4142] in Consul... +2024-05-23 16:19:34.518 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 16:19:34.525 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 16:19:34.527 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 16:19:34.541 +02:00 [INF] Received HTTP response headers after 6.68ms - 200 +2024-05-23 16:19:34.543 +02:00 [INF] End processing HTTP request after 19.4993ms - 200 +2024-05-23 16:19:34.548 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 16:19:34.549 +02:00 [INF] Registered a service [id: notifications-service:5d486840fefd465aae6e97e6765e4142] in Consul. +2024-05-23 16:19:34.559 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 16:19:34.581 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 16:19:34.585 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 16:19:34.587 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 16:19:34.590 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 16:19:34.594 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 16:19:34.599 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 16:19:34.606 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 16:19:36.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - null null +2024-05-23 16:19:36.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 16:19:36.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 16:19:36.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda - 200 null application/json 211.9124ms +2024-05-23 17:35:58.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:35:58.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:35:58.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:35:58.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 66.6768ms +2024-05-23 17:35:58.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:35:58.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:35:58.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:35:58.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 30.1237ms +2024-05-23 17:36:02.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:36:02.693 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:02.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 32.5028ms +2024-05-23 17:36:27.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:36:27.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:27.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:27.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.5884ms +2024-05-23 17:36:28.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:36:28.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:28.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:28.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.5789ms +2024-05-23 17:36:41.544 +02:00 [INF] Received a message with ID: 'e4cd3e463672427aa8d7e1aba4010205', Correlation ID: '69c73e27f01644cda5c223b32fc5136c', timestamp: 1716478601, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 17:36:41.544 +02:00 [INF] Received a message with ID: '2f3a1caae3dc4ce8b96932881cd4eaf1', Correlation ID: '238728ce978b420d8050fe69c0821e34', timestamp: 1716478601, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 17:36:41.562 +02:00 [INF] Handling a message: friend_invited with ID: 2f3a1caae3dc4ce8b96932881cd4eaf1, Correlation ID: 238728ce978b420d8050fe69c0821e34, retry: 0 +2024-05-23 17:36:41.562 +02:00 [INF] Handling a message: friend_request_sent with ID: e4cd3e463672427aa8d7e1aba4010205, Correlation ID: 69c73e27f01644cda5c223b32fc5136c, retry: 0 +2024-05-23 17:36:41.619 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 17:36:41.619 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:36:41.620 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:36:41.658 +02:00 [INF] Received HTTP response headers after 36.4325ms - 200 +2024-05-23 17:36:41.658 +02:00 [INF] End processing HTTP request after 38.4588ms - 200 +2024-05-23 17:36:41.658 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 17:36:42.283 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 17:36:42.286 +02:00 [INF] Handled a message: friend_request_sent with ID: e4cd3e463672427aa8d7e1aba4010205, Correlation ID: 69c73e27f01644cda5c223b32fc5136c, retry: 0 +2024-05-23 17:36:42.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:36:42.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:42.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:42.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.0252ms +2024-05-23 17:36:43.461 +02:00 [INF] Received a message with ID: 'd1937ef8be114c119a9ab3ea59757fbc', Correlation ID: '251cebfc05c34ad38b9aea2b57f2d2e6', timestamp: 1716478603, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 17:36:43.462 +02:00 [INF] Handling a message: friend_request_sent with ID: d1937ef8be114c119a9ab3ea59757fbc, Correlation ID: 251cebfc05c34ad38b9aea2b57f2d2e6, retry: 0 +2024-05-23 17:36:43.609 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 17:36:43.610 +02:00 [INF] Handled a message: friend_request_sent with ID: d1937ef8be114c119a9ab3ea59757fbc, Correlation ID: 251cebfc05c34ad38b9aea2b57f2d2e6, retry: 0 +2024-05-23 17:36:53.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:36:53.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:53.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:36:53.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 34.5466ms +2024-05-23 17:37:00.253 +02:00 [ERR] There was an error when processing a message with id: '2f3a1caae3dc4ce8b96932881cd4eaf1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 17:37:00.259 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 17:37:00.261 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2f3a1caae3dc4ce8b96932881cd4eaf1', Correlation ID: '238728ce978b420d8050fe69c0821e34', retry 1/3... +2024-05-23 17:37:02.262 +02:00 [INF] Handling a message: friend_invited with ID: 2f3a1caae3dc4ce8b96932881cd4eaf1, Correlation ID: 238728ce978b420d8050fe69c0821e34, retry: 1 +2024-05-23 17:37:02.299 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 17:37:02.299 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:02.300 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:02.332 +02:00 [INF] Received HTTP response headers after 31.7811ms - 200 +2024-05-23 17:37:02.333 +02:00 [INF] End processing HTTP request after 33.6327ms - 200 +2024-05-23 17:37:02.333 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 17:37:10.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:37:10.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:10.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:10.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 27.9315ms +2024-05-23 17:37:10.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:37:10.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:10.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:10.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 28.34ms +2024-05-23 17:37:11.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:37:11.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:11.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:11.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 31.4439ms +2024-05-23 17:37:12.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - null null +2024-05-23 17:37:12.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:12.158 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:12.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 33.0215ms +2024-05-23 17:37:19.375 +02:00 [ERR] There was an error when processing a message with id: '2f3a1caae3dc4ce8b96932881cd4eaf1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 17:37:19.377 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 17:37:19.378 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2f3a1caae3dc4ce8b96932881cd4eaf1', Correlation ID: '238728ce978b420d8050fe69c0821e34', retry 2/3... +2024-05-23 17:37:21.378 +02:00 [INF] Handling a message: friend_invited with ID: 2f3a1caae3dc4ce8b96932881cd4eaf1, Correlation ID: 238728ce978b420d8050fe69c0821e34, retry: 2 +2024-05-23 17:37:21.408 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 17:37:21.408 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:21.408 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:21.436 +02:00 [INF] Received HTTP response headers after 27.7696ms - 200 +2024-05-23 17:37:21.436 +02:00 [INF] End processing HTTP request after 28.3483ms - 200 +2024-05-23 17:37:21.437 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 17:37:26.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:26.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:26.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:26.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 437.3151ms +2024-05-23 17:37:26.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:26.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:27.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:27.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 398.3017ms +2024-05-23 17:37:28.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:28.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:29.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:29.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 440.9011ms +2024-05-23 17:37:38.923 +02:00 [ERR] There was an error when processing a message with id: '2f3a1caae3dc4ce8b96932881cd4eaf1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 17:37:38.928 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 17:37:38.931 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2f3a1caae3dc4ce8b96932881cd4eaf1', Correlation ID: '238728ce978b420d8050fe69c0821e34', retry 3/3... +2024-05-23 17:37:40.933 +02:00 [INF] Handling a message: friend_invited with ID: 2f3a1caae3dc4ce8b96932881cd4eaf1, Correlation ID: 238728ce978b420d8050fe69c0821e34, retry: 3 +2024-05-23 17:37:40.960 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 17:37:40.961 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:40.961 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:40.992 +02:00 [INF] Received HTTP response headers after 31.387ms - 200 +2024-05-23 17:37:40.994 +02:00 [INF] End processing HTTP request after 33.2236ms - 200 +2024-05-23 17:37:40.994 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 17:37:50.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:50.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:50.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:50.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 433.9078ms +2024-05-23 17:37:50.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:50.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:51.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:51.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 398.7055ms +2024-05-23 17:37:52.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:52.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:52.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:37:52.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:53.177 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:53.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 486.5827ms +2024-05-23 17:37:53.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:37:53.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 508.0418ms +2024-05-23 17:37:58.103 +02:00 [ERR] There was an error when processing a message with id: '2f3a1caae3dc4ce8b96932881cd4eaf1'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 17:37:58.106 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855704 (0x1B84D98) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 17:37:58.109 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '2f3a1caae3dc4ce8b96932881cd4eaf1', Correlation ID: '238728ce978b420d8050fe69c0821e34', retry 4/3... +2024-05-23 17:37:58.110 +02:00 [ERR] Handling a message: friend_invited with ID: 2f3a1caae3dc4ce8b96932881cd4eaf1, Correlation ID: 238728ce978b420d8050fe69c0821e34 failed +2024-05-23 17:37:58.114 +02:00 [INF] Received a message with ID: '9908fd27807f4c998c5649200a3b1d94', Correlation ID: '633f0e2e96fa4d0da716e0c00985501c', timestamp: 1716478603, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 17:37:58.114 +02:00 [INF] Handling a message: friend_invited with ID: 9908fd27807f4c998c5649200a3b1d94, Correlation ID: 633f0e2e96fa4d0da716e0c00985501c, retry: 0 +2024-05-23 17:37:58.143 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 17:37:58.144 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:58.144 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 17:37:58.171 +02:00 [INF] Received HTTP response headers after 26.8433ms - 200 +2024-05-23 17:37:58.171 +02:00 [INF] End processing HTTP request after 27.2729ms - 200 +2024-05-23 17:37:58.171 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 17:37:58.967 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 17:37:58.968 +02:00 [INF] Handled a message: friend_invited with ID: 9908fd27807f4c998c5649200a3b1d94, Correlation ID: 633f0e2e96fa4d0da716e0c00985501c, retry: 0 +2024-05-23 17:38:29.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:38:29.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:30.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:30.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 862.4307ms +2024-05-23 17:38:30.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:38:30.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:32.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:32.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 1206.7223ms +2024-05-23 17:38:45.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:38:45.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:46.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:38:46.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:46.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:46.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 910.0136ms +2024-05-23 17:38:47.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:38:47.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 864.3554ms +2024-05-23 17:40:30.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:40:30.777 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:32.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:32.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 1565.7731ms +2024-05-23 17:40:32.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:40:32.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:33.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:33.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 879.9999ms +2024-05-23 17:40:47.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:40:47.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:48.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:40:48.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 861.3282ms +2024-05-23 17:41:02.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:41:02.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:03.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:03.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 968.242ms +2024-05-23 17:41:17.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:41:17.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:18.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:18.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 870.884ms +2024-05-23 17:41:32.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:41:32.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:33.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:33.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 857.4636ms +2024-05-23 17:41:47.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:41:47.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:48.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:41:48.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 835.855ms +2024-05-23 17:42:02.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:42:02.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:03.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:03.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 870.9589ms +2024-05-23 17:42:17.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:42:17.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:18.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:18.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 877.7202ms +2024-05-23 17:42:32.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:42:32.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:33.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:33.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 1139.948ms +2024-05-23 17:42:47.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:42:47.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:48.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:42:48.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 1097.4355ms +2024-05-23 17:43:02.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:43:02.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:03.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:03.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 854.4687ms +2024-05-23 17:43:17.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:43:17.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:18.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:18.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 846.7321ms +2024-05-23 17:43:32.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:43:32.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:33.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:33.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 887.4843ms +2024-05-23 17:43:47.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:43:47.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:48.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:43:48.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 895.8118ms +2024-05-23 17:44:02.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:44:02.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:03.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:03.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 887.6273ms +2024-05-23 17:44:17.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:44:17.372 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:18.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:18.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 864.6796ms +2024-05-23 17:44:32.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:44:32.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:33.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:33.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 905.041ms +2024-05-23 17:44:47.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:44:47.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:48.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:44:48.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 862.9295ms +2024-05-23 17:45:02.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:45:02.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:03.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:03.263 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 893.7596ms +2024-05-23 17:45:17.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:45:17.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:18.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:18.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 853.3804ms +2024-05-23 17:45:32.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:45:32.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:33.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:33.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 901.2585ms +2024-05-23 17:45:47.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:45:47.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:48.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:45:48.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 875.29ms +2024-05-23 17:50:42.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:50:42.193 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:43.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:43.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 908.1835ms +2024-05-23 17:50:43.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:50:43.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:44.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:44.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.6549ms +2024-05-23 17:50:58.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:50:58.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:58.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:50:58.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 820.9749ms +2024-05-23 17:51:12.142 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:12.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:12.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:12.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.4075ms +2024-05-23 17:51:12.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:13.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:13.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:13.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:13.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:13.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:13.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.4689ms +2024-05-23 17:51:13.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:13.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.4991ms +2024-05-23 17:51:14.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:14.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1183.0926ms +2024-05-23 17:51:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:14.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:15.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:15.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.1215ms +2024-05-23 17:51:27.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:27.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:28.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:28.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:29.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:29.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 901.0521ms +2024-05-23 17:51:29.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:29.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1210.1357ms +2024-05-23 17:51:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:29.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:30.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:30.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 872.2269ms +2024-05-23 17:51:42.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:42.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:43.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:43.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:43.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:43.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 872.5222ms +2024-05-23 17:51:43.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:43.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.1778ms +2024-05-23 17:51:44.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:44.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:45.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:45.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 886.1026ms +2024-05-23 17:51:58.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:58.003 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:58.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:58.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:58.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:58.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.0596ms +2024-05-23 17:51:58.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:51:58.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.0472ms +2024-05-23 17:51:59.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:51:59.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:00.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:00.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.9521ms +2024-05-23 17:52:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:12.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:13.135 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:13.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:13.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:13.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.3692ms +2024-05-23 17:52:14.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:14.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 882.2683ms +2024-05-23 17:52:14.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:14.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:15.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:15.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.1018ms +2024-05-23 17:52:27.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:27.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:28.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:28.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:28.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:28.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.3875ms +2024-05-23 17:52:28.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:28.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.0025ms +2024-05-23 17:52:29.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:29.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:30.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:30.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.0473ms +2024-05-23 17:52:42.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:42.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:43.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:43.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:43.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:43.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.7013ms +2024-05-23 17:52:43.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:43.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 865.1506ms +2024-05-23 17:52:44.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:45.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:45.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 881.6443ms +2024-05-23 17:52:57.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:57.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:58.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:58.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:59.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:59.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 973.4474ms +2024-05-23 17:52:59.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:52:59.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1277.3335ms +2024-05-23 17:52:59.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:52:59.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:00.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:00.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.9988ms +2024-05-23 17:53:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:12.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:13.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:13.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:13.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:13.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.1696ms +2024-05-23 17:53:13.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:13.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.8604ms +2024-05-23 17:53:14.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:14.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:15.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:15.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 973.3015ms +2024-05-23 17:53:27.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:27.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:28.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:28.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:28.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:28.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.9832ms +2024-05-23 17:53:29.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:29.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.7061ms +2024-05-23 17:53:29.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:29.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:30.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:30.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 903.4163ms +2024-05-23 17:53:42.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:42.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:43.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:43.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:43.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:43.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.8481ms +2024-05-23 17:53:43.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:43.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.0809ms +2024-05-23 17:53:44.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:44.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:45.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:45.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1025.213ms +2024-05-23 17:53:57.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:57.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:58.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:58.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:58.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:58.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.237ms +2024-05-23 17:53:58.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:53:58.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 869.3131ms +2024-05-23 17:53:59.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:53:59.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:00.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:00.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.6337ms +2024-05-23 17:54:12.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:12.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:13.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:13.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:13.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:13.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 828.4167ms +2024-05-23 17:54:13.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:13.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.2155ms +2024-05-23 17:54:14.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:14.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:15.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:15.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.804ms +2024-05-23 17:54:27.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:27.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:28.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:28.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:28.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:28.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 881.8916ms +2024-05-23 17:54:29.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:29.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 953.3223ms +2024-05-23 17:54:29.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:29.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:30.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:30.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 991.4933ms +2024-05-23 17:54:42.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:42.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:43.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:43.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:43.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:43.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 851.0119ms +2024-05-23 17:54:43.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:43.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 820.2733ms +2024-05-23 17:54:44.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:44.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:45.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:45.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 813.6698ms +2024-05-23 17:54:47.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:47.006 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:47.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:47.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.8282ms +2024-05-23 17:54:47.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:47.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:48.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:48.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 824.7974ms +2024-05-23 17:54:48.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:48.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:48.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:48.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:49.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:49.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.501ms +2024-05-23 17:54:49.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:49.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 827.993ms +2024-05-23 17:54:49.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:49.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:50.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:50.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 862.2015ms +2024-05-23 17:54:51.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:51.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:52.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:52.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 888.3158ms +2024-05-23 17:54:52.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:52.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:52.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:52.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:52.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:52.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:53.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:53.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 829.3707ms +2024-05-23 17:54:53.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:53.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 831.3974ms +2024-05-23 17:54:53.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:53.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.8663ms +2024-05-23 17:54:53.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:54.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:54.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1431.1117ms +2024-05-23 17:54:57.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:57.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:58.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:58.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:58.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:58.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 913.5993ms +2024-05-23 17:54:58.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:54:58.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 861.456ms +2024-05-23 17:54:59.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:54:59.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:00.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:00.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 825.2964ms +2024-05-23 17:55:02.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:02.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:03.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:03.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 905.8206ms +2024-05-23 17:55:04.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:04.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:05.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:05.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.2203ms +2024-05-23 17:55:07.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:07.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:08.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:08.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.6621ms +2024-05-23 17:55:08.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:08.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:09.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:09.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 813.9086ms +2024-05-23 17:55:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:12.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:13.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:13.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:13.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:13.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.0113ms +2024-05-23 17:55:13.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:13.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.1829ms +2024-05-23 17:55:14.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:14.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:15.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:15.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1034.3296ms +2024-05-23 17:55:17.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:17.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:18.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:18.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.5314ms +2024-05-23 17:55:19.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:19.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:20.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:20.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.9258ms +2024-05-23 17:55:22.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:22.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:23.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:23.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 912.2137ms +2024-05-23 17:55:23.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:23.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:24.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:24.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.1992ms +2024-05-23 17:55:27.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:27.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:28.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:28.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:28.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:28.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 900.6562ms +2024-05-23 17:55:29.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:29.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.7063ms +2024-05-23 17:55:29.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:29.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:30.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:30.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 920.0363ms +2024-05-23 17:55:32.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:32.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:33.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:33.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 938.3651ms +2024-05-23 17:55:34.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:34.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:35.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:35.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 875.0758ms +2024-05-23 17:55:37.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:37.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:38.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:38.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.0302ms +2024-05-23 17:55:38.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:38.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:39.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:39.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.7944ms +2024-05-23 17:55:42.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:42.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:43.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:43.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:43.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:43.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 860.7342ms +2024-05-23 17:55:43.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:43.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 830.911ms +2024-05-23 17:55:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:44.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:45.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:45.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 925.0392ms +2024-05-23 17:55:47.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:47.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:48.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:48.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.1575ms +2024-05-23 17:55:49.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:49.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:50.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:50.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 822.7725ms +2024-05-23 17:55:52.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:52.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:53.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:53.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 882.6056ms +2024-05-23 17:55:53.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:53.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:54.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:54.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.8092ms +2024-05-23 17:55:57.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:57.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:58.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:58.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:58.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:58.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 872.3945ms +2024-05-23 17:55:58.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:55:58.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 827.4659ms +2024-05-23 17:55:59.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:55:59.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:00.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:00.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 933.7806ms +2024-05-23 17:56:02.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:02.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:03.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:03.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1017.2089ms +2024-05-23 17:56:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:04.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:05.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:05.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 820.4344ms +2024-05-23 17:56:07.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:07.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:08.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:08.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 838.6984ms +2024-05-23 17:56:08.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:08.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:09.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:09.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.4751ms +2024-05-23 17:56:12.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:12.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:13.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:13.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:13.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:13.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 822.9883ms +2024-05-23 17:56:13.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:13.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.3681ms +2024-05-23 17:56:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:14.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:15.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:15.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 915.0031ms +2024-05-23 17:56:17.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:17.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:18.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:18.803 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.0091ms +2024-05-23 17:56:19.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:19.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:20.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:20.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.4893ms +2024-05-23 17:56:22.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:22.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:23.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:23.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 931.2574ms +2024-05-23 17:56:23.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:23.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:24.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:24.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 853.4347ms +2024-05-23 17:56:27.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:27.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:28.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:28.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:28.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:28.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.0275ms +2024-05-23 17:56:29.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:29.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.3067ms +2024-05-23 17:56:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:29.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:30.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:30.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.6955ms +2024-05-23 17:56:32.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:32.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:32.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - null null +2024-05-23 17:56:32.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:33.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:33.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.2017ms +2024-05-23 17:56:33.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:33.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/af98ceda-1483-4c51-a602-89e5537ec89e - 200 null application/json 914.424ms +2024-05-23 17:56:34.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:34.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:35.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:35.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 987.1886ms +2024-05-23 17:56:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:37.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:38.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:38.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 933.535ms +2024-05-23 17:56:38.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:38.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:39.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:39.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 916.4845ms +2024-05-23 17:56:42.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:42.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:43.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:43.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:43.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:43.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 922.3961ms +2024-05-23 17:56:44.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:44.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.5585ms +2024-05-23 17:56:44.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:45.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:45.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 902.6416ms +2024-05-23 17:56:47.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:47.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:48.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:48.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 918.7634ms +2024-05-23 17:56:49.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:49.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:50.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:50.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 960.1253ms +2024-05-23 17:56:52.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:52.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:53.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:53.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 954.9381ms +2024-05-23 17:56:53.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:53.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:54.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:54.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 920.0858ms +2024-05-23 17:56:57.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:57.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:58.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:58.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:58.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:58.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 913.8745ms +2024-05-23 17:56:59.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:56:59.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 887.8958ms +2024-05-23 17:56:59.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:56:59.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:00.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:00.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.101ms +2024-05-23 17:57:02.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:02.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:03.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:03.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.651ms +2024-05-23 17:57:04.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:04.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:05.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:05.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 898.7161ms +2024-05-23 17:57:07.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:07.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:08.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:08.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 861.1399ms +2024-05-23 17:57:08.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:08.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:09.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:09.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.3094ms +2024-05-23 17:57:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:13.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:13.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:13.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:13.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 875.0499ms +2024-05-23 17:57:13.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:13.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 851.7842ms +2024-05-23 17:57:14.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:14.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:15.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:15.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 900.2532ms +2024-05-23 17:57:17.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:17.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:18.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:18.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 938.5346ms +2024-05-23 17:57:19.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:19.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:20.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:20.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 903.5864ms +2024-05-23 17:57:22.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:22.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:23.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:23.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 813.3624ms +2024-05-23 17:57:23.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:23.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:24.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:24.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.9126ms +2024-05-23 17:57:27.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:27.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:28.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:28.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:28.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:28.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.4329ms +2024-05-23 17:57:28.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:28.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 845.6341ms +2024-05-23 17:57:29.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:29.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:30.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:30.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 897.7816ms +2024-05-23 17:57:32.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:32.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:33.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:33.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.435ms +2024-05-23 17:57:34.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:34.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:36.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:36.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1649.5828ms +2024-05-23 17:57:37.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:37.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:38.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:38.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1044.0876ms +2024-05-23 17:57:38.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:38.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:39.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:39.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.1488ms +2024-05-23 17:57:42.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:42.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:43.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:43.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:44.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:44.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1017.0458ms +2024-05-23 17:57:44.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:44.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 942.1083ms +2024-05-23 17:57:44.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:45.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:45.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 913.2848ms +2024-05-23 17:57:47.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:47.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:49.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:49.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1282.5909ms +2024-05-23 17:57:49.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:49.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:50.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:50.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 971.0188ms +2024-05-23 17:57:52.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:52.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:53.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:53.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:53.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:53.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1362.5523ms +2024-05-23 17:57:54.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:54.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.5652ms +2024-05-23 17:57:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:58.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:58.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:58.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:58.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 951.0935ms +2024-05-23 17:57:59.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:57:59.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 955.547ms +2024-05-23 17:57:59.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:57:59.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:00.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:00.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 931.991ms +2024-05-23 17:58:02.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:02.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:03.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:03.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 926.7598ms +2024-05-23 17:58:04.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:04.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:05.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:05.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 921.6996ms +2024-05-23 17:58:07.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:07.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:08.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:08.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 878.3581ms +2024-05-23 17:58:08.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:08.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:09.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:09.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.1497ms +2024-05-23 17:58:12.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:12.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:13.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:13.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:13.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:13.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.4097ms +2024-05-23 17:58:13.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:13.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.5703ms +2024-05-23 17:58:14.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:14.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:15.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:15.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 867.3889ms +2024-05-23 17:58:17.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:17.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:18.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:18.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.3401ms +2024-05-23 17:58:19.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:19.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:20.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:20.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.2288ms +2024-05-23 17:58:22.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:22.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:23.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:23.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.3176ms +2024-05-23 17:58:23.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:23.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:24.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:24.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 882.3942ms +2024-05-23 17:58:27.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:27.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:28.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:28.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:28.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:28.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.6916ms +2024-05-23 17:58:29.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:29.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.8278ms +2024-05-23 17:58:29.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:29.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:30.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:30.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.5184ms +2024-05-23 17:58:32.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:32.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:33.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:33.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.4403ms +2024-05-23 17:58:34.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:34.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:35.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:35.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 920.6952ms +2024-05-23 17:58:37.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:37.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:38.185 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:38.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 923.8123ms +2024-05-23 17:58:38.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:38.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:39.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:39.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 853.2141ms +2024-05-23 17:58:42.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:42.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:43.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:43.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:43.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:43.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 826.3291ms +2024-05-23 17:58:43.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:43.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.9019ms +2024-05-23 17:58:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:44.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:45.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:45.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.7819ms +2024-05-23 17:58:47.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:47.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:48.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:48.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 887.4874ms +2024-05-23 17:58:49.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:49.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:50.751 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:50.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.3966ms +2024-05-23 17:58:52.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:52.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:53.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:53.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 903.7954ms +2024-05-23 17:58:53.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:53.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:54.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:54.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 912.6182ms +2024-05-23 17:58:57.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:57.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:58.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:58.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:58.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:58.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 917.4531ms +2024-05-23 17:58:59.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:58:59.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 938.7735ms +2024-05-23 17:58:59.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:58:59.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:00.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:00.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 899.0146ms +2024-05-23 17:59:02.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:02.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:03.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:03.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 913.1482ms +2024-05-23 17:59:04.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:04.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:05.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:05.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.6547ms +2024-05-23 17:59:07.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:07.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:08.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:08.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.6894ms +2024-05-23 17:59:08.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:08.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:09.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:09.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.8061ms +2024-05-23 17:59:12.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:12.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:13.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:13.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:14.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:14.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1217.8496ms +2024-05-23 17:59:14.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:14.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:14.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:14.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1595.3314ms +2024-05-23 17:59:15.481 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:15.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.5582ms +2024-05-23 17:59:17.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:17.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:18.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:18.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 890.9035ms +2024-05-23 17:59:19.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:19.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:20.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:20.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.4601ms +2024-05-23 17:59:22.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:22.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:23.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:23.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.5949ms +2024-05-23 17:59:23.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:23.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:24.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:24.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 887.1531ms +2024-05-23 17:59:27.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:27.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:28.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:28.137 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:28.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:28.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 881.8346ms +2024-05-23 17:59:28.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:28.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.1184ms +2024-05-23 17:59:29.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:29.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:30.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:30.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 941.3047ms +2024-05-23 17:59:32.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:32.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:33.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:33.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.5317ms +2024-05-23 17:59:34.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:34.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:35.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:35.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 986.6654ms +2024-05-23 17:59:37.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:37.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:38.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:38.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.679ms +2024-05-23 17:59:38.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:38.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:39.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:39.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.2248ms +2024-05-23 17:59:42.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:42.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:43.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:43.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:43.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:43.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.099ms +2024-05-23 17:59:43.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:43.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.0743ms +2024-05-23 17:59:44.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:45.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:45.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.5532ms +2024-05-23 17:59:47.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:47.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:48.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:48.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.7555ms +2024-05-23 17:59:49.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:49.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:50.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:50.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.5857ms +2024-05-23 17:59:52.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:52.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:53.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:53.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 826.2545ms +2024-05-23 17:59:53.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:53.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:54.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:54.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 828.6008ms +2024-05-23 17:59:57.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:57.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:58.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:58.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:58.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:58.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.2454ms +2024-05-23 17:59:59.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 17:59:59.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.3049ms +2024-05-23 17:59:59.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 17:59:59.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:00.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:00.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 831.4573ms +2024-05-23 18:00:02.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:02.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:03.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:03.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 925.807ms +2024-05-23 18:00:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:04.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:05.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:05.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 941.7046ms +2024-05-23 18:00:07.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:07.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:08.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:08.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 945.1636ms +2024-05-23 18:00:08.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:08.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:09.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:09.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.8815ms +2024-05-23 18:00:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:13.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:13.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:13.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:13.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.118ms +2024-05-23 18:00:14.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:14.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 883.8429ms +2024-05-23 18:00:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:14.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:15.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:15.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.6949ms +2024-05-23 18:00:17.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:17.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:18.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:18.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1064.9551ms +2024-05-23 18:00:19.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:19.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:20.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:20.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 929.2019ms +2024-05-23 18:00:22.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:22.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:23.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:23.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.1221ms +2024-05-23 18:00:23.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:23.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:24.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:24.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.5494ms +2024-05-23 18:00:27.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:27.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:28.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:28.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:28.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:28.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.1178ms +2024-05-23 18:00:28.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:28.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.94ms +2024-05-23 18:00:29.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:29.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:30.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:30.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.7408ms +2024-05-23 18:00:32.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:32.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:33.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:33.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.7703ms +2024-05-23 18:00:34.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:34.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:35.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:35.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 928.3081ms +2024-05-23 18:00:37.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:37.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:38.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:38.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.5781ms +2024-05-23 18:00:38.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:38.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:39.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:39.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 824.0416ms +2024-05-23 18:00:42.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:42.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:43.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:43.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:43.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:43.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.0155ms +2024-05-23 18:00:43.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:43.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.8814ms +2024-05-23 18:00:44.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:44.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:45.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:45.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 901.396ms +2024-05-23 18:00:47.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:47.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:48.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:48.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 818.8595ms +2024-05-23 18:00:49.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:49.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:50.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:50.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 895.215ms +2024-05-23 18:00:52.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:52.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:53.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:53.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 881.6481ms +2024-05-23 18:00:53.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:53.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:54.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:54.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 882.3093ms +2024-05-23 18:00:57.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:58.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:58.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:58.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:58.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.396ms +2024-05-23 18:00:58.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:00:58.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.125ms +2024-05-23 18:00:59.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:00:59.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:00.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:00.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.9551ms +2024-05-23 18:01:02.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:02.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:03.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:03.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 853.8242ms +2024-05-23 18:01:04.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:04.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:05.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:05.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 926.1907ms +2024-05-23 18:01:07.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:07.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:08.183 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:08.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 921.2781ms +2024-05-23 18:01:08.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:08.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:09.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:09.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.0515ms +2024-05-23 18:01:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:13.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:13.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:13.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:13.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 876.192ms +2024-05-23 18:01:13.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:13.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 835.3265ms +2024-05-23 18:01:14.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:14.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:15.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:15.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.3986ms +2024-05-23 18:01:17.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:17.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:18.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:18.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.2498ms +2024-05-23 18:01:19.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:19.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:20.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:20.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 834.3648ms +2024-05-23 18:01:22.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:22.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:23.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:23.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 881.862ms +2024-05-23 18:01:23.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:23.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:24.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:24.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.0271ms +2024-05-23 18:01:27.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:27.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:28.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:28.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:28.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:28.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 867.6238ms +2024-05-23 18:01:28.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:28.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.331ms +2024-05-23 18:01:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:29.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:30.473 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:30.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.8401ms +2024-05-23 18:01:32.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:32.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:33.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:33.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 915.1131ms +2024-05-23 18:01:34.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:34.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:35.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:35.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 976.658ms +2024-05-23 18:01:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:37.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:38.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:38.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.2456ms +2024-05-23 18:01:38.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:38.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:39.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:39.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.1591ms +2024-05-23 18:01:42.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:42.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:43.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:43.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:43.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:43.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.1565ms +2024-05-23 18:01:43.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:43.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.9296ms +2024-05-23 18:01:44.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:44.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:45.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:45.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.7302ms +2024-05-23 18:01:47.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:47.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:48.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:48.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 927.5216ms +2024-05-23 18:01:49.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:49.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:50.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:50.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.9919ms +2024-05-23 18:01:52.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:52.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:53.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:53.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.3344ms +2024-05-23 18:01:53.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:54.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:54.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.046ms +2024-05-23 18:01:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:58.130 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:58.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:58.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:58.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.216ms +2024-05-23 18:01:58.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:01:58.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.4379ms +2024-05-23 18:01:59.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:01:59.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 908.7384ms +2024-05-23 18:02:02.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:02.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:03.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:03.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.22ms +2024-05-23 18:02:04.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:04.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:05.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:05.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 904.3346ms +2024-05-23 18:02:07.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:07.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:08.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:08.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.7088ms +2024-05-23 18:02:08.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:08.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:09.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:09.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.9861ms +2024-05-23 18:02:12.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:12.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:13.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:13.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:13.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:13.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 912.4768ms +2024-05-23 18:02:13.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:14.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.4752ms +2024-05-23 18:02:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:14.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:15.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:15.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 919.7647ms +2024-05-23 18:02:17.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:17.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:18.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:18.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.818ms +2024-05-23 18:02:19.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:19.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:20.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:20.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 904.0171ms +2024-05-23 18:02:22.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:22.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:23.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:23.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.5751ms +2024-05-23 18:02:23.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:23.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:24.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:24.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 834.8445ms +2024-05-23 18:02:27.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:27.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:28.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:28.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:28.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:28.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.1616ms +2024-05-23 18:02:29.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:29.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 905.3637ms +2024-05-23 18:02:29.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:29.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:30.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:30.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.0451ms +2024-05-23 18:02:32.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:32.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:33.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:33.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 887.2386ms +2024-05-23 18:02:34.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:34.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:36.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:36.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1401.9551ms +2024-05-23 18:02:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:37.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:38.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:38.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 878.2672ms +2024-05-23 18:02:38.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:38.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:39.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:39.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.4331ms +2024-05-23 18:02:42.989 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:42.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:43.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:43.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:43.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:43.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.8527ms +2024-05-23 18:02:43.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:43.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.975ms +2024-05-23 18:02:44.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:45.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:45.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 830.0589ms +2024-05-23 18:02:47.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:47.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:48.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:48.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 845.9672ms +2024-05-23 18:02:49.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:49.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:50.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:50.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.6972ms +2024-05-23 18:02:52.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:52.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:53.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:53.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 931.8807ms +2024-05-23 18:02:53.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:53.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:54.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:54.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 981.0858ms +2024-05-23 18:02:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:58.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:58.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:58.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:58.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 836.295ms +2024-05-23 18:02:58.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:02:58.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.3876ms +2024-05-23 18:02:59.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:02:59.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:00.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:00.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.6172ms +2024-05-23 18:03:02.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:02.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:03.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:03.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.7566ms +2024-05-23 18:03:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:04.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:05.751 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:05.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.0879ms +2024-05-23 18:03:07.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:07.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:08.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:08.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.6163ms +2024-05-23 18:03:08.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:08.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:09.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:09.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 826.8352ms +2024-05-23 18:03:10.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:10.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:11.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:11.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.9154ms +2024-05-23 18:03:11.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:11.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:12.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:12.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 895.5476ms +2024-05-23 18:03:12.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:12.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:13.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:13.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:13.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:13.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:13.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:13.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 851.105ms +2024-05-23 18:03:13.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:13.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.8617ms +2024-05-23 18:03:14.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:14.615 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:15.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:15.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1622.5466ms +2024-05-23 18:03:15.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:15.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:15.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:15.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.373ms +2024-05-23 18:03:16.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:16.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 897.2678ms +2024-05-23 18:03:17.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:17.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:18.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:18.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.7033ms +2024-05-23 18:03:19.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:19.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:20.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:20.803 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 905.0682ms +2024-05-23 18:03:22.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:22.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:23.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:23.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.8593ms +2024-05-23 18:03:23.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:23.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:24.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:24.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 835.4402ms +2024-05-23 18:03:26.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:26.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:27.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:27.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.4691ms +2024-05-23 18:03:27.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:27.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:28.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:28.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:28.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:28.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.2115ms +2024-05-23 18:03:29.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:29.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 869.6953ms +2024-05-23 18:03:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:29.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:30.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:30.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:30.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:30.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.343ms +2024-05-23 18:03:31.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:31.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.8234ms +2024-05-23 18:03:32.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:32.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:33.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:33.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.8274ms +2024-05-23 18:03:34.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:34.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:35.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:35.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 933.1352ms +2024-05-23 18:03:37.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:37.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:38.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:38.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 895.5712ms +2024-05-23 18:03:38.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:38.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:39.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:39.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.0167ms +2024-05-23 18:03:41.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:41.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:42.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:42.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1350.8433ms +2024-05-23 18:03:42.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:42.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:43.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:43.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:43.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:43.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 909.2184ms +2024-05-23 18:03:43.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:43.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 845.3076ms +2024-05-23 18:03:44.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:44.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:45.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:45.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:45.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:45.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 883.8876ms +2024-05-23 18:03:46.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:46.171 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.7738ms +2024-05-23 18:03:47.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:47.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:48.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:48.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.4344ms +2024-05-23 18:03:49.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:49.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:50.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:50.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.811ms +2024-05-23 18:03:52.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:52.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:53.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:53.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.1627ms +2024-05-23 18:03:53.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:53.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:54.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:54.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 833.9962ms +2024-05-23 18:03:56.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:56.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:57.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:57.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.5703ms +2024-05-23 18:03:57.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:57.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:58.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:58.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:58.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:58.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.5473ms +2024-05-23 18:03:59.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:03:59.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.0272ms +2024-05-23 18:03:59.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:03:59.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:00.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:00.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:00.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:00.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.6416ms +2024-05-23 18:04:01.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 892.5948ms +2024-05-23 18:04:02.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:02.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:03.752 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:03.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.882ms +2024-05-23 18:04:04.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:04.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:05.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:05.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1004.3698ms +2024-05-23 18:04:07.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:07.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:08.150 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:08.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.6499ms +2024-05-23 18:04:08.447 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:08.447 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:09.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:09.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 833.4586ms +2024-05-23 18:04:11.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:11.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:12.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:12.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.429ms +2024-05-23 18:04:12.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:12.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:13.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:13.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:13.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:13.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.1431ms +2024-05-23 18:04:13.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:13.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 861.7051ms +2024-05-23 18:04:14.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:14.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:15.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:15.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:15.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:15.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 865.021ms +2024-05-23 18:04:16.149 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:16.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.0613ms +2024-05-23 18:04:17.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:17.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:18.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:18.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 875.1066ms +2024-05-23 18:04:19.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:19.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:20.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:20.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.218ms +2024-05-23 18:04:22.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:22.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:23.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:23.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.2717ms +2024-05-23 18:04:23.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:23.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:24.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:24.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 834.1605ms +2024-05-23 18:04:26.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:26.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:27.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:27.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.8644ms +2024-05-23 18:04:27.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:27.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:28.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:28.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:28.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:28.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.6624ms +2024-05-23 18:04:29.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:29.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.0081ms +2024-05-23 18:04:29.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:29.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:30.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:30.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:30.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:30.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.1256ms +2024-05-23 18:04:31.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:31.171 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.731ms +2024-05-23 18:04:32.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:32.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:33.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:33.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 895.5871ms +2024-05-23 18:04:34.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:34.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:35.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:35.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.685ms +2024-05-23 18:04:37.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:37.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:38.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:38.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 869.3244ms +2024-05-23 18:04:38.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:38.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:39.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:39.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 823.6214ms +2024-05-23 18:04:41.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:41.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:42.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:42.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 869.2905ms +2024-05-23 18:04:42.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:42.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:43.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:43.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:43.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:43.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 831.1548ms +2024-05-23 18:04:44.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:44.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 888.4821ms +2024-05-23 18:04:44.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:45.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:45.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:45.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:45.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 875.0504ms +2024-05-23 18:04:46.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:46.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.5409ms +2024-05-23 18:04:47.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:47.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:48.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:48.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 845.5841ms +2024-05-23 18:04:49.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:49.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:50.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:50.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.5551ms +2024-05-23 18:04:52.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:52.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:53.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:53.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.239ms +2024-05-23 18:04:53.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:54.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:54.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 969.8421ms +2024-05-23 18:04:56.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:56.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:57.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:57.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.917ms +2024-05-23 18:04:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:57.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:58.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:58.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:58.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:58.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.7192ms +2024-05-23 18:04:59.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:04:59.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 930.6658ms +2024-05-23 18:04:59.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:04:59.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:00.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:00.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:00.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:00.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.5528ms +2024-05-23 18:05:01.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 890.8253ms +2024-05-23 18:05:02.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:02.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:03.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:03.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 828.524ms +2024-05-23 18:05:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:04.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:05.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:05.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.435ms +2024-05-23 18:05:07.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:07.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:08.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:08.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 923.8186ms +2024-05-23 18:05:08.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:08.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:09.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:09.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1525.6854ms +2024-05-23 18:05:11.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:11.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:12.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:12.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.5442ms +2024-05-23 18:05:12.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:12.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:13.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:13.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:13.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:13.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.5381ms +2024-05-23 18:05:13.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:13.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 831.2881ms +2024-05-23 18:05:14.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:14.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:15.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:15.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:15.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:15.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.6073ms +2024-05-23 18:05:16.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:16.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 828.8371ms +2024-05-23 18:05:17.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:17.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:18.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:18.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.2826ms +2024-05-23 18:05:19.256 +02:00 [INF] Received a message with ID: 'fb230bd73f8e445896f14a73e7694b85', Correlation ID: '3b3357d417fe48249c49eb1761f59b0b', timestamp: 1716480319, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:05:19.257 +02:00 [INF] Received a message with ID: '639eefa51df3478a95e98f498f454eae', Correlation ID: '469efb8109db4ff692801121cf18b78e', timestamp: 1716480319, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:05:19.258 +02:00 [INF] Handling a message: friend_invited with ID: fb230bd73f8e445896f14a73e7694b85, Correlation ID: 3b3357d417fe48249c49eb1761f59b0b, retry: 0 +2024-05-23 18:05:19.258 +02:00 [INF] Handling a message: friend_request_sent with ID: 639eefa51df3478a95e98f498f454eae, Correlation ID: 469efb8109db4ff692801121cf18b78e, retry: 0 +2024-05-23 18:05:19.288 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:05:19.289 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:19.289 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:19.319 +02:00 [INF] Received HTTP response headers after 30.0836ms - 200 +2024-05-23 18:05:19.320 +02:00 [INF] End processing HTTP request after 30.9111ms - 200 +2024-05-23 18:05:19.320 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:05:19.402 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 18:05:19.402 +02:00 [INF] Handled a message: friend_request_sent with ID: 639eefa51df3478a95e98f498f454eae, Correlation ID: 469efb8109db4ff692801121cf18b78e, retry: 0 +2024-05-23 18:05:19.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:19.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:20.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:20.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.0095ms +2024-05-23 18:05:22.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:22.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:23.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:23.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 838.8508ms +2024-05-23 18:05:23.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:23.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:24.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:24.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 822.8652ms +2024-05-23 18:05:26.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:26.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:27.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:27.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.27ms +2024-05-23 18:05:27.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:27.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:28.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:28.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:28.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:28.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 883.2221ms +2024-05-23 18:05:28.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:28.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.5348ms +2024-05-23 18:05:29.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:29.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:30.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:30.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:30.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:30.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 829.9547ms +2024-05-23 18:05:31.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:31.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.2356ms +2024-05-23 18:05:32.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:32.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:33.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:33.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.1923ms +2024-05-23 18:05:34.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:34.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:35.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:35.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 869.1958ms +2024-05-23 18:05:36.990 +02:00 [ERR] There was an error when processing a message with id: 'fb230bd73f8e445896f14a73e7694b85'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:05:36.991 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:05:36.993 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fb230bd73f8e445896f14a73e7694b85', Correlation ID: '3b3357d417fe48249c49eb1761f59b0b', retry 1/3... +2024-05-23 18:05:37.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:37.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:38.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:38.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.6559ms +2024-05-23 18:05:38.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:38.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:38.990 +02:00 [INF] Handling a message: friend_invited with ID: fb230bd73f8e445896f14a73e7694b85, Correlation ID: 3b3357d417fe48249c49eb1761f59b0b, retry: 1 +2024-05-23 18:05:39.026 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:05:39.027 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:39.027 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:39.060 +02:00 [INF] Received HTTP response headers after 32.9818ms - 200 +2024-05-23 18:05:39.060 +02:00 [INF] End processing HTTP request after 33.3915ms - 200 +2024-05-23 18:05:39.060 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:05:39.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:39.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.4407ms +2024-05-23 18:05:41.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:41.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:42.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:42.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.8036ms +2024-05-23 18:05:42.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:42.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:43.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:43.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:43.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:43.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.765ms +2024-05-23 18:05:44.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:44.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 897.8023ms +2024-05-23 18:05:44.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:44.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:45.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:45.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:45.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:45.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.0966ms +2024-05-23 18:05:46.159 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:46.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 845.994ms +2024-05-23 18:05:47.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:47.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:48.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:48.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.9612ms +2024-05-23 18:05:49.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:49.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:50.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:50.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.7992ms +2024-05-23 18:05:52.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:52.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:53.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:53.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.6548ms +2024-05-23 18:05:53.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:53.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:54.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:54.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.7297ms +2024-05-23 18:05:56.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:56.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:56.551 +02:00 [ERR] There was an error when processing a message with id: 'fb230bd73f8e445896f14a73e7694b85'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:05:56.552 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:05:56.553 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fb230bd73f8e445896f14a73e7694b85', Correlation ID: '3b3357d417fe48249c49eb1761f59b0b', retry 2/3... +2024-05-23 18:05:57.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:57.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 904.6731ms +2024-05-23 18:05:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:58.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:58.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:58.554 +02:00 [INF] Handling a message: friend_invited with ID: fb230bd73f8e445896f14a73e7694b85, Correlation ID: 3b3357d417fe48249c49eb1761f59b0b, retry: 2 +2024-05-23 18:05:58.579 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:05:58.580 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:58.580 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:05:58.608 +02:00 [INF] Received HTTP response headers after 27.7205ms - 200 +2024-05-23 18:05:58.608 +02:00 [INF] End processing HTTP request after 28.3713ms - 200 +2024-05-23 18:05:58.608 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:05:58.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:58.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 924.7797ms +2024-05-23 18:05:58.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:05:58.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.2802ms +2024-05-23 18:05:59.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:05:59.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:00.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:00.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:00.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:00.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.1443ms +2024-05-23 18:06:01.153 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:01.153 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.7503ms +2024-05-23 18:06:02.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:02.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:03.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:03.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 890.8814ms +2024-05-23 18:06:04.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:04.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:05.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:05.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 918.0402ms +2024-05-23 18:06:07.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:07.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:08.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:08.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.0934ms +2024-05-23 18:06:08.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:08.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:09.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:09.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 826.6641ms +2024-05-23 18:06:11.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:11.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:12.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:12.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.9178ms +2024-05-23 18:06:12.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:12.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:13.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:13.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:13.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:13.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.742ms +2024-05-23 18:06:14.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:14.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.5451ms +2024-05-23 18:06:14.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:14.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:15.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:15.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:15.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:15.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.3646ms +2024-05-23 18:06:16.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:16.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 831.8542ms +2024-05-23 18:06:16.520 +02:00 [ERR] There was an error when processing a message with id: 'fb230bd73f8e445896f14a73e7694b85'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:06:16.521 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:06:16.522 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fb230bd73f8e445896f14a73e7694b85', Correlation ID: '3b3357d417fe48249c49eb1761f59b0b', retry 3/3... +2024-05-23 18:06:17.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:17.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:18.521 +02:00 [INF] Handling a message: friend_invited with ID: fb230bd73f8e445896f14a73e7694b85, Correlation ID: 3b3357d417fe48249c49eb1761f59b0b, retry: 3 +2024-05-23 18:06:18.551 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:06:18.552 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:06:18.552 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:06:18.579 +02:00 [INF] Received HTTP response headers after 27.4203ms - 200 +2024-05-23 18:06:18.579 +02:00 [INF] End processing HTTP request after 27.757ms - 200 +2024-05-23 18:06:18.579 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:06:18.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:18.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 861.336ms +2024-05-23 18:06:19.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:19.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:20.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:20.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 818.4762ms +2024-05-23 18:06:22.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:22.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:23.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:23.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.1399ms +2024-05-23 18:06:23.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:23.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:24.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:24.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.5099ms +2024-05-23 18:06:26.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:26.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:27.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:27.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.7231ms +2024-05-23 18:06:27.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:27.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:28.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:28.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:28.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:28.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.868ms +2024-05-23 18:06:28.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:28.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.6087ms +2024-05-23 18:06:29.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:29.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:30.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:30.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:30.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:30.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.019ms +2024-05-23 18:06:31.158 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:31.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.3156ms +2024-05-23 18:06:32.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:32.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:33.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:33.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 842.9672ms +2024-05-23 18:06:34.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:34.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:35.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:35.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.999ms +2024-05-23 18:06:37.135 +02:00 [ERR] There was an error when processing a message with id: 'fb230bd73f8e445896f14a73e7694b85'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:06:37.140 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:06:37.143 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'fb230bd73f8e445896f14a73e7694b85', Correlation ID: '3b3357d417fe48249c49eb1761f59b0b', retry 4/3... +2024-05-23 18:06:37.143 +02:00 [ERR] Handling a message: friend_invited with ID: fb230bd73f8e445896f14a73e7694b85, Correlation ID: 3b3357d417fe48249c49eb1761f59b0b failed +2024-05-23 18:06:37.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:37.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:38.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:38.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 911.624ms +2024-05-23 18:06:38.449 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:38.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:39.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:39.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.2618ms +2024-05-23 18:06:41.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:41.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:42.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:42.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.1843ms +2024-05-23 18:06:42.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:42.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:43.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:43.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:43.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:43.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.1401ms +2024-05-23 18:06:44.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:44.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.4355ms +2024-05-23 18:06:44.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:44.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:45.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:45.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:45.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:45.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 837.944ms +2024-05-23 18:06:46.181 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:46.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.1851ms +2024-05-23 18:06:47.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:47.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:48.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:48.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 865.5071ms +2024-05-23 18:06:49.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:49.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:50.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:50.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.2092ms +2024-05-23 18:06:52.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:52.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:53.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:53.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.7743ms +2024-05-23 18:06:53.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:53.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:54.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:54.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.1393ms +2024-05-23 18:06:56.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:56.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:57.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:57.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 888.7993ms +2024-05-23 18:06:57.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:57.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:58.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:58.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:58.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:58.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 833.6644ms +2024-05-23 18:06:58.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:06:58.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 836.8782ms +2024-05-23 18:06:59.600 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:06:59.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:00.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:00.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:00.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:00.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 830.1813ms +2024-05-23 18:07:01.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:01.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.2534ms +2024-05-23 18:07:02.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:02.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:03.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:03.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.7373ms +2024-05-23 18:07:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:04.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:05.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:05.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 890.8853ms +2024-05-23 18:07:07.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:07.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:08.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:08.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 893.5078ms +2024-05-23 18:07:08.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:08.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:09.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:09.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 811.2578ms +2024-05-23 18:07:11.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:11.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:12.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:12.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.385ms +2024-05-23 18:07:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:13.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:13.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:13.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:13.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.8502ms +2024-05-23 18:07:14.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:14.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 890.0185ms +2024-05-23 18:07:14.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:14.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:15.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:15.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:15.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:15.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 946.4843ms +2024-05-23 18:07:16.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:16.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 901.9117ms +2024-05-23 18:07:17.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:17.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:18.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:18.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.7454ms +2024-05-23 18:07:19.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:19.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:20.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:20.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.3998ms +2024-05-23 18:07:22.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:22.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:23.159 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:23.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 893.0907ms +2024-05-23 18:07:23.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:23.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:24.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:24.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 830.2765ms +2024-05-23 18:07:26.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:26.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:27.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:27.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 875.6635ms +2024-05-23 18:07:27.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:27.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:28.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:28.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:28.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:28.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.8938ms +2024-05-23 18:07:28.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:28.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.6516ms +2024-05-23 18:07:29.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:29.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:30.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:30.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:30.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:30.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.4627ms +2024-05-23 18:07:31.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:31.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.9888ms +2024-05-23 18:07:32.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:32.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:33.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:33.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.9653ms +2024-05-23 18:07:34.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:34.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:35.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:35.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 848.6538ms +2024-05-23 18:07:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:37.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:38.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:38.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.1016ms +2024-05-23 18:07:38.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:38.451 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:39.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:39.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.3787ms +2024-05-23 18:07:41.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:41.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:42.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:42.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.5875ms +2024-05-23 18:07:42.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:42.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:43.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:43.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:43.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:43.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.468ms +2024-05-23 18:07:43.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:43.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.0147ms +2024-05-23 18:07:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:45.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:45.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:45.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:45.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 897.5004ms +2024-05-23 18:07:46.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:46.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.641ms +2024-05-23 18:07:47.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:47.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:48.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:48.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 906.3882ms +2024-05-23 18:07:49.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:49.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:50.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:50.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 876.2777ms +2024-05-23 18:07:52.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:52.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:53.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:53.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.3492ms +2024-05-23 18:07:53.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:53.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:54.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:54.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.8649ms +2024-05-23 18:07:56.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:56.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:57.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:57.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.4049ms +2024-05-23 18:07:57.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:57.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:58.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:58.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:58.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:58.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.2966ms +2024-05-23 18:07:58.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:07:58.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.7781ms +2024-05-23 18:07:59.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:07:59.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:00.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:00.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:00.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:00.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 862.1425ms +2024-05-23 18:08:01.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:01.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.7295ms +2024-05-23 18:08:02.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:02.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:03.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:03.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.4375ms +2024-05-23 18:08:04.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:04.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:05.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:05.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.7754ms +2024-05-23 18:08:07.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:07.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:08.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:08.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 872.4808ms +2024-05-23 18:08:08.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:08.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:09.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:09.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.7127ms +2024-05-23 18:08:11.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:11.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:12.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:12.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 915.1465ms +2024-05-23 18:08:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:13.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:13.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:13.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:13.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 901.1909ms +2024-05-23 18:08:13.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:13.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 860.8815ms +2024-05-23 18:08:14.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:14.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:15.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:15.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:15.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:15.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 828.0985ms +2024-05-23 18:08:16.189 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:16.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.3029ms +2024-05-23 18:08:17.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:17.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:18.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:18.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.6779ms +2024-05-23 18:08:19.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:19.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:20.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:20.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.738ms +2024-05-23 18:08:22.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:22.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:23.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:23.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 938.3861ms +2024-05-23 18:08:23.451 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:23.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:24.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:24.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 885.7124ms +2024-05-23 18:08:26.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:26.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:27.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:27.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.1793ms +2024-05-23 18:08:27.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:27.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:28.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:28.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:28.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:28.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 876.6986ms +2024-05-23 18:08:29.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:29.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 930.8207ms +2024-05-23 18:08:29.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:29.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:30.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:30.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:30.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:30.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.6344ms +2024-05-23 18:08:31.185 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:31.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.7586ms +2024-05-23 18:08:32.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:32.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:33.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:33.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.9208ms +2024-05-23 18:08:34.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:34.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:35.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:35.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.588ms +2024-05-23 18:08:37.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:37.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:38.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:38.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.4071ms +2024-05-23 18:08:38.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:38.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:39.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:39.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 876.4323ms +2024-05-23 18:08:41.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:41.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:42.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:42.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 823.0768ms +2024-05-23 18:08:42.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:42.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:43.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:43.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:43.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:43.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.4612ms +2024-05-23 18:08:44.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:44.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 931.6679ms +2024-05-23 18:08:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:45.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:45.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:45.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:45.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 893.9514ms +2024-05-23 18:08:46.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:46.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 808.7661ms +2024-05-23 18:08:47.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:47.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:48.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:48.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.4861ms +2024-05-23 18:08:49.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:49.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:50.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:50.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 891.2021ms +2024-05-23 18:08:52.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:52.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:53.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:53.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.8008ms +2024-05-23 18:08:53.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:53.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:54.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:54.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.0593ms +2024-05-23 18:08:56.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:56.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:57.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:57.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.1732ms +2024-05-23 18:08:57.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:57.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:58.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:58.136 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:58.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:58.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 888.9151ms +2024-05-23 18:08:58.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:08:58.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 860.0217ms +2024-05-23 18:08:59.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:08:59.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:00.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:00.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:00.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:00.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.3472ms +2024-05-23 18:09:01.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:01.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 879.1082ms +2024-05-23 18:09:02.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:02.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:03.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:03.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 860.6738ms +2024-05-23 18:09:04.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:04.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:05.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:05.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 876.5912ms +2024-05-23 18:09:07.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:07.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:08.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:08.118 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.8891ms +2024-05-23 18:09:08.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:08.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:09.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:09.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 843.8454ms +2024-05-23 18:09:11.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:11.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:12.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:12.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.0731ms +2024-05-23 18:09:12.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:12.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:13.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:13.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:13.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:13.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.2006ms +2024-05-23 18:09:14.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:14.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 888.8486ms +2024-05-23 18:09:14.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:14.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:15.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:15.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:15.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:15.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.9129ms +2024-05-23 18:09:16.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:16.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 872.9969ms +2024-05-23 18:09:17.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:17.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:18.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:18.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 857.8907ms +2024-05-23 18:09:19.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:19.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:20.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:20.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.2675ms +2024-05-23 18:09:22.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:22.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:23.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:23.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.777ms +2024-05-23 18:09:23.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:23.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:24.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:24.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 856.4339ms +2024-05-23 18:09:26.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:26.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:27.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:27.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.5569ms +2024-05-23 18:09:28.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:28.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:28.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:28.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:28.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:28.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 862.5451ms +2024-05-23 18:09:29.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:29.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 889.2919ms +2024-05-23 18:09:29.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:29.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:30.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:30.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:30.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:30.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.0226ms +2024-05-23 18:09:31.171 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:31.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.8563ms +2024-05-23 18:09:32.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:32.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:33.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:33.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.8019ms +2024-05-23 18:09:34.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:34.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:35.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:35.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.1998ms +2024-05-23 18:09:37.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:37.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:38.147 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:38.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.6734ms +2024-05-23 18:09:38.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:38.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:39.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:39.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.7525ms +2024-05-23 18:09:41.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:41.462 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:42.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:42.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 864.8773ms +2024-05-23 18:09:42.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:42.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:43.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:43.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:43.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:43.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 959.8319ms +2024-05-23 18:09:44.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:44.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 904.5286ms +2024-05-23 18:09:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:45.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:45.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:45.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:45.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 886.8074ms +2024-05-23 18:09:46.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:46.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 878.7876ms +2024-05-23 18:09:47.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:47.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:48.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:48.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 854.9865ms +2024-05-23 18:09:49.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:49.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:50.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:50.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 839.9754ms +2024-05-23 18:09:52.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:52.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:53.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:53.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 874.3867ms +2024-05-23 18:09:53.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:53.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:54.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:54.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 883.4772ms +2024-05-23 18:09:56.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:56.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:57.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:57.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 903.4065ms +2024-05-23 18:09:57.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:57.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:58.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:58.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:58.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:58.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 880.6467ms +2024-05-23 18:09:59.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:09:59.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 886.0406ms +2024-05-23 18:09:59.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:09:59.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:00.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:00.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:00.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:00.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 871.7732ms +2024-05-23 18:10:01.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:01.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1063.6413ms +2024-05-23 18:10:02.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:02.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:03.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:03.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 944.2545ms +2024-05-23 18:10:04.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:04.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:05.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:05.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 866.636ms +2024-05-23 18:10:07.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:07.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:08.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:08.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.2985ms +2024-05-23 18:10:08.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:08.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:09.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:09.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.36ms +2024-05-23 18:10:11.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:11.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:12.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:12.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 894.4448ms +2024-05-23 18:10:12.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:12.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:13.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:13.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:13.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:13.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 896.451ms +2024-05-23 18:10:13.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:13.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.0471ms +2024-05-23 18:10:14.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:14.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:15.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:15.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:15.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:15.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 847.1236ms +2024-05-23 18:10:16.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:16.223 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 902.8951ms +2024-05-23 18:10:17.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:17.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:18.752 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:18.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.7774ms +2024-05-23 18:10:19.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:19.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:20.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:20.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 907.4748ms +2024-05-23 18:10:22.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:22.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:23.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:23.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 877.5631ms +2024-05-23 18:10:23.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:23.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:24.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:24.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 868.1374ms +2024-05-23 18:10:26.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:26.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:27.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:27.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.5614ms +2024-05-23 18:10:27.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:27.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:28.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:28.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:28.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:28.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 849.8458ms +2024-05-23 18:10:28.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:28.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 840.453ms +2024-05-23 18:10:29.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:29.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:30.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:30.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:30.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:30.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 838.565ms +2024-05-23 18:10:31.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:31.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 859.9798ms +2024-05-23 18:10:32.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:32.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:33.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:33.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 827.5054ms +2024-05-23 18:10:34.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:34.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:35.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:35.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 863.4496ms +2024-05-23 18:10:37.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:37.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:38.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:38.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 873.5169ms +2024-05-23 18:10:38.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:38.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:39.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:39.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 841.5975ms +2024-05-23 18:10:41.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:41.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:42.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:42.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 855.9671ms +2024-05-23 18:10:42.999 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:43.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:43.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:43.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:43.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:43.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 919.6275ms +2024-05-23 18:10:44.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:44.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 867.253ms +2024-05-23 18:10:44.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:44.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:45.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:45.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:45.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:45.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 884.196ms +2024-05-23 18:10:46.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:46.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.0253ms +2024-05-23 18:10:46.395 +02:00 [INF] Received a message with ID: '22e48b2aa65245eeb54d461425623d94', Correlation ID: '9378cf31b95b409c86cae7cb20c44b40', timestamp: 1716480646, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:10:46.395 +02:00 [INF] Received a message with ID: 'd59a9f144c5a4e0a8aa60aea45bdc8c7', Correlation ID: '50018055bc114eec93b6813100c0142e', timestamp: 1716480646, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:10:46.395 +02:00 [INF] Handling a message: friend_request_sent with ID: d59a9f144c5a4e0a8aa60aea45bdc8c7, Correlation ID: 50018055bc114eec93b6813100c0142e, retry: 0 +2024-05-23 18:10:46.396 +02:00 [INF] Handling a message: friend_invited with ID: 22e48b2aa65245eeb54d461425623d94, Correlation ID: 9378cf31b95b409c86cae7cb20c44b40, retry: 0 +2024-05-23 18:10:46.424 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:10:46.424 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:10:46.424 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:10:46.456 +02:00 [INF] Received HTTP response headers after 32.363ms - 200 +2024-05-23 18:10:46.457 +02:00 [INF] End processing HTTP request after 32.817ms - 200 +2024-05-23 18:10:46.457 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:10:46.523 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 18:10:46.523 +02:00 [INF] Handled a message: friend_request_sent with ID: d59a9f144c5a4e0a8aa60aea45bdc8c7, Correlation ID: 50018055bc114eec93b6813100c0142e, retry: 0 +2024-05-23 18:10:46.612 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-23 18:10:46.612 +02:00 [INF] Handled a message: friend_invited with ID: 22e48b2aa65245eeb54d461425623d94, Correlation ID: 9378cf31b95b409c86cae7cb20c44b40, retry: 0 +2024-05-23 18:10:47.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:47.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:48.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:48.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 911.9182ms +2024-05-23 18:10:54.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:54.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:56.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:56.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:57.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:57.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 2767.757ms +2024-05-23 18:10:57.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:10:57.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:57.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:57.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 858.7014ms +2024-05-23 18:10:58.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:10:58.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 870.9753ms +2024-05-23 18:11:14.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:11:14.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:16.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:16.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 2433.9167ms +2024-05-23 18:11:16.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:11:16.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:17.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:17.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 812.4585ms +2024-05-23 18:11:29.543 +02:00 [INF] Received a message with ID: 'af49b9f38c6249aeacdfd1bc0b130075', Correlation ID: '6b7ce75751c248279120cce40de025de', timestamp: 1716480689, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:11:29.544 +02:00 [INF] Handling a message: friend_request_sent with ID: af49b9f38c6249aeacdfd1bc0b130075, Correlation ID: 6b7ce75751c248279120cce40de025de, retry: 0 +2024-05-23 18:11:29.543 +02:00 [INF] Received a message with ID: '42132664bacf43e6b3622ae62fb7c76d', Correlation ID: '939e9e12a12e46d08ff9ac058527eae9', timestamp: 1716480689, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:11:29.545 +02:00 [INF] Handling a message: friend_invited with ID: 42132664bacf43e6b3622ae62fb7c76d, Correlation ID: 939e9e12a12e46d08ff9ac058527eae9, retry: 0 +2024-05-23 18:11:29.573 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:11:29.574 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:11:29.574 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:11:29.602 +02:00 [INF] Received HTTP response headers after 28.1763ms - 200 +2024-05-23 18:11:29.602 +02:00 [INF] End processing HTTP request after 28.6961ms - 200 +2024-05-23 18:11:29.602 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:11:29.674 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 18:11:29.674 +02:00 [INF] Handled a message: friend_request_sent with ID: af49b9f38c6249aeacdfd1bc0b130075, Correlation ID: 6b7ce75751c248279120cce40de025de, retry: 0 +2024-05-23 18:11:31.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:11:31.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:32.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:32.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 832.419ms +2024-05-23 18:11:44.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:11:44.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:46.638 +02:00 [ERR] There was an error when processing a message with id: '42132664bacf43e6b3622ae62fb7c76d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:11:46.642 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:11:46.643 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '42132664bacf43e6b3622ae62fb7c76d', Correlation ID: '939e9e12a12e46d08ff9ac058527eae9', retry 1/3... +2024-05-23 18:11:48.643 +02:00 [INF] Handling a message: friend_invited with ID: 42132664bacf43e6b3622ae62fb7c76d, Correlation ID: 939e9e12a12e46d08ff9ac058527eae9, retry: 1 +2024-05-23 18:11:48.672 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:11:48.672 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:11:48.672 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:11:48.699 +02:00 [INF] Received HTTP response headers after 26.7709ms - 200 +2024-05-23 18:11:48.699 +02:00 [INF] End processing HTTP request after 27.2785ms - 200 +2024-05-23 18:11:48.699 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:11:57.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:11:57.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12721.4587ms +2024-05-23 18:11:57.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:11:57.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:05.911 +02:00 [ERR] There was an error when processing a message with id: '42132664bacf43e6b3622ae62fb7c76d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:12:05.912 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:12:05.913 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '42132664bacf43e6b3622ae62fb7c76d', Correlation ID: '939e9e12a12e46d08ff9ac058527eae9', retry 2/3... +2024-05-23 18:12:07.914 +02:00 [INF] Handling a message: friend_invited with ID: 42132664bacf43e6b3622ae62fb7c76d, Correlation ID: 939e9e12a12e46d08ff9ac058527eae9, retry: 2 +2024-05-23 18:12:07.941 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:12:07.941 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:12:07.941 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:12:07.969 +02:00 [INF] Received HTTP response headers after 27.2845ms - 200 +2024-05-23 18:12:07.969 +02:00 [INF] End processing HTTP request after 27.8985ms - 200 +2024-05-23 18:12:07.969 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:12:09.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:09.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12677.2675ms +2024-05-23 18:12:12.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:12.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:24.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:24.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:24.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:24.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12477.7381ms +2024-05-23 18:12:24.976 +02:00 [ERR] There was an error when processing a message with id: '42132664bacf43e6b3622ae62fb7c76d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:12:24.978 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:12:24.978 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '42132664bacf43e6b3622ae62fb7c76d', Correlation ID: '939e9e12a12e46d08ff9ac058527eae9', retry 3/3... +2024-05-23 18:12:26.978 +02:00 [INF] Handling a message: friend_invited with ID: 42132664bacf43e6b3622ae62fb7c76d, Correlation ID: 939e9e12a12e46d08ff9ac058527eae9, retry: 3 +2024-05-23 18:12:27.007 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:12:27.007 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:12:27.008 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:12:27.037 +02:00 [INF] Received HTTP response headers after 29.1091ms - 200 +2024-05-23 18:12:27.037 +02:00 [INF] End processing HTTP request after 30.1625ms - 200 +2024-05-23 18:12:27.038 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:12:27.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:27.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:30.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:30.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:37.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:37.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13192.3076ms +2024-05-23 18:12:37.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:37.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:39.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:39.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:41.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:41.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 14026.8956ms +2024-05-23 18:12:43.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:43.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12912.3538ms +2024-05-23 18:12:44.702 +02:00 [ERR] There was an error when processing a message with id: '42132664bacf43e6b3622ae62fb7c76d'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:12:44.706 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:12:44.710 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '42132664bacf43e6b3622ae62fb7c76d', Correlation ID: '939e9e12a12e46d08ff9ac058527eae9', retry 4/3... +2024-05-23 18:12:44.711 +02:00 [ERR] Handling a message: friend_invited with ID: 42132664bacf43e6b3622ae62fb7c76d, Correlation ID: 939e9e12a12e46d08ff9ac058527eae9 failed +2024-05-23 18:12:50.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:50.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13043.2309ms +2024-05-23 18:12:53.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:12:53.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 14123.3291ms +2024-05-23 18:12:53.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:12:53.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:06.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:06.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12843.9367ms +2024-05-23 18:13:08.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:13:08.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:21.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:21.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12798.3949ms +2024-05-23 18:13:23.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:13:23.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:36.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:36.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12774.8993ms +2024-05-23 18:13:38.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:13:38.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:50.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:13:51.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12742.5412ms +2024-05-23 18:13:53.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:13:53.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:06.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:06.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13120.1441ms +2024-05-23 18:14:08.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:14:08.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:21.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:21.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13214.9702ms +2024-05-23 18:14:23.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:14:23.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:35.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:35.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12650.8589ms +2024-05-23 18:14:38.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:14:38.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:45.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:14:45.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:45.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:45.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8798ms +2024-05-23 18:14:45.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:14:45.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:45.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:45.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8744ms +2024-05-23 18:14:51.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:14:51.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12808.676ms +2024-05-23 18:14:53.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:14:53.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:00.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:15:00.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:00.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:00.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4373ms +2024-05-23 18:15:06.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:06.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12815.3119ms +2024-05-23 18:15:08.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:15:08.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:15.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:15:15.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:15.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:15.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7366ms +2024-05-23 18:15:21.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:21.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12846.7451ms +2024-05-23 18:15:23.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:15:23.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:30.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:15:30.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:30.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:30.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0596ms +2024-05-23 18:15:36.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:36.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13036.4831ms +2024-05-23 18:15:38.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:15:38.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:45.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:15:45.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:45.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:45.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7667ms +2024-05-23 18:15:51.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:15:51.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13526.4699ms +2024-05-23 18:16:49.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:16:49.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:03.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:17:03.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:03.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:03.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8815ms +2024-05-23 18:17:03.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:17:03.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:03.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:03.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2762ms +2024-05-23 18:17:15.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:15.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26586.7002ms +2024-05-23 18:17:18.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:17:18.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:18.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:18.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9372ms +2024-05-23 18:17:19.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:19.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:19.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:19.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:30.723 +02:00 [INF] Received a message with ID: 'ab71741d1ba943eb9033739ee4016739', Correlation ID: 'd2cc72e8527b45caa435159130b74c49', timestamp: 1716481050, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:17:30.724 +02:00 [INF] Received a message with ID: 'ab5576bf1019454b8054330601797c61', Correlation ID: 'c468aac738cc4f93904155e66410a451', timestamp: 1716481050, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:17:30.724 +02:00 [INF] Handling a message: friend_invited with ID: ab71741d1ba943eb9033739ee4016739, Correlation ID: d2cc72e8527b45caa435159130b74c49, retry: 0 +2024-05-23 18:17:30.724 +02:00 [INF] Handling a message: friend_request_sent with ID: ab5576bf1019454b8054330601797c61, Correlation ID: c468aac738cc4f93904155e66410a451, retry: 0 +2024-05-23 18:17:30.759 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 18:17:30.759 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:17:30.759 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:17:30.789 +02:00 [INF] Received HTTP response headers after 29.4104ms - 200 +2024-05-23 18:17:30.789 +02:00 [INF] End processing HTTP request after 30.1238ms - 200 +2024-05-23 18:17:30.790 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:17:30.856 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 18:17:30.856 +02:00 [INF] Handled a message: friend_request_sent with ID: ab5576bf1019454b8054330601797c61, Correlation ID: c468aac738cc4f93904155e66410a451, retry: 0 +2024-05-23 18:17:30.939 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 18:17:30.939 +02:00 [INF] Handled a message: friend_invited with ID: ab71741d1ba943eb9033739ee4016739, Correlation ID: d2cc72e8527b45caa435159130b74c49, retry: 0 +2024-05-23 18:17:32.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:32.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13593.2725ms +2024-05-23 18:17:32.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:33.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:33.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13518.6065ms +2024-05-23 18:17:33.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:33.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:33.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:17:33.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:33.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:33.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.4022ms +2024-05-23 18:17:45.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:45.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12753.8747ms +2024-05-23 18:17:46.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:46.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12630.1831ms +2024-05-23 18:17:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:48.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:17:48.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:48.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:17:48.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:48.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:17:48.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.6533ms +2024-05-23 18:18:00.045 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:00.045 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12413.5172ms +2024-05-23 18:18:00.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:00.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12514.604ms +2024-05-23 18:18:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:02.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:03.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:03.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:03.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:18:03.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:03.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:03.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5223ms +2024-05-23 18:18:15.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:15.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12852.7081ms +2024-05-23 18:18:16.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:16.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12925.4757ms +2024-05-23 18:18:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:18.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:18.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:18.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:18:18.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:18.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:18.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3187ms +2024-05-23 18:18:30.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:30.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12506.1498ms +2024-05-23 18:18:30.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:30.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12491.8365ms +2024-05-23 18:18:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:33.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:33.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:33.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 18:18:33.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:33.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:33.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 39.0777ms +2024-05-23 18:18:45.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:45.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12600.6419ms +2024-05-23 18:18:45.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:45.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12573.062ms +2024-05-23 18:18:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:18:48.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:18:48.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:00.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:00.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12421.1705ms +2024-05-23 18:19:01.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:01.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12622.6519ms +2024-05-23 18:19:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:02.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:02.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:19:02.822 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:03.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:03.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:03.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:03.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 846.6761ms +2024-05-23 18:19:03.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:19:03.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:04.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:04.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 822.0301ms +2024-05-23 18:19:13.543 +02:00 [INF] Received a message with ID: '7d33df6ba8954dacb7a9c8f9084c3f83', Correlation ID: 'f8ed2107cd634e0f9f0208dcd68755f8', timestamp: 1716481153, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:19:13.543 +02:00 [INF] Received a message with ID: '0a504e30ed8f424ebf87569cea440b15', Correlation ID: 'a674c5c2077946dd9ab2ffd79ad7c583', timestamp: 1716481153, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:19:13.544 +02:00 [INF] Handling a message: friend_request_sent with ID: 0a504e30ed8f424ebf87569cea440b15, Correlation ID: a674c5c2077946dd9ab2ffd79ad7c583, retry: 0 +2024-05-23 18:19:13.544 +02:00 [INF] Handling a message: friend_invited with ID: 7d33df6ba8954dacb7a9c8f9084c3f83, Correlation ID: f8ed2107cd634e0f9f0208dcd68755f8, retry: 0 +2024-05-23 18:19:13.573 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:19:13.573 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:13.573 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:13.602 +02:00 [INF] Received HTTP response headers after 28.6528ms - 200 +2024-05-23 18:19:13.602 +02:00 [INF] End processing HTTP request after 29.0882ms - 200 +2024-05-23 18:19:13.603 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:19:13.666 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 18:19:13.666 +02:00 [INF] Handled a message: friend_request_sent with ID: 0a504e30ed8f424ebf87569cea440b15, Correlation ID: a674c5c2077946dd9ab2ffd79ad7c583, retry: 0 +2024-05-23 18:19:15.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:15.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12609.7283ms +2024-05-23 18:19:16.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:16.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12829.0338ms +2024-05-23 18:19:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:18.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:18.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:18.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:19:18.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:20.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:20.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1804.2232ms +2024-05-23 18:19:30.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:30.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13016.3617ms +2024-05-23 18:19:31.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:31.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12821.3607ms +2024-05-23 18:19:32.476 +02:00 [ERR] There was an error when processing a message with id: '7d33df6ba8954dacb7a9c8f9084c3f83'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:19:32.481 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:19:32.482 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '7d33df6ba8954dacb7a9c8f9084c3f83', Correlation ID: 'f8ed2107cd634e0f9f0208dcd68755f8', retry 1/3... +2024-05-23 18:19:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:33.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:33.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:33.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:19:33.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:34.482 +02:00 [INF] Handling a message: friend_invited with ID: 7d33df6ba8954dacb7a9c8f9084c3f83, Correlation ID: f8ed2107cd634e0f9f0208dcd68755f8, retry: 1 +2024-05-23 18:19:34.513 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:19:34.513 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:34.513 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:34.545 +02:00 [INF] Received HTTP response headers after 31.0495ms - 200 +2024-05-23 18:19:34.545 +02:00 [INF] End processing HTTP request after 32.3318ms - 200 +2024-05-23 18:19:34.546 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:19:34.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:34.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 897.9703ms +2024-05-23 18:19:45.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:45.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12765.4329ms +2024-05-23 18:19:46.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:46.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13105.6639ms +2024-05-23 18:19:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:48.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:19:48.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:48.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:19:48.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:49.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:19:49.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 844.2754ms +2024-05-23 18:19:52.081 +02:00 [ERR] There was an error when processing a message with id: '7d33df6ba8954dacb7a9c8f9084c3f83'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:19:52.083 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:19:52.085 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '7d33df6ba8954dacb7a9c8f9084c3f83', Correlation ID: 'f8ed2107cd634e0f9f0208dcd68755f8', retry 2/3... +2024-05-23 18:19:54.086 +02:00 [INF] Handling a message: friend_invited with ID: 7d33df6ba8954dacb7a9c8f9084c3f83, Correlation ID: f8ed2107cd634e0f9f0208dcd68755f8, retry: 2 +2024-05-23 18:19:54.121 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:19:54.121 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:54.121 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:19:54.151 +02:00 [INF] Received HTTP response headers after 29.6648ms - 200 +2024-05-23 18:19:54.151 +02:00 [INF] End processing HTTP request after 30.1801ms - 200 +2024-05-23 18:19:54.151 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:20:00.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:00.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12582.7542ms +2024-05-23 18:20:00.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:00.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12429.086ms +2024-05-23 18:20:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:02.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:03.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:03.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:03.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:20:03.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:04.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:04.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 878.7343ms +2024-05-23 18:20:11.098 +02:00 [ERR] There was an error when processing a message with id: '7d33df6ba8954dacb7a9c8f9084c3f83'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:20:11.100 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:20:11.102 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '7d33df6ba8954dacb7a9c8f9084c3f83', Correlation ID: 'f8ed2107cd634e0f9f0208dcd68755f8', retry 3/3... +2024-05-23 18:20:13.102 +02:00 [INF] Handling a message: friend_invited with ID: 7d33df6ba8954dacb7a9c8f9084c3f83, Correlation ID: f8ed2107cd634e0f9f0208dcd68755f8, retry: 3 +2024-05-23 18:20:13.130 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 18:20:13.130 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:20:13.130 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 18:20:13.159 +02:00 [INF] Received HTTP response headers after 28.3398ms - 200 +2024-05-23 18:20:13.159 +02:00 [INF] End processing HTTP request after 29.1425ms - 200 +2024-05-23 18:20:13.159 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:20:14.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:14.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12343.802ms +2024-05-23 18:20:16.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:16.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12684.2685ms +2024-05-23 18:20:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:18.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:18.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:18.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:20:18.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:20.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:20.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1650.2743ms +2024-05-23 18:20:30.160 +02:00 [ERR] There was an error when processing a message with id: '7d33df6ba8954dacb7a9c8f9084c3f83'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:20:30.162 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855706 (0x1B84D9A) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:20:30.163 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '7d33df6ba8954dacb7a9c8f9084c3f83', Correlation ID: 'f8ed2107cd634e0f9f0208dcd68755f8', retry 4/3... +2024-05-23 18:20:30.163 +02:00 [ERR] Handling a message: friend_invited with ID: 7d33df6ba8954dacb7a9c8f9084c3f83, Correlation ID: f8ed2107cd634e0f9f0208dcd68755f8 failed +2024-05-23 18:20:30.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:30.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12950.9178ms +2024-05-23 18:20:30.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:30.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12374.5802ms +2024-05-23 18:20:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:33.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:33.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:33.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:20:33.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:34.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:34.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 850.9631ms +2024-05-23 18:20:45.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:45.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12562.3015ms +2024-05-23 18:20:46.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:46.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12677.1717ms +2024-05-23 18:20:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:48.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:20:48.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:48.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:20:48.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:49.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:20:49.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 852.6105ms +2024-05-23 18:21:00.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:00.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12468.9664ms +2024-05-23 18:21:00.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:00.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12388.1278ms +2024-05-23 18:21:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:02.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:03.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:03.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:03.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:21:03.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:04.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:04.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 862.4563ms +2024-05-23 18:21:15.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:15.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12563.3865ms +2024-05-23 18:21:16.183 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:16.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12785.4969ms +2024-05-23 18:21:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:18.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:18.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:18.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:21:18.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:19.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:19.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 824.9482ms +2024-05-23 18:21:21.835 +02:00 [INF] Received a message with ID: '71d5287919504aa0b4fdc0558d10e5c9', Correlation ID: '29b4feb1cfed4c98af26063d5f44c846', timestamp: 1716481281, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:21:21.836 +02:00 [INF] Handling a message: friend_invited with ID: 71d5287919504aa0b4fdc0558d10e5c9, Correlation ID: 29b4feb1cfed4c98af26063d5f44c846, retry: 0 +2024-05-23 18:21:21.835 +02:00 [INF] Received a message with ID: 'aa76952464e744ffae4392237a0394a0', Correlation ID: 'a08fcba7a25f4b7c9612154ce9e90999', timestamp: 1716481281, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:21:21.837 +02:00 [INF] Handling a message: friend_request_sent with ID: aa76952464e744ffae4392237a0394a0, Correlation ID: a08fcba7a25f4b7c9612154ce9e90999, retry: 0 +2024-05-23 18:21:21.881 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 18:21:21.881 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:21:21.882 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:21:21.915 +02:00 [INF] Received HTTP response headers after 32.6426ms - 200 +2024-05-23 18:21:21.915 +02:00 [INF] End processing HTTP request after 33.5183ms - 200 +2024-05-23 18:21:21.915 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:21:21.971 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 18:21:21.971 +02:00 [INF] Handled a message: friend_request_sent with ID: aa76952464e744ffae4392237a0394a0, Correlation ID: a08fcba7a25f4b7c9612154ce9e90999, retry: 0 +2024-05-23 18:21:23.318 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 18:21:23.318 +02:00 [INF] Handled a message: friend_invited with ID: 71d5287919504aa0b4fdc0558d10e5c9, Correlation ID: 29b4feb1cfed4c98af26063d5f44c846, retry: 0 +2024-05-23 18:21:30.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12663.1499ms +2024-05-23 18:21:31.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:31.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12746.1367ms +2024-05-23 18:21:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:33.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:33.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:33.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:21:33.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:35.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:35.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1659.1886ms +2024-05-23 18:21:45.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:45.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12513.3781ms +2024-05-23 18:21:46.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:46.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12625.7587ms +2024-05-23 18:21:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:48.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:21:48.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:48.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:21:48.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:50.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:21:50.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 2118.02ms +2024-05-23 18:22:00.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:00.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12702.2537ms +2024-05-23 18:22:01.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:01.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12704.8307ms +2024-05-23 18:22:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:02.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:03.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:03.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:03.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 18:22:03.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:05.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:05.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 1681.9488ms +2024-05-23 18:22:09.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:09.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:14.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:22:14.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:14.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:14.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2745ms +2024-05-23 18:22:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:22:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9162ms +2024-05-23 18:22:15.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:15.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12699.5722ms +2024-05-23 18:22:15.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:15.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12562.5528ms +2024-05-23 18:22:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:21.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:21.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12639.1375ms +2024-05-23 18:22:21.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:21.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:29.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:22:29.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:29.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:29.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5065ms +2024-05-23 18:22:30.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:30.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12821.5089ms +2024-05-23 18:22:32.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:32.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:34.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:34.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12710.1957ms +2024-05-23 18:22:36.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:36.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:22:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:44.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:44.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.4818ms +2024-05-23 18:22:45.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:45.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12592.2185ms +2024-05-23 18:22:47.619 +02:00 [INF] Received a message with ID: 'e5926fa13eee41f2a051aedac143537e', Correlation ID: '59f7bc67505f42649024e3d62a2a2871', timestamp: 1716481367, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:22:47.619 +02:00 [INF] Received a message with ID: '25417855e8e249199f9ada36be798fe7', Correlation ID: '05468f149585488a89e4c2fe8d1369c0', timestamp: 1716481367, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:22:47.619 +02:00 [INF] Handling a message: friend_invited with ID: e5926fa13eee41f2a051aedac143537e, Correlation ID: 59f7bc67505f42649024e3d62a2a2871, retry: 0 +2024-05-23 18:22:47.619 +02:00 [INF] Handling a message: friend_request_sent with ID: 25417855e8e249199f9ada36be798fe7, Correlation ID: 05468f149585488a89e4c2fe8d1369c0, retry: 0 +2024-05-23 18:22:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:47.645 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 18:22:47.645 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:22:47.645 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 18:22:47.677 +02:00 [INF] Received HTTP response headers after 31.679ms - 200 +2024-05-23 18:22:47.677 +02:00 [INF] End processing HTTP request after 32.0905ms - 200 +2024-05-23 18:22:47.677 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:22:47.744 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 18:22:47.744 +02:00 [INF] Handled a message: friend_request_sent with ID: 25417855e8e249199f9ada36be798fe7, Correlation ID: 05468f149585488a89e4c2fe8d1369c0, retry: 0 +2024-05-23 18:22:47.831 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 18:22:47.831 +02:00 [INF] Handled a message: friend_invited with ID: e5926fa13eee41f2a051aedac143537e, Correlation ID: 59f7bc67505f42649024e3d62a2a2871, retry: 0 +2024-05-23 18:22:49.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:49.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12743.691ms +2024-05-23 18:22:51.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:22:51.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:22:59.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:59.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:22:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1585ms +2024-05-23 18:23:00.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:00.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12765.6706ms +2024-05-23 18:23:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:04.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:04.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12785.6234ms +2024-05-23 18:23:06.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:06.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:14.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:23:14.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:14.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:14.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6172ms +2024-05-23 18:23:15.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:15.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12654.7393ms +2024-05-23 18:23:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:19.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:19.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12791.4336ms +2024-05-23 18:23:21.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:21.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:22.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:22.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:28.876 +02:00 [INF] Received a message with ID: '95a3b2ab5628415c80ae053287906cab', Correlation ID: '809e381e3586432baec76cb6fee7a8eb', timestamp: 1716481408, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 18:23:28.877 +02:00 [INF] Handling a message: friend_request_sent with ID: 95a3b2ab5628415c80ae053287906cab, Correlation ID: 809e381e3586432baec76cb6fee7a8eb, retry: 0 +2024-05-23 18:23:28.877 +02:00 [INF] Received a message with ID: '1175fe3d54af4090ba130db200a19fe7', Correlation ID: 'bc75be01472d48bf8edd27f20ffaa8ea', timestamp: 1716481408, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 18:23:28.879 +02:00 [INF] Handling a message: friend_invited with ID: 1175fe3d54af4090ba130db200a19fe7, Correlation ID: bc75be01472d48bf8edd27f20ffaa8ea, retry: 0 +2024-05-23 18:23:28.905 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 18:23:28.905 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:23:28.905 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:23:28.936 +02:00 [INF] Received HTTP response headers after 30.4669ms - 200 +2024-05-23 18:23:28.936 +02:00 [INF] End processing HTTP request after 31.0824ms - 200 +2024-05-23 18:23:28.936 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:23:29.013 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 18:23:29.013 +02:00 [INF] Handled a message: friend_request_sent with ID: 95a3b2ab5628415c80ae053287906cab, Correlation ID: 809e381e3586432baec76cb6fee7a8eb, retry: 0 +2024-05-23 18:23:29.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:23:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:29.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:29.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.4222ms +2024-05-23 18:23:30.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:30.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12690.8564ms +2024-05-23 18:23:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:34.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:34.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12788.8727ms +2024-05-23 18:23:35.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:35.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12857.4029ms +2024-05-23 18:23:35.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:23:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:44.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:44.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.6661ms +2024-05-23 18:23:45.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:45.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12756.5378ms +2024-05-23 18:23:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:48.091 +02:00 [ERR] There was an error when processing a message with id: '1175fe3d54af4090ba130db200a19fe7'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:23:48.094 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:23:48.098 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1175fe3d54af4090ba130db200a19fe7', Correlation ID: 'bc75be01472d48bf8edd27f20ffaa8ea', retry 1/3... +2024-05-23 18:23:48.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:48.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12716.1754ms +2024-05-23 18:23:50.101 +02:00 [INF] Handling a message: friend_invited with ID: 1175fe3d54af4090ba130db200a19fe7, Correlation ID: bc75be01472d48bf8edd27f20ffaa8ea, retry: 1 +2024-05-23 18:23:50.127 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 18:23:50.127 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:23:50.127 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:23:50.153 +02:00 [INF] Received HTTP response headers after 26.1196ms - 200 +2024-05-23 18:23:50.154 +02:00 [INF] End processing HTTP request after 26.4933ms - 200 +2024-05-23 18:23:50.154 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:23:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:23:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:23:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:59.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:23:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1783ms +2024-05-23 18:24:00.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:00.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12617.2079ms +2024-05-23 18:24:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:03.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:03.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12765.7156ms +2024-05-23 18:24:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:08.527 +02:00 [ERR] There was an error when processing a message with id: '1175fe3d54af4090ba130db200a19fe7'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:24:08.528 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:24:08.529 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1175fe3d54af4090ba130db200a19fe7', Correlation ID: 'bc75be01472d48bf8edd27f20ffaa8ea', retry 2/3... +2024-05-23 18:24:10.532 +02:00 [INF] Handling a message: friend_invited with ID: 1175fe3d54af4090ba130db200a19fe7, Correlation ID: bc75be01472d48bf8edd27f20ffaa8ea, retry: 2 +2024-05-23 18:24:10.562 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 18:24:10.562 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:24:10.563 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:24:10.589 +02:00 [INF] Received HTTP response headers after 26.2087ms - 200 +2024-05-23 18:24:10.589 +02:00 [INF] End processing HTTP request after 26.9022ms - 200 +2024-05-23 18:24:10.589 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:24:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:24:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:15.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:15.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 44.7821ms +2024-05-23 18:24:15.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:15.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12486.9084ms +2024-05-23 18:24:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:18.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:18.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12572.1813ms +2024-05-23 18:24:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:29.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:24:29.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:29.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.2982ms +2024-05-23 18:24:30.421 +02:00 [ERR] There was an error when processing a message with id: '1175fe3d54af4090ba130db200a19fe7'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:24:30.424 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:24:30.428 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1175fe3d54af4090ba130db200a19fe7', Correlation ID: 'bc75be01472d48bf8edd27f20ffaa8ea', retry 3/3... +2024-05-23 18:24:32.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:32.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 14472.4994ms +2024-05-23 18:24:32.427 +02:00 [INF] Handling a message: friend_invited with ID: 1175fe3d54af4090ba130db200a19fe7, Correlation ID: bc75be01472d48bf8edd27f20ffaa8ea, retry: 3 +2024-05-23 18:24:32.457 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 18:24:32.457 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:24:32.457 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 18:24:32.486 +02:00 [INF] Received HTTP response headers after 28.4075ms - 200 +2024-05-23 18:24:32.486 +02:00 [INF] End processing HTTP request after 29.0605ms - 200 +2024-05-23 18:24:32.486 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 18:24:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:35.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:35.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:35.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 15061.3313ms +2024-05-23 18:24:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:24:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:44.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:44.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3192ms +2024-05-23 18:24:45.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:45.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12828.2444ms +2024-05-23 18:24:47.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:47.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:48.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:48.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12623.8778ms +2024-05-23 18:24:50.624 +02:00 [ERR] There was an error when processing a message with id: '1175fe3d54af4090ba130db200a19fe7'. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 18:24:50.628 +02:00 [ERR] A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. +MongoDB.Driver.MongoWriteException: A write operation resulted in an error. WriteError: { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" }. + ---> MongoDB.Driver.MongoBulkWriteException`1[MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument]: A bulk write operation resulted in one or more errors. WriteErrors: [ { Category : "Uncategorized", Code : 10334, Message : "BSONObj size: 28855708 (0x1B84D9C) is invalid. Size must be between 0 and 16793600(16MB) First element: _id: "4ee4d85f-4d77-4f3b-98c6-0a5c884289a7"" } ]. + at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + --- End of inner exception stack trace --- + at MongoDB.Driver.MongoCollectionBase`1.UpdateOneAsync(FilterDefinition`1 filter, UpdateDefinition`1 update, UpdateOptions options, Func`3 bulkWriteAsync) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 41 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 18:24:50.631 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: '1175fe3d54af4090ba130db200a19fe7', Correlation ID: 'bc75be01472d48bf8edd27f20ffaa8ea', retry 4/3... +2024-05-23 18:24:50.632 +02:00 [ERR] Handling a message: friend_invited with ID: 1175fe3d54af4090ba130db200a19fe7, Correlation ID: bc75be01472d48bf8edd27f20ffaa8ea failed +2024-05-23 18:24:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:24:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:24:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:24:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6321ms +2024-05-23 18:25:00.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:00.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12464.7153ms +2024-05-23 18:25:02.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:02.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:03.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:03.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12766.4798ms +2024-05-23 18:25:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:05.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:14.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:25:14.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0072ms +2024-05-23 18:25:15.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:15.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12697.862ms +2024-05-23 18:25:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:18.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:18.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12878.9142ms +2024-05-23 18:25:20.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:20.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:29.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:25:29.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:30.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:30.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.074ms +2024-05-23 18:25:30.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:30.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12705.6027ms +2024-05-23 18:25:32.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:32.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:33.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:33.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12675.8293ms +2024-05-23 18:25:35.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:25:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:44.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:44.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.209ms +2024-05-23 18:25:45.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:45.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12608.6896ms +2024-05-23 18:25:47.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:48.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:48.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12788.4478ms +2024-05-23 18:25:50.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:25:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:25:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:25:59.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9899ms +2024-05-23 18:26:01.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:01.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13700.4199ms +2024-05-23 18:26:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:03.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:03.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12895.529ms +2024-05-23 18:26:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:26:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1961ms +2024-05-23 18:26:15.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:15.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12861.2147ms +2024-05-23 18:26:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:18.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:18.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12804.0547ms +2024-05-23 18:26:20.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:20.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:29.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:26:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:29.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:29.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.36ms +2024-05-23 18:26:30.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:30.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12709.4914ms +2024-05-23 18:26:32.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:33.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:33.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12853.9956ms +2024-05-23 18:26:35.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:35.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:26:44.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:44.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:44.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.9102ms +2024-05-23 18:26:45.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:45.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12960.0598ms +2024-05-23 18:26:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:48.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:48.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12786.9806ms +2024-05-23 18:26:50.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:26:50.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:59.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:26:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:59.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:26:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6794ms +2024-05-23 18:27:00.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:00.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12979.4423ms +2024-05-23 18:27:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:03.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:03.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12937.0143ms +2024-05-23 18:27:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:05.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:27:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:14.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:14.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7365ms +2024-05-23 18:27:15.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:15.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13012.1695ms +2024-05-23 18:27:17.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:17.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:18.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:18.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13005.1192ms +2024-05-23 18:27:20.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:20.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:29.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:27:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8108ms +2024-05-23 18:27:30.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:30.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13159.7692ms +2024-05-23 18:27:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:33.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:33.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12881.8046ms +2024-05-23 18:27:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:27:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:44.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:44.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.286ms +2024-05-23 18:27:45.589 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:45.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12950.8649ms +2024-05-23 18:27:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:47.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:48.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:48.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13081.7986ms +2024-05-23 18:27:50.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:27:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:27:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:27:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:00.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:00.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 91.6472ms +2024-05-23 18:28:00.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:00.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13216.6229ms +2024-05-23 18:28:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:03.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:03.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13084.1679ms +2024-05-23 18:28:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:28:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:14.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:14.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 38.348ms +2024-05-23 18:28:15.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:15.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12922.8983ms +2024-05-23 18:28:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:18.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:18.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12801.484ms +2024-05-23 18:28:20.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:29.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:28:29.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:29.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:29.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4404ms +2024-05-23 18:28:30.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:30.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12867.369ms +2024-05-23 18:28:32.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:33.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:33.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13048.814ms +2024-05-23 18:28:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:28:44.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:44.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:44.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8109ms +2024-05-23 18:28:45.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:45.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13121.1335ms +2024-05-23 18:28:47.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:48.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:48.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12949.2636ms +2024-05-23 18:28:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:28:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:59.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:28:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:28:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0911ms +2024-05-23 18:29:00.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:00.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13084.6643ms +2024-05-23 18:29:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:03.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:03.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13149.2057ms +2024-05-23 18:29:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:05.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:29:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:15.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:15.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 47.6266ms +2024-05-23 18:29:15.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:15.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13355.5273ms +2024-05-23 18:29:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:18.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:18.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12921.4183ms +2024-05-23 18:29:20.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:20.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:29.969 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:29:29.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:30.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:30.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.3378ms +2024-05-23 18:29:30.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:30.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12798.9657ms +2024-05-23 18:29:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:33.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:33.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12692.5968ms +2024-05-23 18:29:35.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:35.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:44.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:29:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:44.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.8986ms +2024-05-23 18:29:45.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:45.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12956.4473ms +2024-05-23 18:29:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:48.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:48.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13067.9398ms +2024-05-23 18:29:50.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:29:50.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:59.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:29:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:29:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.365ms +2024-05-23 18:30:00.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:00.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13192.3149ms +2024-05-23 18:30:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:03.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:03.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13014.9285ms +2024-05-23 18:30:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:30:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:14.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:14.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.6186ms +2024-05-23 18:30:15.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:15.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13045.3247ms +2024-05-23 18:30:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:18.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:18.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12925.9301ms +2024-05-23 18:30:20.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:29.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:30:29.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:30.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:30.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.976ms +2024-05-23 18:30:30.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:30.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12823.8522ms +2024-05-23 18:30:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:33.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:33.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12667.8574ms +2024-05-23 18:30:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:30:44.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.7818ms +2024-05-23 18:30:45.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:45.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12799.1264ms +2024-05-23 18:30:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:48.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:48.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12916.5879ms +2024-05-23 18:30:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:30:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:59.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:30:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:59.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:30:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.4208ms +2024-05-23 18:31:00.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:00.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12931.6384ms +2024-05-23 18:31:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:03.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:03.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13009.0725ms +2024-05-23 18:31:05.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:05.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:31:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:14.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:14.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1329ms +2024-05-23 18:31:15.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:15.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12999.6586ms +2024-05-23 18:31:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:18.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:18.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13006.8731ms +2024-05-23 18:31:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:29.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:31:29.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:30.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:30.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 43.1089ms +2024-05-23 18:31:30.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:30.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12592.9832ms +2024-05-23 18:31:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:33.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:33.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12725.2766ms +2024-05-23 18:31:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:44.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:31:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:45.148 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:45.148 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 192.1306ms +2024-05-23 18:31:45.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:45.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12598.7847ms +2024-05-23 18:31:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:48.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:48.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12597.9669ms +2024-05-23 18:31:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:31:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:31:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:31:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:00.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:00.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 144.4104ms +2024-05-23 18:32:01.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:01.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13503.4398ms +2024-05-23 18:32:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:04.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:04.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13907.3182ms +2024-05-23 18:32:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:32:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:14.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8178ms +2024-05-23 18:32:15.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:15.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13111.8278ms +2024-05-23 18:32:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:17.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:18.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:18.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12747.0474ms +2024-05-23 18:32:20.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:20.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:32:29.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:29.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2082ms +2024-05-23 18:32:30.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:30.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12596.3933ms +2024-05-23 18:32:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:32.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:33.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:33.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12869.5316ms +2024-05-23 18:32:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:32:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:44.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:44.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.751ms +2024-05-23 18:32:45.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:45.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12967.1947ms +2024-05-23 18:32:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:48.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:48.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13011.9946ms +2024-05-23 18:32:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:32:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:32:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:32:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8311ms +2024-05-23 18:33:00.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:00.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12768.0654ms +2024-05-23 18:33:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:03.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:03.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12771.1596ms +2024-05-23 18:33:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:33:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:14.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:14.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.0378ms +2024-05-23 18:33:15.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:15.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12692.5813ms +2024-05-23 18:33:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:17.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:18.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:18.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12868.7867ms +2024-05-23 18:33:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:20.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:33:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:29.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.7969ms +2024-05-23 18:33:30.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:30.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12802.6584ms +2024-05-23 18:33:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:33.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:33.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12733.2388ms +2024-05-23 18:33:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:33:44.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.9617ms +2024-05-23 18:33:45.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:45.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12779.0177ms +2024-05-23 18:33:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:47.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:48.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:48.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12653.0711ms +2024-05-23 18:33:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:33:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:59.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:33:59.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:33:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.5699ms +2024-05-23 18:34:01.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:01.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13909.2626ms +2024-05-23 18:34:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:03.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:03.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12967.7459ms +2024-05-23 18:34:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:34:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5866ms +2024-05-23 18:34:15.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:15.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12695.1803ms +2024-05-23 18:34:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:17.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:18.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:18.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12905.8291ms +2024-05-23 18:34:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:29.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:34:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:29.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.7327ms +2024-05-23 18:34:30.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:30.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12698.8062ms +2024-05-23 18:34:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:33.482 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:33.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12820.0407ms +2024-05-23 18:34:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:35.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:44.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:34:44.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:44.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:44.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8439ms +2024-05-23 18:34:45.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:45.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12964.0492ms +2024-05-23 18:34:47.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:47.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:48.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:48.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12858.2955ms +2024-05-23 18:34:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:34:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:59.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:34:59.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:34:59.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.078ms +2024-05-23 18:35:00.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:00.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12835.8034ms +2024-05-23 18:35:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:02.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:03.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:03.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12786.762ms +2024-05-23 18:35:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:14.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:35:14.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:14.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:14.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4114ms +2024-05-23 18:35:15.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:15.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12593.7638ms +2024-05-23 18:35:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:18.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:18.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12573.9547ms +2024-05-23 18:35:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:35:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.6101ms +2024-05-23 18:35:30.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:30.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12663.2042ms +2024-05-23 18:35:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:33.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:33.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12633.0653ms +2024-05-23 18:35:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:44.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:35:44.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:44.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:44.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.6663ms +2024-05-23 18:35:45.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:45.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12599.1033ms +2024-05-23 18:35:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:48.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:48.261 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12597.3832ms +2024-05-23 18:35:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:35:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:59.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:35:59.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:35:59.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.0653ms +2024-05-23 18:36:00.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:00.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12966.8369ms +2024-05-23 18:36:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:03.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:03.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12739.4598ms +2024-05-23 18:36:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:05.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:36:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:14.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.6232ms +2024-05-23 18:36:15.183 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:15.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12547.8285ms +2024-05-23 18:36:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:18.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:18.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12538.6533ms +2024-05-23 18:36:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:36:29.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:29.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:29.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.871ms +2024-05-23 18:36:30.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:30.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12930.3743ms +2024-05-23 18:36:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:32.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:33.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:33.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12789.5588ms +2024-05-23 18:36:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:44.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:36:44.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:44.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:44.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.4082ms +2024-05-23 18:36:45.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:45.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12650.5738ms +2024-05-23 18:36:47.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:47.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:48.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:48.417 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12753.8608ms +2024-05-23 18:36:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:36:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:59.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:36:59.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:59.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:36:59.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8728ms +2024-05-23 18:37:00.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:00.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12425.445ms +2024-05-23 18:37:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:03.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:03.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12702.2292ms +2024-05-23 18:37:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:37:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0683ms +2024-05-23 18:37:15.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:15.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12792.1609ms +2024-05-23 18:37:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:18.262 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:18.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12602.874ms +2024-05-23 18:37:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:29.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:37:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:29.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:29.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8264ms +2024-05-23 18:37:30.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:30.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12938.7384ms +2024-05-23 18:37:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:33.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:33.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12693.8582ms +2024-05-23 18:37:35.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:35.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:44.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:37:44.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:44.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:44.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4939ms +2024-05-23 18:37:45.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:45.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12789.4734ms +2024-05-23 18:37:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:47.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:48.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:48.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12864.0194ms +2024-05-23 18:37:50.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:37:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:59.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:37:59.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:37:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.2685ms +2024-05-23 18:38:00.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:00.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12691.4979ms +2024-05-23 18:38:02.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:02.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:03.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:03.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12579.0318ms +2024-05-23 18:38:05.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:05.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:38:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:14.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6697ms +2024-05-23 18:38:15.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:15.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12701.0165ms +2024-05-23 18:38:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:18.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:18.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12593.8064ms +2024-05-23 18:38:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:38:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:29.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:29.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9527ms +2024-05-23 18:38:30.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:30.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12562.1689ms +2024-05-23 18:38:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:33.189 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:33.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12526.1668ms +2024-05-23 18:38:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:38:44.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.5542ms +2024-05-23 18:38:45.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:45.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12664.6584ms +2024-05-23 18:38:47.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:48.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:48.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12672.1537ms +2024-05-23 18:38:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:38:50.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:59.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:38:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:38:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.6907ms +2024-05-23 18:39:00.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:00.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12756.723ms +2024-05-23 18:39:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:03.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:03.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12685.3267ms +2024-05-23 18:39:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:14.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:39:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:14.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:14.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.2323ms +2024-05-23 18:39:15.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:15.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12642.8782ms +2024-05-23 18:39:17.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:18.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:18.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12505.3356ms +2024-05-23 18:39:20.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:20.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:39:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:29.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:29.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.3258ms +2024-05-23 18:39:30.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:30.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12694.1044ms +2024-05-23 18:39:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:33.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:33.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12687.9917ms +2024-05-23 18:39:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:39:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:44.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9117ms +2024-05-23 18:39:45.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:45.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12635.5808ms +2024-05-23 18:39:47.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:47.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:48.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:48.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12609.3238ms +2024-05-23 18:39:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:39:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:39:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:39:59.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 36.2055ms +2024-05-23 18:40:00.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:00.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12961.4719ms +2024-05-23 18:40:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:03.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:03.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12956.2474ms +2024-05-23 18:40:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:40:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.5271ms +2024-05-23 18:40:15.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:15.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12742.0575ms +2024-05-23 18:40:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:18.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:18.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12544.8245ms +2024-05-23 18:40:20.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:29.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:40:29.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:29.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:29.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.2535ms +2024-05-23 18:40:30.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:30.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12573.1317ms +2024-05-23 18:40:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:33.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:33.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12728.1315ms +2024-05-23 18:40:35.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:40:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:44.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:44.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1414ms +2024-05-23 18:40:45.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:45.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12574.0633ms +2024-05-23 18:40:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:47.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:48.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:48.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12672.2912ms +2024-05-23 18:40:50.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:40:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:40:59.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:40:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6226ms +2024-05-23 18:41:00.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:00.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12734.7737ms +2024-05-23 18:41:02.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:03.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:03.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12624.0863ms +2024-05-23 18:41:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:41:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0634ms +2024-05-23 18:41:15.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:15.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12756.1206ms +2024-05-23 18:41:17.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:17.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:18.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:18.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12606.828ms +2024-05-23 18:41:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:29.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:41:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7857ms +2024-05-23 18:41:30.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:30.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12802.3919ms +2024-05-23 18:41:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:33.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:33.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12735.0124ms +2024-05-23 18:41:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:41:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.568ms +2024-05-23 18:41:45.220 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:45.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12585.5463ms +2024-05-23 18:41:47.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:48.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:48.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12625.9732ms +2024-05-23 18:41:50.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:41:50.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:41:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:41:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:00.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:00.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 272.3584ms +2024-05-23 18:42:00.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:00.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12861.4923ms +2024-05-23 18:42:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:03.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:03.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12730.1824ms +2024-05-23 18:42:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:05.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:14.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:42:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:14.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:14.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9533ms +2024-05-23 18:42:15.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:15.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12500.7321ms +2024-05-23 18:42:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:18.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:18.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12618.8639ms +2024-05-23 18:42:20.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:42:29.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8641ms +2024-05-23 18:42:30.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:30.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12610.3807ms +2024-05-23 18:42:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:33.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:33.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12889.2021ms +2024-05-23 18:42:35.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:42:44.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8458ms +2024-05-23 18:42:45.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:45.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12570.2964ms +2024-05-23 18:42:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:48.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:48.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12931.6212ms +2024-05-23 18:42:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:42:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:42:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:42:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:00.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:00.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 48.4951ms +2024-05-23 18:43:00.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:00.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12657.0568ms +2024-05-23 18:43:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:03.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:03.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12611.421ms +2024-05-23 18:43:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:43:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:14.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:14.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5558ms +2024-05-23 18:43:15.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:15.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12746.0304ms +2024-05-23 18:43:17.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:18.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:18.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12894.6431ms +2024-05-23 18:43:20.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:43:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:29.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0076ms +2024-05-23 18:43:30.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:30.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12687.8954ms +2024-05-23 18:43:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:33.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:33.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12641.1339ms +2024-05-23 18:43:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:43:44.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:44.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:44.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.7784ms +2024-05-23 18:43:45.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:45.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12705.7437ms +2024-05-23 18:43:47.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:48.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:48.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12849.4206ms +2024-05-23 18:43:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:43:50.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:43:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:43:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3253ms +2024-05-23 18:44:00.742 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:00.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13106.9176ms +2024-05-23 18:44:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:04.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:04.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13373.387ms +2024-05-23 18:44:05.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:05.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:44:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.3064ms +2024-05-23 18:44:15.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:15.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12814.253ms +2024-05-23 18:44:17.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:17.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:18.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:18.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12678.5023ms +2024-05-23 18:44:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:29.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:44:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:30.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:30.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 248.2376ms +2024-05-23 18:44:30.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:30.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12703.8276ms +2024-05-23 18:44:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:32.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:33.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:33.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12686.1615ms +2024-05-23 18:44:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:44:44.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:44.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:44.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1205ms +2024-05-23 18:44:45.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:45.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12559.2416ms +2024-05-23 18:44:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:48.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:48.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12796.5476ms +2024-05-23 18:44:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:44:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:59.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:44:59.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:44:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.1029ms +2024-05-23 18:45:00.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:00.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12598.5569ms +2024-05-23 18:45:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:03.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:03.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12780.65ms +2024-05-23 18:45:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:45:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:14.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:14.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1168ms +2024-05-23 18:45:15.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:15.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13097.0596ms +2024-05-23 18:45:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:18.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:18.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12648.4666ms +2024-05-23 18:45:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:29.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:45:29.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:29.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:29.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0307ms +2024-05-23 18:45:30.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:30.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12863.6934ms +2024-05-23 18:45:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:32.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:33.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:33.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12891.1592ms +2024-05-23 18:45:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:45:44.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:45.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:45.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 41.5119ms +2024-05-23 18:45:45.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:45.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12745.9201ms +2024-05-23 18:45:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:48.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:48.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12739.3831ms +2024-05-23 18:45:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:45:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:45:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:45:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.6055ms +2024-05-23 18:46:00.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:00.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12751.4168ms +2024-05-23 18:46:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:03.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:03.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12823.289ms +2024-05-23 18:46:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:14.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:46:14.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:14.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:14.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.4743ms +2024-05-23 18:46:15.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:15.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12687.4736ms +2024-05-23 18:46:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:18.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:18.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12963.5517ms +2024-05-23 18:46:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:29.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:46:29.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:30.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:30.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.6517ms +2024-05-23 18:46:30.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:30.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12531.6313ms +2024-05-23 18:46:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:33.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:33.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12731.5368ms +2024-05-23 18:46:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:35.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:46:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:44.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.4569ms +2024-05-23 18:46:45.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:45.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12565.3388ms +2024-05-23 18:46:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:48.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:48.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13326.4721ms +2024-05-23 18:46:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:46:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:59.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:46:59.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:46:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8138ms +2024-05-23 18:47:00.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:00.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12899.5174ms +2024-05-23 18:47:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:03.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:03.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13237.9645ms +2024-05-23 18:47:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:47:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:14.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.0856ms +2024-05-23 18:47:15.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:15.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13137.3256ms +2024-05-23 18:47:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:18.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:18.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12528.8328ms +2024-05-23 18:47:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:29.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:47:29.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:29.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3433ms +2024-05-23 18:47:30.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:30.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13091.4484ms +2024-05-23 18:47:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:33.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:33.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12788.5777ms +2024-05-23 18:47:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:47:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:44.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.728ms +2024-05-23 18:47:45.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:45.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12662.5389ms +2024-05-23 18:47:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:48.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:48.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12663.4473ms +2024-05-23 18:47:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:47:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:59.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:47:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:47:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2123ms +2024-05-23 18:48:00.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:00.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12846.1249ms +2024-05-23 18:48:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:03.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:03.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12925.6346ms +2024-05-23 18:48:05.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:05.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:14.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:48:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.2101ms +2024-05-23 18:48:15.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:15.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12759.2708ms +2024-05-23 18:48:17.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:17.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:18.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:18.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12653.7956ms +2024-05-23 18:48:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:48:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.6081ms +2024-05-23 18:48:30.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:30.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12701.1915ms +2024-05-23 18:48:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:33.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:33.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12759.8818ms +2024-05-23 18:48:35.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:35.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:48:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:44.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:44.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0465ms +2024-05-23 18:48:45.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:45.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12857.2192ms +2024-05-23 18:48:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:48.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:48.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12894.3281ms +2024-05-23 18:48:50.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:48:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:59.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:48:59.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:48:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.9158ms +2024-05-23 18:49:00.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:00.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12548.0585ms +2024-05-23 18:49:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:02.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:03.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:03.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12643.932ms +2024-05-23 18:49:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:14.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:49:14.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:15.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:15.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 441.2764ms +2024-05-23 18:49:15.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:15.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13027.0429ms +2024-05-23 18:49:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:18.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:18.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12890.3638ms +2024-05-23 18:49:20.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:49:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:29.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.9041ms +2024-05-23 18:49:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:30.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12668.3599ms +2024-05-23 18:49:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:33.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:33.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12543.2413ms +2024-05-23 18:49:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:44.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:49:44.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:44.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:44.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5771ms +2024-05-23 18:49:45.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:45.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12629.4576ms +2024-05-23 18:49:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:48.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:48.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12682.0586ms +2024-05-23 18:49:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:49:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:49:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:49:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.9068ms +2024-05-23 18:50:00.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:00.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12637.8685ms +2024-05-23 18:50:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:03.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:03.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12840.7247ms +2024-05-23 18:50:05.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:05.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:14.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:50:14.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:14.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:14.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4459ms +2024-05-23 18:50:15.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:15.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12730.7874ms +2024-05-23 18:50:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:18.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:18.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12912.3671ms +2024-05-23 18:50:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:20.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:29.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:50:29.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:29.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:29.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.4421ms +2024-05-23 18:50:30.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:30.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12738.4169ms +2024-05-23 18:50:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:32.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:33.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:33.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12717.6988ms +2024-05-23 18:50:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:50:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:44.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9744ms +2024-05-23 18:50:45.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:45.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13089.8044ms +2024-05-23 18:50:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:48.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:48.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12650.8317ms +2024-05-23 18:50:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:50:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:50:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:50:59.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6191ms +2024-05-23 18:51:00.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:00.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12576.9575ms +2024-05-23 18:51:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:02.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:03.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:03.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12593.4827ms +2024-05-23 18:51:05.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:05.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:51:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.2497ms +2024-05-23 18:51:15.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:15.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12807.3019ms +2024-05-23 18:51:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:18.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:18.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12623.1895ms +2024-05-23 18:51:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:51:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:29.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:29.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0769ms +2024-05-23 18:51:30.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:30.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12798.0152ms +2024-05-23 18:51:32.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:32.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:33.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:33.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12833.749ms +2024-05-23 18:51:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:35.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:51:44.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:44.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:44.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9692ms +2024-05-23 18:51:45.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:45.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12758.9418ms +2024-05-23 18:51:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:48.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:48.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13197.3979ms +2024-05-23 18:51:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:51:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:59.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:51:59.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:51:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4196ms +2024-05-23 18:52:00.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:00.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12706.0049ms +2024-05-23 18:52:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:03.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:03.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12785.0272ms +2024-05-23 18:52:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:05.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:52:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:14.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:14.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8426ms +2024-05-23 18:52:15.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:15.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12600.457ms +2024-05-23 18:52:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:18.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:18.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12628.8305ms +2024-05-23 18:52:20.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:52:29.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4923ms +2024-05-23 18:52:30.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:30.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12617.7009ms +2024-05-23 18:52:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:33.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:33.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12725.0011ms +2024-05-23 18:52:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:35.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:52:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:44.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:44.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0388ms +2024-05-23 18:52:45.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:45.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12618.1041ms +2024-05-23 18:52:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:48.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:48.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12787.2521ms +2024-05-23 18:52:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:52:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:52:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:59.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:52:59.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.8102ms +2024-05-23 18:53:00.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:00.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12687.1967ms +2024-05-23 18:53:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:03.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:03.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12707.8622ms +2024-05-23 18:53:05.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:53:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.9499ms +2024-05-23 18:53:15.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:15.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12968.1795ms +2024-05-23 18:53:17.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:17.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:18.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:18.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12896.6354ms +2024-05-23 18:53:20.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:20.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:29.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:53:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:29.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.2331ms +2024-05-23 18:53:30.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:30.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12647.0403ms +2024-05-23 18:53:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:33.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:33.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12824.6911ms +2024-05-23 18:53:35.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:53:44.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:44.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:44.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.7478ms +2024-05-23 18:53:45.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:45.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12860.3381ms +2024-05-23 18:53:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:48.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:48.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13008.8283ms +2024-05-23 18:53:50.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:53:50.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:59.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:53:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:59.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:53:59.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3837ms +2024-05-23 18:54:00.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:00.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12692.6049ms +2024-05-23 18:54:02.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:03.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:03.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12859.8074ms +2024-05-23 18:54:05.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:05.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:14.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:54:14.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:14.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.179ms +2024-05-23 18:54:15.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:15.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13248.997ms +2024-05-23 18:54:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:18.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:18.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12724.3525ms +2024-05-23 18:54:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:29.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:54:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7714ms +2024-05-23 18:54:31.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:31.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13404.8221ms +2024-05-23 18:54:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:32.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:33.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:33.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12730.5226ms +2024-05-23 18:54:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:44.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:54:44.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:44.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:44.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 36.4772ms +2024-05-23 18:54:45.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:45.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12740.396ms +2024-05-23 18:54:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:47.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:48.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:48.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12703.0786ms +2024-05-23 18:54:50.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:54:50.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:54:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:59.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:54:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.926ms +2024-05-23 18:55:00.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:00.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12697.8815ms +2024-05-23 18:55:02.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:02.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:03.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:03.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13204.1838ms +2024-05-23 18:55:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:05.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:55:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:14.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:14.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3922ms +2024-05-23 18:55:15.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:15.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12599.4656ms +2024-05-23 18:55:17.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:17.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:18.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:18.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12682.5898ms +2024-05-23 18:55:20.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:20.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:55:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:29.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.0617ms +2024-05-23 18:55:30.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:30.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12917.4087ms +2024-05-23 18:55:32.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:33.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:33.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12647.2867ms +2024-05-23 18:55:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:55:44.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:44.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:44.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.3323ms +2024-05-23 18:55:45.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:45.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12646.2002ms +2024-05-23 18:55:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:48.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:48.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12516.4294ms +2024-05-23 18:55:50.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:55:50.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:55:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:55:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.3577ms +2024-05-23 18:56:00.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:00.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12606.0138ms +2024-05-23 18:56:02.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:02.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:03.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:03.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12680.2847ms +2024-05-23 18:56:05.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:05.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:56:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.516ms +2024-05-23 18:56:16.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:16.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13920.2875ms +2024-05-23 18:56:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:19.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:19.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13969.3682ms +2024-05-23 18:56:20.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:20.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:29.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:56:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.446ms +2024-05-23 18:56:30.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:30.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12636.4091ms +2024-05-23 18:56:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:33.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:33.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12831.4999ms +2024-05-23 18:56:35.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:35.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:56:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3857ms +2024-05-23 18:56:45.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:45.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12742.5612ms +2024-05-23 18:56:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:48.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:48.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12795.4888ms +2024-05-23 18:56:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:56:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:56:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:56:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0847ms +2024-05-23 18:57:00.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:00.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12643.2099ms +2024-05-23 18:57:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:03.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:03.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12614.8829ms +2024-05-23 18:57:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:05.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:57:14.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:14.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:14.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.0115ms +2024-05-23 18:57:15.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:15.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12734.5071ms +2024-05-23 18:57:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:18.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:18.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12718.4663ms +2024-05-23 18:57:20.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:20.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:29.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:57:29.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0412ms +2024-05-23 18:57:30.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:30.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12669.9341ms +2024-05-23 18:57:32.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:32.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:33.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:33.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12603.1075ms +2024-05-23 18:57:35.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:57:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:44.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.842ms +2024-05-23 18:57:45.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:45.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12745.6093ms +2024-05-23 18:57:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:48.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:48.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12780.6197ms +2024-05-23 18:57:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:57:50.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:57:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:57:59.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5553ms +2024-05-23 18:58:00.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:00.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12718.7615ms +2024-05-23 18:58:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:03.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:03.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12792.007ms +2024-05-23 18:58:05.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:05.661 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:58:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4267ms +2024-05-23 18:58:15.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:15.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12827.1824ms +2024-05-23 18:58:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:18.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:18.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12785.7596ms +2024-05-23 18:58:20.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:20.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:29.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:58:29.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:29.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:29.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.9921ms +2024-05-23 18:58:30.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:30.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12824.1619ms +2024-05-23 18:58:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:33.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:33.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12928.5791ms +2024-05-23 18:58:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:35.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:44.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:58:44.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:44.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:44.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.5325ms +2024-05-23 18:58:45.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:45.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12831.4589ms +2024-05-23 18:58:47.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:48.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:48.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12739.4234ms +2024-05-23 18:58:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:58:50.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:58:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:58:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7724ms +2024-05-23 18:59:00.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:00.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12743.3015ms +2024-05-23 18:59:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:03.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:03.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12683.9435ms +2024-05-23 18:59:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:05.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:59:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0324ms +2024-05-23 18:59:15.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:15.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12792.5094ms +2024-05-23 18:59:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:18.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:18.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12711.611ms +2024-05-23 18:59:20.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:20.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:29.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:59:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:29.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:29.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3087ms +2024-05-23 18:59:30.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:30.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12850.9735ms +2024-05-23 18:59:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:33.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:33.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12586.871ms +2024-05-23 18:59:35.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:35.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:44.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:59:44.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:45.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:45.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.0251ms +2024-05-23 18:59:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12877.3288ms +2024-05-23 18:59:47.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:47.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:48.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:48.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12947.8787ms +2024-05-23 18:59:50.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 18:59:50.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 18:59:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 18:59:59.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6025ms +2024-05-23 19:00:01.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:01.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13540.4913ms +2024-05-23 19:00:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:03.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:03.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12664.494ms +2024-05-23 19:00:05.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:05.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:00:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1206ms +2024-05-23 19:00:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:17.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:17.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 15056.7188ms +2024-05-23 19:00:20.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:20.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 14792.248ms +2024-05-23 19:00:20.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:20.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:00:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:29.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.0189ms +2024-05-23 19:00:30.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:30.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12729.5642ms +2024-05-23 19:00:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:32.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:33.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:33.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12772.8029ms +2024-05-23 19:00:35.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:35.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:00:44.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:44.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0177ms +2024-05-23 19:00:45.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:45.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12617.9783ms +2024-05-23 19:00:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:48.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:48.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12577.1977ms +2024-05-23 19:00:50.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:00:50.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:00:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:59.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:00:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3797ms +2024-05-23 19:01:00.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:00.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12668.27ms +2024-05-23 19:01:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:03.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:03.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12827.1974ms +2024-05-23 19:01:05.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:05.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:01:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:14.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:14.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.9101ms +2024-05-23 19:01:15.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:15.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12664.4687ms +2024-05-23 19:01:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:18.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:18.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12751.3448ms +2024-05-23 19:01:20.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:20.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:01:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:30.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:30.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 160.03ms +2024-05-23 19:01:30.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:30.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12606.4264ms +2024-05-23 19:01:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:33.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:33.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12618.2447ms +2024-05-23 19:01:35.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:35.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:44.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:01:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:44.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:44.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1286ms +2024-05-23 19:01:45.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:45.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13077.4522ms +2024-05-23 19:01:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:48.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:48.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12933.5139ms +2024-05-23 19:01:53.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:53.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:58.154 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:01:58.154 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:01:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:59.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:01:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.6278ms +2024-05-23 19:02:00.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:00.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13362.1869ms +2024-05-23 19:02:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:06.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:06.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12439.6406ms +2024-05-23 19:02:06.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:06.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:11.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:11.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12969.5483ms +2024-05-23 19:02:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:02:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0727ms +2024-05-23 19:02:16.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:16.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13387.3932ms +2024-05-23 19:02:17.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:17.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:19.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:19.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13093.0822ms +2024-05-23 19:02:29.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:29.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12500.0809ms +2024-05-23 19:02:29.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:29.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:29.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:02:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:29.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:29.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.879ms +2024-05-23 19:02:30.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:30.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12546.6227ms +2024-05-23 19:02:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:32.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:42.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:42.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12774.0642ms +2024-05-23 19:02:44.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:44.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:02:44.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:44.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:44.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.1633ms +2024-05-23 19:02:45.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:45.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12820.0109ms +2024-05-23 19:02:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:47.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:57.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:57.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12701.146ms +2024-05-23 19:02:59.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:02:59.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:02:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:59.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:02:59.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8256ms +2024-05-23 19:03:00.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:00.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12849.8241ms +2024-05-23 19:03:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:12.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:12.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12560.5373ms +2024-05-23 19:03:14.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:14.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:14.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:03:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:14.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:14.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7574ms +2024-05-23 19:03:15.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:15.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13033.2328ms +2024-05-23 19:03:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:17.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:27.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:27.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12762.3772ms +2024-05-23 19:03:29.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:29.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:29.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:03:29.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.096ms +2024-05-23 19:03:30.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:30.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12689.1163ms +2024-05-23 19:03:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:42.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:42.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12604.0398ms +2024-05-23 19:03:44.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:44.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:44.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:03:44.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:44.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:44.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.4814ms +2024-05-23 19:03:45.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:45.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12737.9103ms +2024-05-23 19:03:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:57.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:57.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12789.1831ms +2024-05-23 19:03:59.740 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:03:59.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:03:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:03:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.942ms +2024-05-23 19:04:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:00.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12881.4879ms +2024-05-23 19:04:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:12.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 12831.6871ms +2024-05-23 19:04:14.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:14.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:14.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:14.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.5328ms +2024-05-23 19:04:14.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:04:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:15.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:15.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 139.2999ms +2024-05-23 19:04:15.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:15.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 13103.3684ms +2024-05-23 19:04:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:17.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.9236ms +2024-05-23 19:04:29.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:29.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:29.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:29.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.9858ms +2024-05-23 19:04:29.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:04:29.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:29.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:29.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.6448ms +2024-05-23 19:04:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:32.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.4621ms +2024-05-23 19:04:44.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:44.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:44.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:44.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.1361ms +2024-05-23 19:04:44.790 +02:00 [INF] Received a message with ID: '0b71287278b2462f8fe049b6615344be', Correlation ID: '5f2b120aecbf44ad979c9279dc5c77c0', timestamp: 1716483884, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:04:44.790 +02:00 [INF] Received a message with ID: '3a178946ac054fcf86288a2a4b54818a', Correlation ID: '51e18da280f3412a9ec7c5dee41d2ffb', timestamp: 1716483884, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:04:44.790 +02:00 [INF] Handling a message: friend_invited with ID: 0b71287278b2462f8fe049b6615344be, Correlation ID: 5f2b120aecbf44ad979c9279dc5c77c0, retry: 0 +2024-05-23 19:04:44.790 +02:00 [INF] Handling a message: friend_request_sent with ID: 3a178946ac054fcf86288a2a4b54818a, Correlation ID: 51e18da280f3412a9ec7c5dee41d2ffb, retry: 0 +2024-05-23 19:04:44.820 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 19:04:44.820 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:44.820 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:44.855 +02:00 [INF] Received HTTP response headers after 34.8587ms - 200 +2024-05-23 19:04:44.855 +02:00 [INF] End processing HTTP request after 35.302ms - 200 +2024-05-23 19:04:44.855 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:04:44.915 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 19:04:44.915 +02:00 [INF] Handled a message: friend_request_sent with ID: 3a178946ac054fcf86288a2a4b54818a, Correlation ID: 51e18da280f3412a9ec7c5dee41d2ffb, retry: 0 +2024-05-23 19:04:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:04:44.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:44.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:44.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9237ms +2024-05-23 19:04:45.001 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to bf759205-b6b2-4f41-ad79-9ab58ccff882. +2024-05-23 19:04:45.002 +02:00 [INF] Handled a message: friend_invited with ID: 0b71287278b2462f8fe049b6615344be, Correlation ID: 5f2b120aecbf44ad979c9279dc5c77c0, retry: 0 +2024-05-23 19:04:45.404 +02:00 [INF] Received a message with ID: 'fe5b769eff804fb9937490f428ac1937', Correlation ID: 'c525c7fddf204181af32bafe28771e2c', timestamp: 1716483885, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:04:45.404 +02:00 [INF] Received a message with ID: '54ee1eea6740439487a0fcdf58fa5abd', Correlation ID: '7df6aa32686d4090b42aa2a60cca3819', timestamp: 1716483885, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:04:45.405 +02:00 [INF] Handling a message: friend_invited with ID: fe5b769eff804fb9937490f428ac1937, Correlation ID: c525c7fddf204181af32bafe28771e2c, retry: 0 +2024-05-23 19:04:45.405 +02:00 [INF] Handling a message: friend_request_sent with ID: 54ee1eea6740439487a0fcdf58fa5abd, Correlation ID: 7df6aa32686d4090b42aa2a60cca3819, retry: 0 +2024-05-23 19:04:45.448 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 19:04:45.448 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:45.449 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:45.477 +02:00 [INF] Received HTTP response headers after 27.7867ms - 200 +2024-05-23 19:04:45.477 +02:00 [INF] End processing HTTP request after 28.8347ms - 200 +2024-05-23 19:04:45.477 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:04:45.539 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 19:04:45.539 +02:00 [INF] Handled a message: friend_request_sent with ID: 54ee1eea6740439487a0fcdf58fa5abd, Correlation ID: 7df6aa32686d4090b42aa2a60cca3819, retry: 0 +2024-05-23 19:04:45.630 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 19:04:45.631 +02:00 [INF] Handled a message: friend_invited with ID: fe5b769eff804fb9937490f428ac1937, Correlation ID: c525c7fddf204181af32bafe28771e2c, retry: 0 +2024-05-23 19:04:46.602 +02:00 [INF] Received a message with ID: '40e1fa5b87484e138d740c5868dce6b1', Correlation ID: '519c6d79ecfc4e9a9883217e4e26a405', timestamp: 1716483886, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:04:46.602 +02:00 [INF] Handling a message: friend_invited with ID: 40e1fa5b87484e138d740c5868dce6b1, Correlation ID: 519c6d79ecfc4e9a9883217e4e26a405, retry: 0 +2024-05-23 19:04:46.602 +02:00 [INF] Received a message with ID: '814cd5f9cbeb4b2598d5ed221f1601b1', Correlation ID: 'c2bb3b02e7ef49448f7bce444b09acc8', timestamp: 1716483886, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:04:46.603 +02:00 [INF] Handling a message: friend_request_sent with ID: 814cd5f9cbeb4b2598d5ed221f1601b1, Correlation ID: c2bb3b02e7ef49448f7bce444b09acc8, retry: 0 +2024-05-23 19:04:46.630 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 19:04:46.630 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:46.630 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 19:04:46.659 +02:00 [INF] Received HTTP response headers after 28.7645ms - 200 +2024-05-23 19:04:46.659 +02:00 [INF] End processing HTTP request after 29.0782ms - 200 +2024-05-23 19:04:46.659 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:04:46.717 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:04:46.717 +02:00 [INF] Handled a message: friend_request_sent with ID: 814cd5f9cbeb4b2598d5ed221f1601b1, Correlation ID: c2bb3b02e7ef49448f7bce444b09acc8, retry: 0 +2024-05-23 19:04:46.811 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:04:46.811 +02:00 [INF] Handled a message: friend_invited with ID: 40e1fa5b87484e138d740c5868dce6b1, Correlation ID: 519c6d79ecfc4e9a9883217e4e26a405, retry: 0 +2024-05-23 19:04:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:47.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:47.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.8286ms +2024-05-23 19:04:59.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:04:59.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:59.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:59.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.1813ms +2024-05-23 19:04:59.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:04:59.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:59.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:04:59.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9184ms +2024-05-23 19:05:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:02.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:02.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:02.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.8144ms +2024-05-23 19:05:14.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:14.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:14.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:14.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.895ms +2024-05-23 19:05:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:05:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4529ms +2024-05-23 19:05:17.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:17.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:17.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:17.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.6484ms +2024-05-23 19:05:29.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:29.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:29.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:29.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.8322ms +2024-05-23 19:05:29.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:05:29.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:29.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:29.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.955ms +2024-05-23 19:05:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:32.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:32.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:32.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 33.0552ms +2024-05-23 19:05:44.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:44.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:44.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:44.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 33.3211ms +2024-05-23 19:05:44.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:05:44.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:44.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:44.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4715ms +2024-05-23 19:05:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:47.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:47.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.0516ms +2024-05-23 19:05:59.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:05:59.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:59.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:59.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.8599ms +2024-05-23 19:05:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:05:59.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:05:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0391ms +2024-05-23 19:06:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:02.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:02.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.6706ms +2024-05-23 19:06:14.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:14.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:14.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:14.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.7076ms +2024-05-23 19:06:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:06:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:14.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:14.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0342ms +2024-05-23 19:06:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:17.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:17.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.6563ms +2024-05-23 19:06:29.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:29.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:29.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:29.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.4212ms +2024-05-23 19:06:29.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:06:29.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:29.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:29.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8602ms +2024-05-23 19:06:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:32.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.316ms +2024-05-23 19:06:44.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:44.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:44.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:44.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.7442ms +2024-05-23 19:06:44.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:06:44.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:44.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:44.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.8395ms +2024-05-23 19:06:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:47.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:47.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.7385ms +2024-05-23 19:06:59.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:06:59.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:59.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:59.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.0857ms +2024-05-23 19:06:59.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:06:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:59.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:06:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1535ms +2024-05-23 19:07:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:02.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:02.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:02.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.0721ms +2024-05-23 19:07:14.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:14.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:14.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:14.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.254ms +2024-05-23 19:07:14.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:07:14.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:14.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:14.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.04ms +2024-05-23 19:07:17.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:17.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:17.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:17.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.3335ms +2024-05-23 19:07:29.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:29.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:29.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:29.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.63ms +2024-05-23 19:07:29.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:07:29.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:29.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:29.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.221ms +2024-05-23 19:07:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:32.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:32.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.1268ms +2024-05-23 19:07:44.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:44.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:44.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:44.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.7088ms +2024-05-23 19:07:44.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:07:44.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:44.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:44.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.6055ms +2024-05-23 19:07:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:47.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:47.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:47.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.8444ms +2024-05-23 19:07:59.742 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:07:59.743 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:59.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:59.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.1687ms +2024-05-23 19:07:59.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:07:59.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:59.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:07:59.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 36.5007ms +2024-05-23 19:08:02.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:02.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:02.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:02.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 25.702ms +2024-05-23 19:08:14.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:14.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:14.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:14.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 33.2654ms +2024-05-23 19:08:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:08:14.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:14.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.6819ms +2024-05-23 19:08:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:17.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:17.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.0081ms +2024-05-23 19:08:29.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:29.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:29.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:29.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.2354ms +2024-05-23 19:08:29.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:08:29.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 36.527ms +2024-05-23 19:08:32.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:32.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.4677ms +2024-05-23 19:08:44.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:44.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:44.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:44.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.2744ms +2024-05-23 19:08:44.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:08:44.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:44.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:44.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0521ms +2024-05-23 19:08:47.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:47.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:47.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:47.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.2288ms +2024-05-23 19:08:59.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:08:59.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:59.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:59.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.8648ms +2024-05-23 19:08:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:08:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:59.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:08:59.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 37.37ms +2024-05-23 19:09:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:02.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.8225ms +2024-05-23 19:09:14.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:14.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:14.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:14.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.4915ms +2024-05-23 19:09:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:09:14.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:14.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:14.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3774ms +2024-05-23 19:09:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:17.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:17.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.6261ms +2024-05-23 19:09:29.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:29.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:29.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:29.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.9137ms +2024-05-23 19:09:29.998 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:09:29.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:30.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:30.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5552ms +2024-05-23 19:09:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:32.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.6135ms +2024-05-23 19:09:44.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:44.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:44.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:44.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.3375ms +2024-05-23 19:09:44.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:09:44.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:44.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:44.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8ms +2024-05-23 19:09:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:47.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:47.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:47.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.0269ms +2024-05-23 19:09:59.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:09:59.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:59.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:59.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.4401ms +2024-05-23 19:09:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:09:59.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:09:59.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.8847ms +2024-05-23 19:10:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:02.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:02.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 26.4868ms +2024-05-23 19:10:14.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:14.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:14.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:14.775 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.9307ms +2024-05-23 19:10:14.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:10:14.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:14.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:14.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0666ms +2024-05-23 19:10:17.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:17.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:17.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:17.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.3541ms +2024-05-23 19:10:29.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:29.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:29.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:29.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.8908ms +2024-05-23 19:10:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:10:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:29.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.166ms +2024-05-23 19:10:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.7776ms +2024-05-23 19:10:44.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:44.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:44.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:44.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 34.014ms +2024-05-23 19:10:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:10:44.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:44.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:44.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.0681ms +2024-05-23 19:10:47.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:47.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:47.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:47.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.4186ms +2024-05-23 19:10:59.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:10:59.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:59.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:59.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.3297ms +2024-05-23 19:10:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:10:59.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:59.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:10:59.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.7672ms +2024-05-23 19:11:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:11:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:02.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:02.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.5869ms +2024-05-23 19:11:14.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:11:14.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:14.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:14.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.436ms +2024-05-23 19:11:14.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:11:14.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.701ms +2024-05-23 19:11:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:11:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:17.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:17.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.0632ms +2024-05-23 19:11:29.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:11:29.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:29.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:29.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.8991ms +2024-05-23 19:11:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:11:29.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:29.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.6571ms +2024-05-23 19:11:32.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 19:11:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:32.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:32.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.9743ms +2024-05-23 19:11:44.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:11:44.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:44.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:45.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 41.5989ms +2024-05-23 19:11:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:11:59.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:59.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:11:59.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 38.3256ms +2024-05-23 19:12:14.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:12:14.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:14.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:14.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8703ms +2024-05-23 19:12:29.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:12:29.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:29.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:29.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3071ms +2024-05-23 19:12:44.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:12:44.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:44.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:44.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6607ms +2024-05-23 19:12:59.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:12:59.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:59.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:12:59.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3648ms +2024-05-23 19:13:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:13:14.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:14.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:14.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.8167ms +2024-05-23 19:13:29.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:13:29.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:29.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:29.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.6732ms +2024-05-23 19:13:44.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:13:44.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:45.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:45.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 38.561ms +2024-05-23 19:13:59.961 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:13:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:59.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:13:59.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.2195ms +2024-05-23 19:14:14.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:14:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:14.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0014ms +2024-05-23 19:14:29.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:14:29.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:29.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:29.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.89ms +2024-05-23 19:14:44.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:14:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:44.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:44.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0948ms +2024-05-23 19:14:59.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:14:59.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:59.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:14:59.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0052ms +2024-05-23 19:15:14.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:15:14.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:14.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:14.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0617ms +2024-05-23 19:15:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:15:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:29.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:29.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.8343ms +2024-05-23 19:15:44.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:15:44.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:44.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:44.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.356ms +2024-05-23 19:15:59.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:15:59.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:15:59.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.979ms +2024-05-23 19:16:14.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:16:14.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:14.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:14.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.8715ms +2024-05-23 19:16:29.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:16:29.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:29.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:29.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8099ms +2024-05-23 19:16:44.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:16:44.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:44.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:44.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.987ms +2024-05-23 19:16:59.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:16:59.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:59.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:16:59.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.2976ms +2024-05-23 19:17:14.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:17:14.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:15.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:15.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2555ms +2024-05-23 19:17:29.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:17:29.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:29.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:29.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3343ms +2024-05-23 19:17:44.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:17:44.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:44.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:44.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.3405ms +2024-05-23 19:17:57.501 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:17:57.501 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:57.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:57.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.7638ms +2024-05-23 19:17:59.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:17:59.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:59.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:17:59.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.1087ms +2024-05-23 19:18:13.608 +02:00 [INF] Deregistering a service [id: notifications-service:5d486840fefd465aae6e97e6765e4142] from Consul... +2024-05-23 19:18:13.609 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:5d486840fefd465aae6e97e6765e4142" +2024-05-23 19:18:13.610 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5d486840fefd465aae6e97e6765e4142 +2024-05-23 19:18:13.610 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5d486840fefd465aae6e97e6765e4142 +2024-05-23 19:18:13.631 +02:00 [INF] Received HTTP response headers after 21.582ms - 200 +2024-05-23 19:18:13.632 +02:00 [INF] End processing HTTP request after 21.9501ms - 200 +2024-05-23 19:18:13.632 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:18:13.632 +02:00 [INF] Deregistered a service [id: notifications-service:5d486840fefd465aae6e97e6765e4142] from Consul. +2024-05-23 19:18:26.548 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:18:40.049 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:19:32.909 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:20:04.995 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:23:02.158 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:23:02.207 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:23:02.270 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:23:02.332 +02:00 [INF] Registering a service [id: notifications-service:1258824b2b9b4421a83a67ac4c5cf317] in Consul... +2024-05-23 19:23:02.351 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:23:02.354 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:23:02.354 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:23:02.367 +02:00 [INF] Received HTTP response headers after 10.9758ms - 200 +2024-05-23 19:23:02.368 +02:00 [INF] End processing HTTP request after 15.2681ms - 200 +2024-05-23 19:23:02.371 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:23:02.372 +02:00 [INF] Registered a service [id: notifications-service:1258824b2b9b4421a83a67ac4c5cf317] in Consul. +2024-05-23 19:23:02.380 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:23:02.383 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:23:02.383 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:23:02.391 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:23:02.393 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:23:02.396 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:23:02.400 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:23:02.402 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:23:02.404 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:23:02.416 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:23:16.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:23:16.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:16.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:16.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 143.2067ms +2024-05-23 19:23:16.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:23:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:16.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:16.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.7124ms +2024-05-23 19:23:31.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:23:31.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:31.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:31.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.1819ms +2024-05-23 19:23:41.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:23:41.856 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:41.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:41.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1502ms +2024-05-23 19:23:41.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:23:41.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:41.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:41.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7127ms +2024-05-23 19:23:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:23:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:46.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:46.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3229ms +2024-05-23 19:23:49.336 +02:00 [INF] Received a message with ID: 'fdbb36101001418390efa63db8f6ec53', Correlation ID: 'a844f8ed959549839a8757c3b81866d5', timestamp: 1716485029, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:23:49.336 +02:00 [INF] Received a message with ID: '2a52415800ae4086ba8e59415d5b6920', Correlation ID: '2262c784c43049b4a345bc15bc6b7b01', timestamp: 1716485029, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:23:49.352 +02:00 [INF] Handling a message: friend_invited with ID: 2a52415800ae4086ba8e59415d5b6920, Correlation ID: 2262c784c43049b4a345bc15bc6b7b01, retry: 0 +2024-05-23 19:23:49.352 +02:00 [INF] Handling a message: friend_request_sent with ID: fdbb36101001418390efa63db8f6ec53, Correlation ID: a844f8ed959549839a8757c3b81866d5, retry: 0 +2024-05-23 19:23:49.565 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:23:49.567 +02:00 [INF] Handled a message: friend_request_sent with ID: fdbb36101001418390efa63db8f6ec53, Correlation ID: a844f8ed959549839a8757c3b81866d5, retry: 0 +2024-05-23 19:23:49.683 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:23:49.683 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:23:49.684 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:23:49.715 +02:00 [INF] Received HTTP response headers after 30.9901ms - 200 +2024-05-23 19:23:49.715 +02:00 [INF] End processing HTTP request after 31.4298ms - 200 +2024-05-23 19:23:49.715 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:23:49.900 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:23:49.900 +02:00 [INF] Handled a message: friend_invited with ID: 2a52415800ae4086ba8e59415d5b6920, Correlation ID: 2262c784c43049b4a345bc15bc6b7b01, retry: 0 +2024-05-23 19:23:56.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:23:56.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:56.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:23:56.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 58.1898ms +2024-05-23 19:24:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:24:01.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:01.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.0766ms +2024-05-23 19:24:07.391 +02:00 [INF] Received a message with ID: '232504a99810489bb020633ed2ddf48b', Correlation ID: 'e5e2f784e2634d39bb229e5f8d002631', timestamp: 1716485047, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:24:07.392 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 232504a99810489bb020633ed2ddf48b, Correlation ID: e5e2f784e2634d39bb229e5f8d002631, retry: 0 +2024-05-23 19:24:07.425 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:24:07.426 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:24:07.426 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:24:07.456 +02:00 [INF] Received HTTP response headers after 29.8375ms - 200 +2024-05-23 19:24:07.456 +02:00 [INF] End processing HTTP request after 30.6886ms - 200 +2024-05-23 19:24:07.456 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:24:07.457 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:24:07.457 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:24:07.457 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:24:07.487 +02:00 [INF] Received HTTP response headers after 29.2445ms - 200 +2024-05-23 19:24:07.487 +02:00 [INF] End processing HTTP request after 29.9809ms - 200 +2024-05-23 19:24:07.487 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:24:07.517 +02:00 [INF] Notification created for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 with message: 'Your friend request to David Rockefeller has been accepted.' +2024-05-23 19:24:07.553 +02:00 [INF] Published NotificationCreated event for NotificationId=1a271c5c-8841-4920-b430-23315f326b15 +2024-05-23 19:24:07.584 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 232504a99810489bb020633ed2ddf48b, Correlation ID: e5e2f784e2634d39bb229e5f8d002631, retry: 0 +2024-05-23 19:24:07.584 +02:00 [INF] Received a message with ID: '3427b382c01c432a9d76547689b0df52', Correlation ID: '5b102e5941a848619dfed1a1fe65adad', timestamp: 1716485047, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:24:07.585 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 3427b382c01c432a9d76547689b0df52, Correlation ID: 5b102e5941a848619dfed1a1fe65adad, retry: 0 +2024-05-23 19:24:07.616 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:24:07.616 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:24:07.616 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:24:07.645 +02:00 [INF] Received HTTP response headers after 28.7339ms - 200 +2024-05-23 19:24:07.646 +02:00 [INF] End processing HTTP request after 29.6942ms - 200 +2024-05-23 19:24:07.646 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:24:07.646 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:24:07.647 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:24:07.647 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:24:07.678 +02:00 [INF] Received HTTP response headers after 30.7632ms - 200 +2024-05-23 19:24:07.678 +02:00 [INF] End processing HTTP request after 31.3781ms - 200 +2024-05-23 19:24:07.678 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:24:07.709 +02:00 [INF] Notification created for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 with message: 'Your friend request to David Rockefeller has been accepted.' +2024-05-23 19:24:07.738 +02:00 [INF] Published NotificationCreated event for NotificationId=09f1dac2-c191-4003-8050-3ac58953392b +2024-05-23 19:24:07.768 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 3427b382c01c432a9d76547689b0df52, Correlation ID: 5b102e5941a848619dfed1a1fe65adad, retry: 0 +2024-05-23 19:24:11.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:24:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:11.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.0745ms +2024-05-23 19:24:16.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:24:16.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:16.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:16.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8965ms +2024-05-23 19:24:17.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:24:17.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:17.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:17.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.9033ms +2024-05-23 19:24:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:24:26.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:26.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9981ms +2024-05-23 19:24:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:24:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:31.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:31.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5309ms +2024-05-23 19:24:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:24:41.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:41.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:41.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3617ms +2024-05-23 19:24:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:24:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:46.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:46.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.3399ms +2024-05-23 19:24:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:24:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:56.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:24:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.6734ms +2024-05-23 19:25:01.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:25:01.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:01.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:01.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.2462ms +2024-05-23 19:25:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:25:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3238ms +2024-05-23 19:25:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:25:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:16.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:16.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.6449ms +2024-05-23 19:25:20.349 +02:00 [INF] Received a message with ID: '2f296ca9d6aa4101906c967aa05d399c', Correlation ID: '8cb1f619210c4d7e9d0c73c663f4fb29', timestamp: 1716485120, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:25:20.349 +02:00 [INF] Received a message with ID: '685f989ffa6d4df5b27d10e1a3daf3f5', Correlation ID: 'c771e914e2fb40bf955ae1f2a3035536', timestamp: 1716485120, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:25:20.350 +02:00 [INF] Handling a message: friend_request_sent with ID: 685f989ffa6d4df5b27d10e1a3daf3f5, Correlation ID: c771e914e2fb40bf955ae1f2a3035536, retry: 0 +2024-05-23 19:25:20.350 +02:00 [INF] Handling a message: friend_invited with ID: 2f296ca9d6aa4101906c967aa05d399c, Correlation ID: 8cb1f619210c4d7e9d0c73c663f4fb29, retry: 0 +2024-05-23 19:25:20.381 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:25:20.382 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:20.382 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:20.416 +02:00 [INF] Received HTTP response headers after 34.0777ms - 200 +2024-05-23 19:25:20.419 +02:00 [INF] End processing HTTP request after 37.2182ms - 200 +2024-05-23 19:25:20.419 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:25:20.490 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:25:20.492 +02:00 [INF] Handled a message: friend_request_sent with ID: 685f989ffa6d4df5b27d10e1a3daf3f5, Correlation ID: c771e914e2fb40bf955ae1f2a3035536, retry: 0 +2024-05-23 19:25:20.589 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:25:20.589 +02:00 [INF] Handled a message: friend_invited with ID: 2f296ca9d6aa4101906c967aa05d399c, Correlation ID: 8cb1f619210c4d7e9d0c73c663f4fb29, retry: 0 +2024-05-23 19:25:26.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:25:26.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.4059ms +2024-05-23 19:25:29.826 +02:00 [INF] Received a message with ID: '30fe9a7869d24eef9a01025910b55010', Correlation ID: 'c0afd8b37d5443b881a00ac339b58150', timestamp: 1716485129, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:25:29.826 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 30fe9a7869d24eef9a01025910b55010, Correlation ID: c0afd8b37d5443b881a00ac339b58150, retry: 0 +2024-05-23 19:25:29.853 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:25:29.854 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:29.854 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:29.895 +02:00 [INF] Received HTTP response headers after 41.1003ms - 200 +2024-05-23 19:25:29.895 +02:00 [INF] End processing HTTP request after 41.6103ms - 200 +2024-05-23 19:25:29.895 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:25:29.896 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:25:29.896 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:25:29.896 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:25:29.923 +02:00 [INF] Received HTTP response headers after 27.3449ms - 200 +2024-05-23 19:25:29.923 +02:00 [INF] End processing HTTP request after 27.6521ms - 200 +2024-05-23 19:25:29.924 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:25:29.952 +02:00 [INF] Notification created for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 with message: 'Your friend request to David Rockefeller has been accepted.' +2024-05-23 19:25:29.982 +02:00 [INF] Published NotificationCreated event for NotificationId=5babbba0-b270-4dad-a981-bd8c37d312b6 +2024-05-23 19:25:30.012 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 30fe9a7869d24eef9a01025910b55010, Correlation ID: c0afd8b37d5443b881a00ac339b58150, retry: 0 +2024-05-23 19:25:30.013 +02:00 [INF] Received a message with ID: '9f7ba2d6204a41a59238a0a4e11b2e1c', Correlation ID: '6e89769df19140eb8551e3df0f858d7a', timestamp: 1716485129, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:25:30.013 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 9f7ba2d6204a41a59238a0a4e11b2e1c, Correlation ID: 6e89769df19140eb8551e3df0f858d7a, retry: 0 +2024-05-23 19:25:30.041 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:25:30.041 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:30.041 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:25:30.071 +02:00 [INF] Received HTTP response headers after 29.7004ms - 200 +2024-05-23 19:25:30.072 +02:00 [INF] End processing HTTP request after 30.4879ms - 200 +2024-05-23 19:25:30.072 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:25:30.072 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:25:30.073 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:25:30.073 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:25:30.102 +02:00 [INF] Received HTTP response headers after 28.7892ms - 200 +2024-05-23 19:25:30.103 +02:00 [INF] End processing HTTP request after 29.7287ms - 200 +2024-05-23 19:25:30.103 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:25:30.133 +02:00 [INF] Notification created for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 with message: 'Your friend request to David Rockefeller has been accepted.' +2024-05-23 19:25:30.162 +02:00 [INF] Published NotificationCreated event for NotificationId=02892a5d-1784-425a-9498-6e0e9ae9a8bf +2024-05-23 19:25:30.192 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 9f7ba2d6204a41a59238a0a4e11b2e1c, Correlation ID: 6e89769df19140eb8551e3df0f858d7a, retry: 0 +2024-05-23 19:25:31.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:25:31.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:31.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:31.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7453ms +2024-05-23 19:25:41.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:25:41.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:41.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0735ms +2024-05-23 19:25:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:25:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:46.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:46.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 39.762ms +2024-05-23 19:25:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:25:56.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:25:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9955ms +2024-05-23 19:26:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:26:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.6954ms +2024-05-23 19:26:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:26:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:11.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:11.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1613ms +2024-05-23 19:26:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:26:16.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:16.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:16.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6699ms +2024-05-23 19:26:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:26:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:26.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7087ms +2024-05-23 19:26:31.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:26:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7854ms +2024-05-23 19:26:41.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:26:41.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:41.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:41.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.7373ms +2024-05-23 19:26:46.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:26:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:46.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:46.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3483ms +2024-05-23 19:26:56.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:26:56.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:56.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:26:56.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.7496ms +2024-05-23 19:27:01.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:27:01.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:01.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1902ms +2024-05-23 19:27:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:27:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:11.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:11.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.1143ms +2024-05-23 19:27:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:27:16.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:16.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:16.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.4558ms +2024-05-23 19:27:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:27:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:26.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:26.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3192ms +2024-05-23 19:27:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:27:31.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:31.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:31.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.3373ms +2024-05-23 19:27:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:27:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:41.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:41.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.9397ms +2024-05-23 19:27:46.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:27:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:46.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9692ms +2024-05-23 19:27:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:27:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:56.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:27:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.3625ms +2024-05-23 19:28:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:28:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:01.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:01.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.5814ms +2024-05-23 19:28:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:28:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:11.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.981ms +2024-05-23 19:28:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:28:16.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:16.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:16.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4986ms +2024-05-23 19:28:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:28:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:26.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:26.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.0382ms +2024-05-23 19:28:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:28:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:31.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6892ms +2024-05-23 19:28:37.781 +02:00 [INF] Deregistering a service [id: notifications-service:1258824b2b9b4421a83a67ac4c5cf317] from Consul... +2024-05-23 19:28:37.784 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1258824b2b9b4421a83a67ac4c5cf317" +2024-05-23 19:28:37.784 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1258824b2b9b4421a83a67ac4c5cf317 +2024-05-23 19:28:37.784 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1258824b2b9b4421a83a67ac4c5cf317 +2024-05-23 19:28:37.799 +02:00 [INF] Received HTTP response headers after 14.3611ms - 200 +2024-05-23 19:28:37.799 +02:00 [INF] End processing HTTP request after 15.064ms - 200 +2024-05-23 19:28:37.799 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:28:37.800 +02:00 [INF] Deregistered a service [id: notifications-service:1258824b2b9b4421a83a67ac4c5cf317] from Consul. +2024-05-23 19:28:46.080 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:28:46.139 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:28:46.200 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:28:46.263 +02:00 [INF] Registering a service [id: notifications-service:1b9c84316cd247baa7503c2dc7c90112] in Consul... +2024-05-23 19:28:46.288 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:28:46.292 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:28:46.293 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:28:46.310 +02:00 [INF] Received HTTP response headers after 12.6217ms - 200 +2024-05-23 19:28:46.315 +02:00 [INF] End processing HTTP request after 23.4693ms - 200 +2024-05-23 19:28:46.319 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:28:46.321 +02:00 [INF] Registered a service [id: notifications-service:1b9c84316cd247baa7503c2dc7c90112] in Consul. +2024-05-23 19:28:46.334 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:28:46.336 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:28:46.336 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:28:46.354 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:28:46.356 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:28:46.358 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:28:46.361 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:28:46.363 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:28:46.366 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:28:46.369 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:28:47.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:28:47.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:48.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:48.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 138.5905ms +2024-05-23 19:28:48.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:28:48.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:48.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:48.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 40.6106ms +2024-05-23 19:28:52.151 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:28:52.154 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:52.186 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:52.187 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 36.0373ms +2024-05-23 19:28:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:28:56.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:28:56.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.7299ms +2024-05-23 19:28:57.835 +02:00 [INF] Received a message with ID: 'ca194277ea53413682f06817b19e2f04', Correlation ID: 'b7c46aa0111040bca6b24f77bef0139b', timestamp: 1716485337, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:28:57.835 +02:00 [INF] Received a message with ID: '9551db35b2a14eddb78712054d50d300', Correlation ID: 'cd5bf0cffa1c4af085fd5001f51f8a7e', timestamp: 1716485337, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:28:57.852 +02:00 [INF] Handling a message: friend_invited with ID: 9551db35b2a14eddb78712054d50d300, Correlation ID: cd5bf0cffa1c4af085fd5001f51f8a7e, retry: 0 +2024-05-23 19:28:57.852 +02:00 [INF] Handling a message: friend_request_sent with ID: ca194277ea53413682f06817b19e2f04, Correlation ID: b7c46aa0111040bca6b24f77bef0139b, retry: 0 +2024-05-23 19:28:58.022 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:28:58.025 +02:00 [INF] Handled a message: friend_request_sent with ID: ca194277ea53413682f06817b19e2f04, Correlation ID: b7c46aa0111040bca6b24f77bef0139b, retry: 0 +2024-05-23 19:28:58.156 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:28:58.156 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:28:58.157 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:28:58.189 +02:00 [INF] Received HTTP response headers after 32.4655ms - 200 +2024-05-23 19:28:58.189 +02:00 [INF] End processing HTTP request after 32.9664ms - 200 +2024-05-23 19:28:58.190 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:28:58.370 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:28:58.370 +02:00 [INF] Handled a message: friend_invited with ID: 9551db35b2a14eddb78712054d50d300, Correlation ID: cd5bf0cffa1c4af085fd5001f51f8a7e, retry: 0 +2024-05-23 19:29:01.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:29:01.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:01.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4174ms +2024-05-23 19:29:11.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:29:11.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:11.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:11.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3782ms +2024-05-23 19:29:16.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:29:16.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:16.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:16.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7997ms +2024-05-23 19:29:19.534 +02:00 [INF] Received a message with ID: '025174a495d144e99c1b04b9a82d3436', Correlation ID: 'ae683e3a48a74ef9a762cf0e8f8c9a7f', timestamp: 1716485359, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:29:19.536 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 025174a495d144e99c1b04b9a82d3436, Correlation ID: ae683e3a48a74ef9a762cf0e8f8c9a7f, retry: 0 +2024-05-23 19:29:19.570 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:29:19.570 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.570 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.599 +02:00 [INF] Received HTTP response headers after 28.3643ms - 200 +2024-05-23 19:29:19.600 +02:00 [INF] End processing HTTP request after 29.5345ms - 200 +2024-05-23 19:29:19.600 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:29:19.604 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:29:19.605 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:29:19.605 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:29:19.636 +02:00 [INF] Received HTTP response headers after 31.2633ms - 200 +2024-05-23 19:29:19.639 +02:00 [INF] End processing HTTP request after 32.4107ms - 200 +2024-05-23 19:29:19.639 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:29:19.667 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.667 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.708 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.738 +02:00 [INF] Published NotificationCreated event for NotificationId=772c7c1e-4800-494d-9bf4-b35432bb8393 +2024-05-23 19:29:19.772 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 025174a495d144e99c1b04b9a82d3436, Correlation ID: ae683e3a48a74ef9a762cf0e8f8c9a7f, retry: 0 +2024-05-23 19:29:19.772 +02:00 [INF] Received a message with ID: '5aa8df258bd94f048a2fbd7034c3c0ae', Correlation ID: 'ba94a99f8b0644ee9958a890f41cfa44', timestamp: 1716485359, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:29:19.773 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 5aa8df258bd94f048a2fbd7034c3c0ae, Correlation ID: ba94a99f8b0644ee9958a890f41cfa44, retry: 0 +2024-05-23 19:29:19.801 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:29:19.801 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.801 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.830 +02:00 [INF] Received HTTP response headers after 28.8663ms - 200 +2024-05-23 19:29:19.830 +02:00 [INF] End processing HTTP request after 29.3956ms - 200 +2024-05-23 19:29:19.831 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:29:19.831 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:29:19.831 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:29:19.831 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:29:19.860 +02:00 [INF] Received HTTP response headers after 29.159ms - 200 +2024-05-23 19:29:19.861 +02:00 [INF] End processing HTTP request after 29.5655ms - 200 +2024-05-23 19:29:19.861 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:29:19.890 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.922 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:29:19.953 +02:00 [INF] Published NotificationCreated event for NotificationId=57bda8a2-8b0b-4935-8e82-978b5d9c2e54 +2024-05-23 19:29:19.981 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 5aa8df258bd94f048a2fbd7034c3c0ae, Correlation ID: ba94a99f8b0644ee9958a890f41cfa44, retry: 0 +2024-05-23 19:29:26.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:29:26.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:26.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6467ms +2024-05-23 19:29:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:29:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:31.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:31.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6097ms +2024-05-23 19:29:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:29:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:41.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:41.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9112ms +2024-05-23 19:29:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:29:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:46.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:46.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.6322ms +2024-05-23 19:29:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:29:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:56.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:29:56.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7303ms +2024-05-23 19:30:01.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:30:01.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:01.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:01.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.0104ms +2024-05-23 19:30:11.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:30:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:11.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.4815ms +2024-05-23 19:30:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:30:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5588ms +2024-05-23 19:30:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:30:26.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:26.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.1587ms +2024-05-23 19:30:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:30:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:31.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:31.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3852ms +2024-05-23 19:30:41.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:30:41.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:41.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 40.3831ms +2024-05-23 19:30:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:30:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:46.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:46.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.5851ms +2024-05-23 19:30:56.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:30:56.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:56.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:30:56.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.6324ms +2024-05-23 19:31:01.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:31:01.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:01.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7823ms +2024-05-23 19:31:11.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:31:11.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:11.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:11.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.5791ms +2024-05-23 19:31:16.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:31:16.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:16.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:16.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2803ms +2024-05-23 19:31:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:31:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:26.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:26.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.7932ms +2024-05-23 19:31:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:31:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6775ms +2024-05-23 19:31:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:31:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:41.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:41.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8436ms +2024-05-23 19:31:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:31:46.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:46.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:46.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9889ms +2024-05-23 19:31:56.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:31:56.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:56.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:31:56.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.83ms +2024-05-23 19:32:01.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:32:01.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:01.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:01.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.2301ms +2024-05-23 19:32:11.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:32:11.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:11.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:11.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1953ms +2024-05-23 19:32:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:32:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:16.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:16.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0904ms +2024-05-23 19:32:26.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:32:26.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.3273ms +2024-05-23 19:32:31.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:32:31.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:31.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:31.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9415ms +2024-05-23 19:32:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:32:41.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:41.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:41.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.4187ms +2024-05-23 19:32:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:32:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5982ms +2024-05-23 19:32:56.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:32:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:56.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:32:56.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3536ms +2024-05-23 19:33:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:33:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:01.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:01.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7961ms +2024-05-23 19:33:08.763 +02:00 [INF] Deregistering a service [id: notifications-service:1b9c84316cd247baa7503c2dc7c90112] from Consul... +2024-05-23 19:33:08.763 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1b9c84316cd247baa7503c2dc7c90112" +2024-05-23 19:33:08.764 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1b9c84316cd247baa7503c2dc7c90112 +2024-05-23 19:33:08.764 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1b9c84316cd247baa7503c2dc7c90112 +2024-05-23 19:33:08.767 +02:00 [INF] Received HTTP response headers after 3.1012ms - 200 +2024-05-23 19:33:08.767 +02:00 [INF] End processing HTTP request after 3.5124ms - 200 +2024-05-23 19:33:08.768 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:08.769 +02:00 [INF] Deregistered a service [id: notifications-service:1b9c84316cd247baa7503c2dc7c90112] from Consul. +2024-05-23 19:33:14.864 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:33:14.920 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:33:14.993 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:33:15.057 +02:00 [INF] Registering a service [id: notifications-service:4daf818a8e5f4e708655cbb2dc002945] in Consul... +2024-05-23 19:33:15.076 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:33:15.079 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:33:15.080 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:33:15.086 +02:00 [INF] Received HTTP response headers after 4.46ms - 200 +2024-05-23 19:33:15.087 +02:00 [INF] End processing HTTP request after 8.6927ms - 200 +2024-05-23 19:33:15.090 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:15.091 +02:00 [INF] Registered a service [id: notifications-service:4daf818a8e5f4e708655cbb2dc002945] in Consul. +2024-05-23 19:33:15.098 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:33:15.102 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:33:15.103 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:33:15.108 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:33:15.110 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:33:15.113 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:33:15.116 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:33:15.118 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:33:15.121 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:33:15.123 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:33:16.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:33:16.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:16.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:16.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 126.0157ms +2024-05-23 19:33:17.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:33:17.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:17.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:17.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.7287ms +2024-05-23 19:33:21.540 +02:00 [INF] Received a message with ID: '22aacb6eaf2246af84618bb98ddfb729', Correlation ID: 'b5705752066e41e89f744489cc797fb6', timestamp: 1716485601, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:33:21.540 +02:00 [INF] Received a message with ID: 'e8cb87176fbd4d9f90692c1d94bd9a17', Correlation ID: 'f030869ba7e34b2a9d0b292fad24f06c', timestamp: 1716485601, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:33:21.556 +02:00 [INF] Handling a message: friend_invited with ID: 22aacb6eaf2246af84618bb98ddfb729, Correlation ID: b5705752066e41e89f744489cc797fb6, retry: 0 +2024-05-23 19:33:21.556 +02:00 [INF] Handling a message: friend_request_sent with ID: e8cb87176fbd4d9f90692c1d94bd9a17, Correlation ID: f030869ba7e34b2a9d0b292fad24f06c, retry: 0 +2024-05-23 19:33:21.609 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:33:21.609 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:21.609 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:21.640 +02:00 [INF] Received HTTP response headers after 30.5406ms - 200 +2024-05-23 19:33:21.640 +02:00 [INF] End processing HTTP request after 31.1125ms - 200 +2024-05-23 19:33:21.640 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:21.971 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:33:21.979 +02:00 [INF] Handled a message: friend_invited with ID: 22aacb6eaf2246af84618bb98ddfb729, Correlation ID: b5705752066e41e89f744489cc797fb6, retry: 0 +2024-05-23 19:33:21.990 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:33:21.991 +02:00 [INF] Handled a message: friend_request_sent with ID: e8cb87176fbd4d9f90692c1d94bd9a17, Correlation ID: f030869ba7e34b2a9d0b292fad24f06c, retry: 0 +2024-05-23 19:33:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:33:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:26.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:26.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 37.1627ms +2024-05-23 19:33:31.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:33:31.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:31.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:31.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7692ms +2024-05-23 19:33:31.996 +02:00 [INF] Received a message with ID: '75e6dc9de3be467db59e9d949c16af69', Correlation ID: '035244afdc20439aa3034b9a970537cf', timestamp: 1716485611, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:33:32.002 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 75e6dc9de3be467db59e9d949c16af69, Correlation ID: 035244afdc20439aa3034b9a970537cf, retry: 0 +2024-05-23 19:33:32.039 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:33:32.040 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.041 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.070 +02:00 [INF] Received HTTP response headers after 29.1557ms - 200 +2024-05-23 19:33:32.071 +02:00 [INF] End processing HTTP request after 31.2548ms - 200 +2024-05-23 19:33:32.071 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:32.072 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:33:32.072 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:33:32.072 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:33:32.102 +02:00 [INF] Received HTTP response headers after 29.0989ms - 200 +2024-05-23 19:33:32.102 +02:00 [INF] End processing HTTP request after 29.7762ms - 200 +2024-05-23 19:33:32.102 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:32.134 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.164 +02:00 [INF] Published NotificationCreated event for NotificationId=c12de780-feaf-4b89-983c-60613de33085 +2024-05-23 19:33:32.194 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 75e6dc9de3be467db59e9d949c16af69, Correlation ID: 035244afdc20439aa3034b9a970537cf, retry: 0 +2024-05-23 19:33:32.194 +02:00 [INF] Received a message with ID: '39a02099d6ec40ac97c5d71df8c09f6d', Correlation ID: 'de650c2ffba14b208b07f78ef7ff31b0', timestamp: 1716485611, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:33:32.195 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 39a02099d6ec40ac97c5d71df8c09f6d, Correlation ID: de650c2ffba14b208b07f78ef7ff31b0, retry: 0 +2024-05-23 19:33:32.230 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:33:32.230 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.230 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.259 +02:00 [INF] Received HTTP response headers after 29.1118ms - 200 +2024-05-23 19:33:32.261 +02:00 [INF] End processing HTTP request after 30.8433ms - 200 +2024-05-23 19:33:32.261 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:32.262 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:33:32.262 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:33:32.263 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:33:32.292 +02:00 [INF] Received HTTP response headers after 29.2541ms - 200 +2024-05-23 19:33:32.293 +02:00 [INF] End processing HTTP request after 31.0419ms - 200 +2024-05-23 19:33:32.293 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:33:32.322 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:33:32.352 +02:00 [INF] Published NotificationCreated event for NotificationId=a0802009-45c9-43aa-a5c1-4f55d2598011 +2024-05-23 19:33:32.382 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 39a02099d6ec40ac97c5d71df8c09f6d, Correlation ID: de650c2ffba14b208b07f78ef7ff31b0, retry: 0 +2024-05-23 19:33:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:33:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:41.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:41.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.8391ms +2024-05-23 19:33:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:33:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0716ms +2024-05-23 19:33:56.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:33:56.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:56.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:33:56.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.2566ms +2024-05-23 19:34:01.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:34:01.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:01.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:01.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4614ms +2024-05-23 19:34:11.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:34:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:11.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:11.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8402ms +2024-05-23 19:34:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:34:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7599ms +2024-05-23 19:34:26.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:34:26.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8325ms +2024-05-23 19:34:31.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:34:31.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:31.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:31.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8471ms +2024-05-23 19:34:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:34:41.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:41.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:41.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5541ms +2024-05-23 19:34:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:34:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8096ms +2024-05-23 19:34:56.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:34:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:34:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.3509ms +2024-05-23 19:35:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:35:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:01.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:01.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8206ms +2024-05-23 19:35:01.240 +02:00 [INF] Deregistering a service [id: notifications-service:4daf818a8e5f4e708655cbb2dc002945] from Consul... +2024-05-23 19:35:01.241 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4daf818a8e5f4e708655cbb2dc002945" +2024-05-23 19:35:01.241 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4daf818a8e5f4e708655cbb2dc002945 +2024-05-23 19:35:01.241 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4daf818a8e5f4e708655cbb2dc002945 +2024-05-23 19:35:01.246 +02:00 [INF] Received HTTP response headers after 4.743ms - 200 +2024-05-23 19:35:01.246 +02:00 [INF] End processing HTTP request after 5.1307ms - 200 +2024-05-23 19:35:01.247 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:01.247 +02:00 [INF] Deregistered a service [id: notifications-service:4daf818a8e5f4e708655cbb2dc002945] from Consul. +2024-05-23 19:35:07.761 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:35:07.808 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:35:07.878 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:35:07.941 +02:00 [INF] Registering a service [id: notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6] in Consul... +2024-05-23 19:35:07.957 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:35:07.960 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:35:07.961 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:35:07.970 +02:00 [INF] Received HTTP response headers after 7.708ms - 200 +2024-05-23 19:35:07.971 +02:00 [INF] End processing HTTP request after 11.7811ms - 200 +2024-05-23 19:35:07.974 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:07.975 +02:00 [INF] Registered a service [id: notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6] in Consul. +2024-05-23 19:35:07.986 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:35:07.990 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:35:07.990 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:35:07.998 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:35:08.002 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:35:08.003 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:35:08.007 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:35:08.009 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:35:08.011 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:35:08.013 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:35:11.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:35:11.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:12.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:12.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 116.042ms +2024-05-23 19:35:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:35:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:16.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:16.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8002ms +2024-05-23 19:35:16.703 +02:00 [INF] Received a message with ID: '1fde301a1c0148d7bc383692a40fce47', Correlation ID: '6478829458d3415295c226b709b22d5e', timestamp: 1716485716, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:35:16.703 +02:00 [INF] Received a message with ID: '4997b758298e4eddbcd535a29df3cf6b', Correlation ID: '5e8c21baeaba4c8d89ff4e306f4c25cc', timestamp: 1716485716, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:35:16.718 +02:00 [INF] Handling a message: friend_request_sent with ID: 1fde301a1c0148d7bc383692a40fce47, Correlation ID: 6478829458d3415295c226b709b22d5e, retry: 0 +2024-05-23 19:35:16.718 +02:00 [INF] Handling a message: friend_invited with ID: 4997b758298e4eddbcd535a29df3cf6b, Correlation ID: 5e8c21baeaba4c8d89ff4e306f4c25cc, retry: 0 +2024-05-23 19:35:16.770 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:35:16.770 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:16.770 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:16.806 +02:00 [INF] Received HTTP response headers after 35.4223ms - 200 +2024-05-23 19:35:16.806 +02:00 [INF] End processing HTTP request after 36.5009ms - 200 +2024-05-23 19:35:16.808 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:16.898 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:35:16.900 +02:00 [INF] Handled a message: friend_request_sent with ID: 1fde301a1c0148d7bc383692a40fce47, Correlation ID: 6478829458d3415295c226b709b22d5e, retry: 0 +2024-05-23 19:35:16.993 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:35:16.994 +02:00 [INF] Handled a message: friend_invited with ID: 4997b758298e4eddbcd535a29df3cf6b, Correlation ID: 5e8c21baeaba4c8d89ff4e306f4c25cc, retry: 0 +2024-05-23 19:35:26.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:35:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:26.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:26.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.2786ms +2024-05-23 19:35:31.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:35:31.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:31.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:31.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.4859ms +2024-05-23 19:35:37.883 +02:00 [INF] Received a message with ID: '87d7f897c0654819a705e1dfa01aaba8', Correlation ID: '3d6217c1a9f44e33a2bc1018f2b6c31c', timestamp: 1716485737, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:35:37.884 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 87d7f897c0654819a705e1dfa01aaba8, Correlation ID: 3d6217c1a9f44e33a2bc1018f2b6c31c, retry: 0 +2024-05-23 19:35:37.914 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:35:37.914 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:37.915 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:37.948 +02:00 [INF] Received HTTP response headers after 33.7261ms - 200 +2024-05-23 19:35:37.949 +02:00 [INF] End processing HTTP request after 34.2083ms - 200 +2024-05-23 19:35:37.949 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:37.949 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:35:37.949 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:35:37.950 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:35:37.979 +02:00 [INF] Received HTTP response headers after 29.493ms - 200 +2024-05-23 19:35:37.979 +02:00 [INF] End processing HTTP request after 29.9048ms - 200 +2024-05-23 19:35:37.979 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:38.008 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:38.037 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:38.074 +02:00 [INF] Published NotificationCreated event for NotificationId=ce564ee3-e6b9-4ea7-8856-3ba95bf1795b +2024-05-23 19:35:38.104 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 87d7f897c0654819a705e1dfa01aaba8, Correlation ID: 3d6217c1a9f44e33a2bc1018f2b6c31c, retry: 0 +2024-05-23 19:35:38.104 +02:00 [INF] Received a message with ID: '410841e4e4f94a72b3b3cb545c073062', Correlation ID: '0db230efacf743008dea0cbb92c8c222', timestamp: 1716485737, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:35:38.105 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 410841e4e4f94a72b3b3cb545c073062, Correlation ID: 0db230efacf743008dea0cbb92c8c222, retry: 0 +2024-05-23 19:35:38.133 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:35:38.133 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:38.134 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:38.163 +02:00 [INF] Received HTTP response headers after 29.0723ms - 200 +2024-05-23 19:35:38.163 +02:00 [INF] End processing HTTP request after 29.7539ms - 200 +2024-05-23 19:35:38.163 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:38.164 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:35:38.164 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:35:38.164 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:35:38.194 +02:00 [INF] Received HTTP response headers after 29.4506ms - 200 +2024-05-23 19:35:38.195 +02:00 [INF] End processing HTTP request after 30.2165ms - 200 +2024-05-23 19:35:38.195 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:35:38.250 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:35:38.280 +02:00 [INF] Published NotificationCreated event for NotificationId=0f8e608e-2fc9-4bc1-ac2b-5183dde5a0e6 +2024-05-23 19:35:38.309 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 410841e4e4f94a72b3b3cb545c073062, Correlation ID: 0db230efacf743008dea0cbb92c8c222, retry: 0 +2024-05-23 19:35:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:35:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:41.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:41.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.9546ms +2024-05-23 19:35:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:35:46.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:46.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:46.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3467ms +2024-05-23 19:35:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:35:56.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:56.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:35:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1496ms +2024-05-23 19:36:01.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:36:01.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:01.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:01.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.6685ms +2024-05-23 19:36:11.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:36:11.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:11.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:11.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2486ms +2024-05-23 19:36:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:36:16.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:16.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:16.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.1691ms +2024-05-23 19:36:18.752 +02:00 [INF] Deregistering a service [id: notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6] from Consul... +2024-05-23 19:36:18.753 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6" +2024-05-23 19:36:18.753 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6 +2024-05-23 19:36:18.754 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6 +2024-05-23 19:36:18.755 +02:00 [INF] Received HTTP response headers after 1.6817ms - 200 +2024-05-23 19:36:18.756 +02:00 [INF] End processing HTTP request after 2.3545ms - 200 +2024-05-23 19:36:18.756 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:36:18.757 +02:00 [INF] Deregistered a service [id: notifications-service:031ba9c04aeb4ddaae5ea5144c6afdd6] from Consul. +2024-05-23 19:36:25.427 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:36:25.475 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:36:25.523 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:36:25.583 +02:00 [INF] Registering a service [id: notifications-service:388537036479490dba7bc2396af32d70] in Consul... +2024-05-23 19:36:25.599 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:36:25.603 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:36:25.603 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:36:25.612 +02:00 [INF] Received HTTP response headers after 6.6836ms - 200 +2024-05-23 19:36:25.613 +02:00 [INF] End processing HTTP request after 10.6585ms - 200 +2024-05-23 19:36:25.615 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:36:25.616 +02:00 [INF] Registered a service [id: notifications-service:388537036479490dba7bc2396af32d70] in Consul. +2024-05-23 19:36:25.622 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:36:25.631 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:36:25.633 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:36:25.634 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:36:25.634 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:36:25.635 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:36:25.637 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:36:25.639 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:36:25.642 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:36:25.644 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:36:26.921 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:36:26.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:27.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:27.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 137.2513ms +2024-05-23 19:36:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:36:31.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:31.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:31.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.2667ms +2024-05-23 19:36:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:36:41.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:41.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:41.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.86ms +2024-05-23 19:36:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:36:46.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:46.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:46.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7398ms +2024-05-23 19:36:50.177 +02:00 [INF] Deregistering a service [id: notifications-service:388537036479490dba7bc2396af32d70] from Consul... +2024-05-23 19:36:50.179 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:388537036479490dba7bc2396af32d70" +2024-05-23 19:36:50.180 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:388537036479490dba7bc2396af32d70 +2024-05-23 19:36:50.180 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:388537036479490dba7bc2396af32d70 +2024-05-23 19:36:50.184 +02:00 [INF] Received HTTP response headers after 3.4275ms - 200 +2024-05-23 19:36:50.184 +02:00 [INF] End processing HTTP request after 4.5042ms - 200 +2024-05-23 19:36:50.184 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:36:50.185 +02:00 [INF] Deregistered a service [id: notifications-service:388537036479490dba7bc2396af32d70] from Consul. +2024-05-23 19:36:55.111 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:36:55.167 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:36:55.214 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:36:55.285 +02:00 [INF] Registering a service [id: notifications-service:0faad41861734ca1a52cfc64f1671f2f] in Consul... +2024-05-23 19:36:55.303 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:36:55.306 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:36:55.307 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:36:55.316 +02:00 [INF] Received HTTP response headers after 6.3425ms - 200 +2024-05-23 19:36:55.317 +02:00 [INF] End processing HTTP request after 11.117ms - 200 +2024-05-23 19:36:55.319 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:36:55.320 +02:00 [INF] Registered a service [id: notifications-service:0faad41861734ca1a52cfc64f1671f2f] in Consul. +2024-05-23 19:36:55.328 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:36:55.332 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:36:55.332 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:36:55.338 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:36:55.341 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:36:55.344 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:36:55.346 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:36:55.349 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:36:55.352 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:36:55.355 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:36:56.929 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:36:56.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:57.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:36:57.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 121.6854ms +2024-05-23 19:36:58.936 +02:00 [INF] Received a message with ID: 'f7fce3e18e4f4a348256f83965374ef6', Correlation ID: '894348fa2f7c459d831cb03c83cf27d3', timestamp: 1716485818, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:36:58.937 +02:00 [INF] Received a message with ID: '16f475e4f5ab4a679b37eef465d1288c', Correlation ID: '9d56e49c235240189e3f0821a998577d', timestamp: 1716485818, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:36:58.958 +02:00 [INF] Handling a message: friend_request_sent with ID: 16f475e4f5ab4a679b37eef465d1288c, Correlation ID: 9d56e49c235240189e3f0821a998577d, retry: 0 +2024-05-23 19:36:58.958 +02:00 [INF] Handling a message: friend_invited with ID: f7fce3e18e4f4a348256f83965374ef6, Correlation ID: 894348fa2f7c459d831cb03c83cf27d3, retry: 0 +2024-05-23 19:36:59.148 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:36:59.150 +02:00 [INF] Handled a message: friend_request_sent with ID: 16f475e4f5ab4a679b37eef465d1288c, Correlation ID: 9d56e49c235240189e3f0821a998577d, retry: 0 +2024-05-23 19:36:59.277 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:36:59.277 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:36:59.277 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:36:59.308 +02:00 [INF] Received HTTP response headers after 30.7389ms - 200 +2024-05-23 19:36:59.308 +02:00 [INF] End processing HTTP request after 31.398ms - 200 +2024-05-23 19:36:59.309 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:36:59.490 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:36:59.490 +02:00 [INF] Handled a message: friend_invited with ID: f7fce3e18e4f4a348256f83965374ef6, Correlation ID: 894348fa2f7c459d831cb03c83cf27d3, retry: 0 +2024-05-23 19:37:01.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:01.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:01.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:01.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1501ms +2024-05-23 19:37:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:37:11.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:11.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:11.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 58.1572ms +2024-05-23 19:37:15.132 +02:00 [INF] Received a message with ID: 'f18a907557604f4bb6072e22bd417e8c', Correlation ID: '88cf754eb4f6452ea604d66f2a8a5060', timestamp: 1716485835, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:37:15.135 +02:00 [INF] Handling a message: pending_friend_accepted with ID: f18a907557604f4bb6072e22bd417e8c, Correlation ID: 88cf754eb4f6452ea604d66f2a8a5060, retry: 0 +2024-05-23 19:37:15.176 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:37:15.176 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.177 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.206 +02:00 [INF] Received HTTP response headers after 29.1547ms - 200 +2024-05-23 19:37:15.206 +02:00 [INF] End processing HTTP request after 29.9508ms - 200 +2024-05-23 19:37:15.206 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:37:15.207 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:37:15.207 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:37:15.207 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:37:15.237 +02:00 [INF] Received HTTP response headers after 30.3388ms - 200 +2024-05-23 19:37:15.238 +02:00 [INF] End processing HTTP request after 30.8155ms - 200 +2024-05-23 19:37:15.238 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:37:15.264 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.265 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.294 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.328 +02:00 [INF] Published NotificationCreated event for NotificationId=9526f8f5-17f0-4a45-9990-ff932fe8e160 +2024-05-23 19:37:15.357 +02:00 [INF] Handled a message: pending_friend_accepted with ID: f18a907557604f4bb6072e22bd417e8c, Correlation ID: 88cf754eb4f6452ea604d66f2a8a5060, retry: 0 +2024-05-23 19:37:15.358 +02:00 [INF] Received a message with ID: '1212adb1a36c401bb0b1f979bae1f4b6', Correlation ID: '7bf1779a2f66467498571b6faac44632', timestamp: 1716485835, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:37:15.358 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 1212adb1a36c401bb0b1f979bae1f4b6, Correlation ID: 7bf1779a2f66467498571b6faac44632, retry: 0 +2024-05-23 19:37:15.386 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:37:15.386 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.387 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.417 +02:00 [INF] Received HTTP response headers after 29.8945ms - 200 +2024-05-23 19:37:15.417 +02:00 [INF] End processing HTTP request after 31.2362ms - 200 +2024-05-23 19:37:15.417 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:37:15.418 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:37:15.418 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:37:15.418 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:37:15.448 +02:00 [INF] Received HTTP response headers after 30.3892ms - 200 +2024-05-23 19:37:15.449 +02:00 [INF] End processing HTTP request after 30.8734ms - 200 +2024-05-23 19:37:15.449 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:37:15.477 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.509 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:37:15.538 +02:00 [INF] Published NotificationCreated event for NotificationId=cebfe154-b635-4e21-913c-f44f9019d07a +2024-05-23 19:37:15.569 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 1212adb1a36c401bb0b1f979bae1f4b6, Correlation ID: 7bf1779a2f66467498571b6faac44632, retry: 0 +2024-05-23 19:37:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:16.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:16.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.905ms +2024-05-23 19:37:26.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:37:26.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:26.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:26.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4599ms +2024-05-23 19:37:30.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:30.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:30.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:30.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.708ms +2024-05-23 19:37:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:30.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:30.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1311ms +2024-05-23 19:37:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9448ms +2024-05-23 19:37:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:37:41.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:41.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:41.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.6524ms +2024-05-23 19:37:45.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:45.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:45.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9562ms +2024-05-23 19:37:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:37:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2685ms +2024-05-23 19:37:56.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:37:56.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:37:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8765ms +2024-05-23 19:38:00.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:00.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:00.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:00.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5864ms +2024-05-23 19:38:01.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:01.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:01.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:01.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.4018ms +2024-05-23 19:38:08.712 +02:00 [INF] Deregistering a service [id: notifications-service:0faad41861734ca1a52cfc64f1671f2f] from Consul... +2024-05-23 19:38:08.715 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:0faad41861734ca1a52cfc64f1671f2f" +2024-05-23 19:38:08.715 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0faad41861734ca1a52cfc64f1671f2f +2024-05-23 19:38:08.716 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:0faad41861734ca1a52cfc64f1671f2f +2024-05-23 19:38:08.722 +02:00 [INF] Received HTTP response headers after 5.4911ms - 200 +2024-05-23 19:38:08.723 +02:00 [INF] End processing HTTP request after 7.1723ms - 200 +2024-05-23 19:38:08.723 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:38:08.725 +02:00 [INF] Deregistered a service [id: notifications-service:0faad41861734ca1a52cfc64f1671f2f] from Consul. +2024-05-23 19:38:14.788 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:38:14.843 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:38:14.908 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:38:14.975 +02:00 [INF] Registering a service [id: notifications-service:9615fa2782564a349c588454bfc39346] in Consul... +2024-05-23 19:38:14.998 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:38:15.001 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:38:15.001 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:38:15.011 +02:00 [INF] Received HTTP response headers after 6.7155ms - 200 +2024-05-23 19:38:15.013 +02:00 [INF] End processing HTTP request after 12.5087ms - 200 +2024-05-23 19:38:15.016 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:38:15.017 +02:00 [INF] Registered a service [id: notifications-service:9615fa2782564a349c588454bfc39346] in Consul. +2024-05-23 19:38:15.025 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:38:15.025 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:38:15.025 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:38:15.036 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:38:15.039 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:38:15.041 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:38:15.044 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:38:15.046 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:38:15.062 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:38:15.067 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:38:15.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:15.455 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:15.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:15.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 153.6149ms +2024-05-23 19:38:16.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:16.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:16.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:16.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.6464ms +2024-05-23 19:38:17.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:38:17.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:17.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:17.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.8227ms +2024-05-23 19:38:26.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:38:26.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:26.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:26.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.7843ms +2024-05-23 19:38:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:30.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:30.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:30.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.444ms +2024-05-23 19:38:31.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:31.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:31.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:31.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.5912ms +2024-05-23 19:38:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:38:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:41.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:41.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.5447ms +2024-05-23 19:38:45.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:45.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:45.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5997ms +2024-05-23 19:38:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:38:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:46.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4712ms +2024-05-23 19:38:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:38:56.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:56.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:38:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1417ms +2024-05-23 19:39:00.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:00.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:00.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:00.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.3613ms +2024-05-23 19:39:01.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:01.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:01.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:01.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.73ms +2024-05-23 19:39:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:39:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:11.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:11.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 41.8761ms +2024-05-23 19:39:15.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:15.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:15.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:15.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.44ms +2024-05-23 19:39:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1422ms +2024-05-23 19:39:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:16.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5023ms +2024-05-23 19:39:19.939 +02:00 [INF] Received a message with ID: '2c3eb6b9696d4c788126bda478ff93eb', Correlation ID: 'c9e71a8a15f94ee3983443675e08ba43', timestamp: 1716485959, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:39:19.939 +02:00 [INF] Received a message with ID: 'f3dec3bfd021481e8a28a590e3c12c96', Correlation ID: '0bde1ebb5efd4bd3b48c8badd84ee9e4', timestamp: 1716485959, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:39:19.953 +02:00 [INF] Handling a message: friend_request_sent with ID: 2c3eb6b9696d4c788126bda478ff93eb, Correlation ID: c9e71a8a15f94ee3983443675e08ba43, retry: 0 +2024-05-23 19:39:19.953 +02:00 [INF] Handling a message: friend_invited with ID: f3dec3bfd021481e8a28a590e3c12c96, Correlation ID: 0bde1ebb5efd4bd3b48c8badd84ee9e4, retry: 0 +2024-05-23 19:39:20.153 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:39:20.155 +02:00 [INF] Handled a message: friend_request_sent with ID: 2c3eb6b9696d4c788126bda478ff93eb, Correlation ID: c9e71a8a15f94ee3983443675e08ba43, retry: 0 +2024-05-23 19:39:20.289 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:39:20.289 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:20.290 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:20.326 +02:00 [INF] Received HTTP response headers after 35.9602ms - 200 +2024-05-23 19:39:20.326 +02:00 [INF] End processing HTTP request after 37.1833ms - 200 +2024-05-23 19:39:20.327 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:39:20.539 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:39:20.539 +02:00 [INF] Handled a message: friend_invited with ID: f3dec3bfd021481e8a28a590e3c12c96, Correlation ID: 0bde1ebb5efd4bd3b48c8badd84ee9e4, retry: 0 +2024-05-23 19:39:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:39:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:26.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:26.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.6781ms +2024-05-23 19:39:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:30.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:30.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:30.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.158ms +2024-05-23 19:39:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5099ms +2024-05-23 19:39:31.212 +02:00 [INF] Received a message with ID: 'ab5d1fcadf9849f9bab911caf3505f6c', Correlation ID: 'db351ea0802a427faa97635130409c30', timestamp: 1716485971, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:39:31.212 +02:00 [INF] Handling a message: pending_friend_accepted with ID: ab5d1fcadf9849f9bab911caf3505f6c, Correlation ID: db351ea0802a427faa97635130409c30, retry: 0 +2024-05-23 19:39:31.243 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:39:31.243 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.243 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.271 +02:00 [INF] Received HTTP response headers after 27.343ms - 200 +2024-05-23 19:39:31.271 +02:00 [INF] End processing HTTP request after 27.7366ms - 200 +2024-05-23 19:39:31.271 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:39:31.271 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:39:31.271 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:39:31.272 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:39:31.302 +02:00 [INF] Received HTTP response headers after 30.3581ms - 200 +2024-05-23 19:39:31.302 +02:00 [INF] End processing HTTP request after 30.7244ms - 200 +2024-05-23 19:39:31.302 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:39:31.330 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.331 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.359 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.387 +02:00 [INF] Handled a message: pending_friend_accepted with ID: ab5d1fcadf9849f9bab911caf3505f6c, Correlation ID: db351ea0802a427faa97635130409c30, retry: 0 +2024-05-23 19:39:31.388 +02:00 [INF] Received a message with ID: '657f2d8ea46947fd8cc9ff96bd42e506', Correlation ID: '0765e1bb50b34cd9af25e0f481c59208', timestamp: 1716485971, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:39:31.388 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 657f2d8ea46947fd8cc9ff96bd42e506, Correlation ID: 0765e1bb50b34cd9af25e0f481c59208, retry: 0 +2024-05-23 19:39:31.416 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:39:31.416 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.416 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.445 +02:00 [INF] Received HTTP response headers after 28.071ms - 200 +2024-05-23 19:39:31.445 +02:00 [INF] End processing HTTP request after 28.4796ms - 200 +2024-05-23 19:39:31.445 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:39:31.446 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:39:31.446 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:39:31.446 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:39:31.475 +02:00 [INF] Received HTTP response headers after 29.1591ms - 200 +2024-05-23 19:39:31.476 +02:00 [INF] End processing HTTP request after 29.5303ms - 200 +2024-05-23 19:39:31.476 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:39:31.504 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.535 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:39:31.565 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 657f2d8ea46947fd8cc9ff96bd42e506, Correlation ID: 0765e1bb50b34cd9af25e0f481c59208, retry: 0 +2024-05-23 19:39:41.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:39:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:41.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:41.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8795ms +2024-05-23 19:39:45.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:45.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:45.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:45.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8945ms +2024-05-23 19:39:46.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:39:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:46.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:46.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1832ms +2024-05-23 19:39:56.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:39:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:56.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:39:56.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.7897ms +2024-05-23 19:40:00.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:00.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:00.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:00.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9476ms +2024-05-23 19:40:01.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:01.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:01.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:01.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6326ms +2024-05-23 19:40:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:40:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:11.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:11.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5991ms +2024-05-23 19:40:15.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:15.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:15.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:15.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1332ms +2024-05-23 19:40:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:16.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5753ms +2024-05-23 19:40:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:40:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:26.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.5625ms +2024-05-23 19:40:30.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:30.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0305ms +2024-05-23 19:40:31.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:31.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3344ms +2024-05-23 19:40:41.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:40:41.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:41.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:41.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 52.2232ms +2024-05-23 19:40:45.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:45.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:45.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:45.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7922ms +2024-05-23 19:40:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:40:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.31ms +2024-05-23 19:40:56.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:40:56.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:56.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:40:56.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8564ms +2024-05-23 19:40:57.064 +02:00 [INF] Deregistering a service [id: notifications-service:9615fa2782564a349c588454bfc39346] from Consul... +2024-05-23 19:40:57.065 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:9615fa2782564a349c588454bfc39346" +2024-05-23 19:40:57.066 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9615fa2782564a349c588454bfc39346 +2024-05-23 19:40:57.066 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9615fa2782564a349c588454bfc39346 +2024-05-23 19:40:57.075 +02:00 [INF] Received HTTP response headers after 9.6006ms - 200 +2024-05-23 19:40:57.076 +02:00 [INF] End processing HTTP request after 9.9689ms - 200 +2024-05-23 19:40:57.076 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:40:57.076 +02:00 [INF] Deregistered a service [id: notifications-service:9615fa2782564a349c588454bfc39346] from Consul. +2024-05-23 19:41:03.642 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:41:03.693 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:41:03.736 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:41:03.794 +02:00 [INF] Registering a service [id: notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1] in Consul... +2024-05-23 19:41:03.812 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:41:03.816 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:41:03.816 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:41:03.824 +02:00 [INF] Received HTTP response headers after 5.8059ms - 200 +2024-05-23 19:41:03.825 +02:00 [INF] End processing HTTP request after 9.9314ms - 200 +2024-05-23 19:41:03.828 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:03.828 +02:00 [INF] Registered a service [id: notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1] in Consul. +2024-05-23 19:41:03.834 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:41:03.843 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:41:03.845 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:41:03.848 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:41:03.850 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:41:03.853 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:41:03.855 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:41:03.855 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:41:03.856 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:41:03.858 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:41:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:06.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:06.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:06.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 158.222ms +2024-05-23 19:41:07.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:07.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:07.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:07.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.0969ms +2024-05-23 19:41:11.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:41:11.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:11.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:11.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2882ms +2024-05-23 19:41:15.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:15.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:15.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7403ms +2024-05-23 19:41:16.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:16.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:16.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:16.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 45.737ms +2024-05-23 19:41:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:41:26.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:26.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:26.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.9438ms +2024-05-23 19:41:29.660 +02:00 [INF] Received a message with ID: '99cb81a4bd6c46f1914c78b2a1b9ef2f', Correlation ID: '3351e0407c4640c6b82f3c42c1b2f3b9', timestamp: 1716486089, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:41:29.660 +02:00 [INF] Received a message with ID: '75e896af4d8a41368eab3b3d2a3dc1b9', Correlation ID: '9119390fdef948e89f165c736c8ace39', timestamp: 1716486089, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:41:29.677 +02:00 [INF] Handling a message: friend_request_sent with ID: 75e896af4d8a41368eab3b3d2a3dc1b9, Correlation ID: 9119390fdef948e89f165c736c8ace39, retry: 0 +2024-05-23 19:41:29.677 +02:00 [INF] Handling a message: friend_invited with ID: 99cb81a4bd6c46f1914c78b2a1b9ef2f, Correlation ID: 3351e0407c4640c6b82f3c42c1b2f3b9, retry: 0 +2024-05-23 19:41:29.863 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:41:29.865 +02:00 [INF] Handled a message: friend_request_sent with ID: 75e896af4d8a41368eab3b3d2a3dc1b9, Correlation ID: 9119390fdef948e89f165c736c8ace39, retry: 0 +2024-05-23 19:41:29.979 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:41:29.979 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:29.980 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:30.014 +02:00 [INF] Received HTTP response headers after 34.2617ms - 200 +2024-05-23 19:41:30.015 +02:00 [INF] End processing HTTP request after 35.0686ms - 200 +2024-05-23 19:41:30.015 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:30.184 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:41:30.185 +02:00 [INF] Handled a message: friend_invited with ID: 99cb81a4bd6c46f1914c78b2a1b9ef2f, Correlation ID: 3351e0407c4640c6b82f3c42c1b2f3b9, retry: 0 +2024-05-23 19:41:30.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:30.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:30.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:30.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3131ms +2024-05-23 19:41:31.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:31.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:31.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:31.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3538ms +2024-05-23 19:41:41.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:41:41.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:41.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:41.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.7288ms +2024-05-23 19:41:45.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:45.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:45.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0289ms +2024-05-23 19:41:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:41:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:46.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:46.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7671ms +2024-05-23 19:41:49.408 +02:00 [INF] Received a message with ID: '9862b6f753c94a898886d17e0cd645b1', Correlation ID: '453156d617974c729d7f1635f1189fe1', timestamp: 1716486109, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:41:49.409 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 9862b6f753c94a898886d17e0cd645b1, Correlation ID: 453156d617974c729d7f1635f1189fe1, retry: 0 +2024-05-23 19:41:49.439 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:41:49.440 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.440 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.471 +02:00 [INF] Received HTTP response headers after 31.0685ms - 200 +2024-05-23 19:41:49.471 +02:00 [INF] End processing HTTP request after 31.6581ms - 200 +2024-05-23 19:41:49.471 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:49.472 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:41:49.472 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:41:49.472 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:41:49.499 +02:00 [INF] Received HTTP response headers after 26.6143ms - 200 +2024-05-23 19:41:49.499 +02:00 [INF] End processing HTTP request after 27.0403ms - 200 +2024-05-23 19:41:49.499 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:49.525 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.525 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.553 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 9862b6f753c94a898886d17e0cd645b1, Correlation ID: 453156d617974c729d7f1635f1189fe1, retry: 0 +2024-05-23 19:41:49.553 +02:00 [INF] Received a message with ID: '9ca24a2245024056acef1ffc6be36519', Correlation ID: 'ec3f72ae28c44cf8a73269b9228c4aeb', timestamp: 1716486109, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:41:49.554 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 9ca24a2245024056acef1ffc6be36519, Correlation ID: ec3f72ae28c44cf8a73269b9228c4aeb, retry: 0 +2024-05-23 19:41:49.725 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:41:49.725 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.726 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.788 +02:00 [INF] Received HTTP response headers after 62.5764ms - 200 +2024-05-23 19:41:49.788 +02:00 [INF] End processing HTTP request after 63.0023ms - 200 +2024-05-23 19:41:49.789 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:49.789 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:41:49.789 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:41:49.789 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:41:49.816 +02:00 [INF] Received HTTP response headers after 26.5066ms - 200 +2024-05-23 19:41:49.816 +02:00 [INF] End processing HTTP request after 26.8846ms - 200 +2024-05-23 19:41:49.816 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:41:49.843 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.843 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:41:49.874 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 9ca24a2245024056acef1ffc6be36519, Correlation ID: ec3f72ae28c44cf8a73269b9228c4aeb, retry: 0 +2024-05-23 19:41:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:41:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:56.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:41:56.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 93.1013ms +2024-05-23 19:42:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:00.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:00.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 47.7859ms +2024-05-23 19:42:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:01.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:01.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 307.8992ms +2024-05-23 19:42:03.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:03.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:03.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:03.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 69.6823ms +2024-05-23 19:42:11.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:42:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:11.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:11.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.3898ms +2024-05-23 19:42:15.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:15.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:15.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:15.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 64.9575ms +2024-05-23 19:42:16.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:16.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:16.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:16.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 46.4653ms +2024-05-23 19:42:26.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:42:26.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:26.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.2713ms +2024-05-23 19:42:30.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:30.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:30.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:30.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.5541ms +2024-05-23 19:42:31.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:31.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:31.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:31.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5487ms +2024-05-23 19:42:41.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:42:41.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:41.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:41.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.724ms +2024-05-23 19:42:45.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:45.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:45.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5739ms +2024-05-23 19:42:46.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:42:46.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:46.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:46.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 42.9761ms +2024-05-23 19:42:56.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:42:56.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:56.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:42:56.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9223ms +2024-05-23 19:43:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:00.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:00.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.541ms +2024-05-23 19:43:01.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:01.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:01.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:01.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.5364ms +2024-05-23 19:43:11.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:43:11.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:11.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:11.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.437ms +2024-05-23 19:43:15.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:15.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:15.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:15.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9235ms +2024-05-23 19:43:16.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:16.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:16.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:16.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9761ms +2024-05-23 19:43:26.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:43:26.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:26.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:26.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.1793ms +2024-05-23 19:43:30.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:30.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:30.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7218ms +2024-05-23 19:43:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:31.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.996ms +2024-05-23 19:43:41.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:43:41.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:41.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:41.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5139ms +2024-05-23 19:43:45.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:45.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:45.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8717ms +2024-05-23 19:43:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:43:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:46.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.1154ms +2024-05-23 19:43:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:43:56.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:56.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:43:56.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7183ms +2024-05-23 19:44:00.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:00.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:00.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:00.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7326ms +2024-05-23 19:44:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:01.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:01.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8177ms +2024-05-23 19:44:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:44:11.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:11.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:11.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.986ms +2024-05-23 19:44:15.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:15.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:15.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:15.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8648ms +2024-05-23 19:44:16.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:16.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:16.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:16.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2348ms +2024-05-23 19:44:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:44:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:26.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:26.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4894ms +2024-05-23 19:44:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:30.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:30.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6892ms +2024-05-23 19:44:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:31.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2219ms +2024-05-23 19:44:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:44:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:41.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:41.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.0754ms +2024-05-23 19:44:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:45.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:45.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9377ms +2024-05-23 19:44:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:44:46.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:46.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.1814ms +2024-05-23 19:44:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:44:56.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:44:56.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2726ms +2024-05-23 19:45:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:00.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:00.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4578ms +2024-05-23 19:45:01.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:01.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:01.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0892ms +2024-05-23 19:45:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:45:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:11.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:11.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.0878ms +2024-05-23 19:45:15.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:15.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.6798ms +2024-05-23 19:45:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:16.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:16.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:16.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5626ms +2024-05-23 19:45:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:45:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:26.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9634ms +2024-05-23 19:45:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:30.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7298ms +2024-05-23 19:45:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5673ms +2024-05-23 19:45:36.407 +02:00 [INF] Deregistering a service [id: notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1] from Consul... +2024-05-23 19:45:36.408 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1" +2024-05-23 19:45:36.408 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1 +2024-05-23 19:45:36.408 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1 +2024-05-23 19:45:36.419 +02:00 [INF] Received HTTP response headers after 10.6316ms - 200 +2024-05-23 19:45:36.419 +02:00 [INF] End processing HTTP request after 10.9689ms - 200 +2024-05-23 19:45:36.419 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:45:36.420 +02:00 [INF] Deregistered a service [id: notifications-service:6dee0d0cb7ea41128316fa6abb4db2e1] from Consul. +2024-05-23 19:45:43.133 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:45:43.183 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:45:43.256 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:45:43.317 +02:00 [INF] Registering a service [id: notifications-service:1ce959c2d9ed420eb7859def5d8c4589] in Consul... +2024-05-23 19:45:43.336 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:45:43.340 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:45:43.340 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:45:43.354 +02:00 [INF] Received HTTP response headers after 11.1075ms - 200 +2024-05-23 19:45:43.354 +02:00 [INF] End processing HTTP request after 15.4764ms - 200 +2024-05-23 19:45:43.357 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:45:43.358 +02:00 [INF] Registered a service [id: notifications-service:1ce959c2d9ed420eb7859def5d8c4589] in Consul. +2024-05-23 19:45:43.363 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:45:43.363 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:45:43.364 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:45:43.372 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:45:43.374 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:45:43.376 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:45:43.380 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:45:43.382 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:45:43.385 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:45:43.387 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:45:43.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:45:43.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:44.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:44.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 143.0368ms +2024-05-23 19:45:45.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:45.285 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:45.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:45.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.2197ms +2024-05-23 19:45:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:45:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:46.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:46.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 43.6489ms +2024-05-23 19:45:46.602 +02:00 [INF] Deregistering a service [id: notifications-service:1ce959c2d9ed420eb7859def5d8c4589] from Consul... +2024-05-23 19:45:46.604 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1ce959c2d9ed420eb7859def5d8c4589" +2024-05-23 19:45:46.604 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1ce959c2d9ed420eb7859def5d8c4589 +2024-05-23 19:45:46.604 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1ce959c2d9ed420eb7859def5d8c4589 +2024-05-23 19:45:46.606 +02:00 [INF] Received HTTP response headers after 1.4493ms - 200 +2024-05-23 19:45:46.606 +02:00 [INF] End processing HTTP request after 1.9297ms - 200 +2024-05-23 19:45:46.606 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:45:46.607 +02:00 [INF] Deregistered a service [id: notifications-service:1ce959c2d9ed420eb7859def5d8c4589] from Consul. +2024-05-23 19:45:54.507 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:45:54.560 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:45:54.634 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:45:54.690 +02:00 [INF] Registering a service [id: notifications-service:f2a8db431d7542ca82c5f2df109e3f5c] in Consul... +2024-05-23 19:45:54.709 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:45:54.712 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:45:54.713 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:45:54.724 +02:00 [INF] Received HTTP response headers after 8.4131ms - 200 +2024-05-23 19:45:54.725 +02:00 [INF] End processing HTTP request after 12.8545ms - 200 +2024-05-23 19:45:54.728 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:45:54.730 +02:00 [INF] Registered a service [id: notifications-service:f2a8db431d7542ca82c5f2df109e3f5c] in Consul. +2024-05-23 19:45:54.738 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:45:54.743 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:45:54.744 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:45:54.751 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:45:54.754 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:45:54.756 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:45:54.758 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:45:54.762 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:45:54.766 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:45:54.768 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:45:56.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:45:57.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:57.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:45:57.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 158.2166ms +2024-05-23 19:46:00.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:00.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:00.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:00.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.8803ms +2024-05-23 19:46:01.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:01.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:01.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:01.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.3935ms +2024-05-23 19:46:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:46:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.8149ms +2024-05-23 19:46:15.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:15.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:15.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0652ms +2024-05-23 19:46:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:16.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:16.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7964ms +2024-05-23 19:46:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:46:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:26.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:26.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.1503ms +2024-05-23 19:46:30.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:30.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:30.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1877ms +2024-05-23 19:46:30.894 +02:00 [INF] Received a message with ID: '207d9737027046c296dd1da4a9a2c833', Correlation ID: '800548523f074c8e8ebf6c87a96314fb', timestamp: 1716486390, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:46:30.894 +02:00 [INF] Received a message with ID: 'edaf156a44914c1197bbcf06ab0fd26f', Correlation ID: '5c741047ff9740f1be7cacc2d8ac2503', timestamp: 1716486390, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:46:30.914 +02:00 [INF] Handling a message: friend_request_sent with ID: 207d9737027046c296dd1da4a9a2c833, Correlation ID: 800548523f074c8e8ebf6c87a96314fb, retry: 0 +2024-05-23 19:46:30.914 +02:00 [INF] Handling a message: friend_invited with ID: edaf156a44914c1197bbcf06ab0fd26f, Correlation ID: 5c741047ff9740f1be7cacc2d8ac2503, retry: 0 +2024-05-23 19:46:31.096 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:46:31.098 +02:00 [INF] Handled a message: friend_request_sent with ID: 207d9737027046c296dd1da4a9a2c833, Correlation ID: 800548523f074c8e8ebf6c87a96314fb, retry: 0 +2024-05-23 19:46:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:31.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:31.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8225ms +2024-05-23 19:46:31.254 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:46:31.255 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:31.255 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:31.285 +02:00 [INF] Received HTTP response headers after 30.3162ms - 200 +2024-05-23 19:46:31.285 +02:00 [INF] End processing HTTP request after 30.7873ms - 200 +2024-05-23 19:46:31.286 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:46:31.393 +02:00 [ERR] There was an error when processing a message with id: 'edaf156a44914c1197bbcf06ab0fd26f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:46:31.408 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:46:31.409 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'edaf156a44914c1197bbcf06ab0fd26f', Correlation ID: '5c741047ff9740f1be7cacc2d8ac2503', retry 1/3... +2024-05-23 19:46:33.411 +02:00 [INF] Handling a message: friend_invited with ID: edaf156a44914c1197bbcf06ab0fd26f, Correlation ID: 5c741047ff9740f1be7cacc2d8ac2503, retry: 1 +2024-05-23 19:46:33.441 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:46:33.442 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:33.442 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:33.471 +02:00 [INF] Received HTTP response headers after 28.7411ms - 200 +2024-05-23 19:46:33.471 +02:00 [INF] End processing HTTP request after 29.2609ms - 200 +2024-05-23 19:46:33.471 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:46:33.556 +02:00 [ERR] There was an error when processing a message with id: 'edaf156a44914c1197bbcf06ab0fd26f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:46:33.557 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:46:33.558 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'edaf156a44914c1197bbcf06ab0fd26f', Correlation ID: '5c741047ff9740f1be7cacc2d8ac2503', retry 2/3... +2024-05-23 19:46:35.559 +02:00 [INF] Handling a message: friend_invited with ID: edaf156a44914c1197bbcf06ab0fd26f, Correlation ID: 5c741047ff9740f1be7cacc2d8ac2503, retry: 2 +2024-05-23 19:46:35.587 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:46:35.587 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:35.588 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:35.618 +02:00 [INF] Received HTTP response headers after 30.3954ms - 200 +2024-05-23 19:46:35.618 +02:00 [INF] End processing HTTP request after 31.0447ms - 200 +2024-05-23 19:46:35.619 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:46:35.702 +02:00 [ERR] There was an error when processing a message with id: 'edaf156a44914c1197bbcf06ab0fd26f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:46:35.703 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:46:35.704 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'edaf156a44914c1197bbcf06ab0fd26f', Correlation ID: '5c741047ff9740f1be7cacc2d8ac2503', retry 3/3... +2024-05-23 19:46:37.703 +02:00 [INF] Handling a message: friend_invited with ID: edaf156a44914c1197bbcf06ab0fd26f, Correlation ID: 5c741047ff9740f1be7cacc2d8ac2503, retry: 3 +2024-05-23 19:46:37.732 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:46:37.732 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:37.732 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:46:37.761 +02:00 [INF] Received HTTP response headers after 28.6745ms - 200 +2024-05-23 19:46:37.762 +02:00 [INF] End processing HTTP request after 29.4497ms - 200 +2024-05-23 19:46:37.762 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:46:37.849 +02:00 [ERR] There was an error when processing a message with id: 'edaf156a44914c1197bbcf06ab0fd26f'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:46:37.851 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Repositories.StudentNotificationsMongoRepository.UpdateAsync(StudentNotifications studentNotifications) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Repositories/StudentNotificationsMongoRepository.cs:line 42 + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.FriendInvitedHandler.HandleAsync(FriendInvited event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/FriendInvitedHandler.cs:line 92 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:46:37.853 +02:00 [ERR] Unable to handle a message: 'friend_invited' with ID: 'edaf156a44914c1197bbcf06ab0fd26f', Correlation ID: '5c741047ff9740f1be7cacc2d8ac2503', retry 4/3... +2024-05-23 19:46:37.853 +02:00 [ERR] Handling a message: friend_invited with ID: edaf156a44914c1197bbcf06ab0fd26f, Correlation ID: 5c741047ff9740f1be7cacc2d8ac2503 failed +2024-05-23 19:46:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:46:41.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:41.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:41.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6689ms +2024-05-23 19:46:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:45.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:45.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:45.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3373ms +2024-05-23 19:46:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:46:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:46.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:46.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.7365ms +2024-05-23 19:46:56.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:46:56.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:46:56.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.1199ms +2024-05-23 19:47:00.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:00.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:00.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.3899ms +2024-05-23 19:47:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:01.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:01.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:01.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0222ms +2024-05-23 19:47:11.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:47:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.411ms +2024-05-23 19:47:15.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:15.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9662ms +2024-05-23 19:47:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0048ms +2024-05-23 19:47:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:47:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:26.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 25.9947ms +2024-05-23 19:47:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.249ms +2024-05-23 19:47:31.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:31.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:31.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:31.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8333ms +2024-05-23 19:47:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:47:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9077ms +2024-05-23 19:47:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:45.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:45.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:45.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 269.8225ms +2024-05-23 19:47:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:47:46.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:46.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:47:46.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 220.4095ms +2024-05-23 19:47:53.040 +02:00 [INF] Deregistering a service [id: notifications-service:f2a8db431d7542ca82c5f2df109e3f5c] from Consul... +2024-05-23 19:47:53.040 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:f2a8db431d7542ca82c5f2df109e3f5c" +2024-05-23 19:47:53.041 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f2a8db431d7542ca82c5f2df109e3f5c +2024-05-23 19:47:53.041 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f2a8db431d7542ca82c5f2df109e3f5c +2024-05-23 19:47:53.048 +02:00 [INF] Received HTTP response headers after 6.7993ms - 200 +2024-05-23 19:47:53.048 +02:00 [INF] End processing HTTP request after 7.1346ms - 200 +2024-05-23 19:47:53.048 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:47:53.048 +02:00 [INF] Deregistered a service [id: notifications-service:f2a8db431d7542ca82c5f2df109e3f5c] from Consul. +2024-05-23 19:48:01.608 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:48:01.687 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:48:01.775 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:48:01.852 +02:00 [INF] Registering a service [id: notifications-service:fa5396fed5594fe5b53365038c05502e] in Consul... +2024-05-23 19:48:01.878 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:48:01.883 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:48:01.884 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:48:01.895 +02:00 [INF] Received HTTP response headers after 8.2432ms - 200 +2024-05-23 19:48:01.897 +02:00 [INF] End processing HTTP request after 14.9271ms - 200 +2024-05-23 19:48:01.901 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:01.902 +02:00 [INF] Registered a service [id: notifications-service:fa5396fed5594fe5b53365038c05502e] in Consul. +2024-05-23 19:48:01.912 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:48:01.927 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:48:01.933 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:48:01.936 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:48:01.939 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:48:01.942 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:48:01.946 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:48:01.948 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:48:02.083 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:48:02.084 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:48:02.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:02.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:02.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:02.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 162.2723ms +2024-05-23 19:48:02.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:48:02.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:02.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:02.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 47.6153ms +2024-05-23 19:48:03.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:03.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:03.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:03.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.5655ms +2024-05-23 19:48:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:48:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:11.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:11.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.316ms +2024-05-23 19:48:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:15.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:15.414 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 138.7002ms +2024-05-23 19:48:16.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:16.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:16.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:16.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 41.7831ms +2024-05-23 19:48:23.248 +02:00 [INF] Received a message with ID: '2ef55fa969014826bbe1addb8276a2aa', Correlation ID: 'f8caa624075d4615b0b64b5e2dafe59b', timestamp: 1716486503, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:48:23.248 +02:00 [INF] Received a message with ID: '81b79323359f40b892c421b0c2eae153', Correlation ID: '88cea722353d436dbb1cfd894350eb4b', timestamp: 1716486503, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:48:23.264 +02:00 [INF] Handling a message: friend_invited with ID: 2ef55fa969014826bbe1addb8276a2aa, Correlation ID: f8caa624075d4615b0b64b5e2dafe59b, retry: 0 +2024-05-23 19:48:23.264 +02:00 [INF] Handling a message: friend_request_sent with ID: 81b79323359f40b892c421b0c2eae153, Correlation ID: 88cea722353d436dbb1cfd894350eb4b, retry: 0 +2024-05-23 19:48:23.316 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:48:23.317 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:23.317 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:23.353 +02:00 [INF] Received HTTP response headers after 36.1466ms - 200 +2024-05-23 19:48:23.353 +02:00 [INF] End processing HTTP request after 36.8429ms - 200 +2024-05-23 19:48:23.354 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:23.450 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:48:23.452 +02:00 [INF] Handled a message: friend_request_sent with ID: 81b79323359f40b892c421b0c2eae153, Correlation ID: 88cea722353d436dbb1cfd894350eb4b, retry: 0 +2024-05-23 19:48:23.553 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:48:23.554 +02:00 [INF] Handled a message: friend_invited with ID: 2ef55fa969014826bbe1addb8276a2aa, Correlation ID: f8caa624075d4615b0b64b5e2dafe59b, retry: 0 +2024-05-23 19:48:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:48:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:26.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:26.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.516ms +2024-05-23 19:48:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:30.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0974ms +2024-05-23 19:48:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:31.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:31.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7399ms +2024-05-23 19:48:36.053 +02:00 [INF] Received a message with ID: 'e88bdeeaa4f045db9e363f4a8cea46a2', Correlation ID: 'e52598216e594e80b348b88f4143344d', timestamp: 1716486516, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:48:36.058 +02:00 [INF] Handling a message: pending_friend_accepted with ID: e88bdeeaa4f045db9e363f4a8cea46a2, Correlation ID: e52598216e594e80b348b88f4143344d, retry: 0 +2024-05-23 19:48:36.098 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:48:36.098 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.098 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.128 +02:00 [INF] Received HTTP response headers after 29.5208ms - 200 +2024-05-23 19:48:36.128 +02:00 [INF] End processing HTTP request after 30.0137ms - 200 +2024-05-23 19:48:36.128 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:36.129 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:48:36.129 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:48:36.129 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:48:36.159 +02:00 [INF] Received HTTP response headers after 29.9078ms - 200 +2024-05-23 19:48:36.160 +02:00 [INF] End processing HTTP request after 30.7233ms - 200 +2024-05-23 19:48:36.160 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:36.189 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.189 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.224 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.256 +02:00 [INF] Published NotificationCreated event for NotificationId=c29652b6-7a55-4ceb-8874-1018fe68a9f7 +2024-05-23 19:48:36.286 +02:00 [INF] Handled a message: pending_friend_accepted with ID: e88bdeeaa4f045db9e363f4a8cea46a2, Correlation ID: e52598216e594e80b348b88f4143344d, retry: 0 +2024-05-23 19:48:36.286 +02:00 [INF] Received a message with ID: '3dc2adff544b4db193ebc1e9a0044d3f', Correlation ID: '620a271ada874c3c887bdc642d15ad79', timestamp: 1716486516, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:48:36.287 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 3dc2adff544b4db193ebc1e9a0044d3f, Correlation ID: 620a271ada874c3c887bdc642d15ad79, retry: 0 +2024-05-23 19:48:36.315 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:48:36.315 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.315 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.344 +02:00 [INF] Received HTTP response headers after 28.3123ms - 200 +2024-05-23 19:48:36.344 +02:00 [INF] End processing HTTP request after 28.7651ms - 200 +2024-05-23 19:48:36.344 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:36.344 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:48:36.345 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:48:36.345 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:48:36.372 +02:00 [INF] Received HTTP response headers after 26.8093ms - 200 +2024-05-23 19:48:36.372 +02:00 [INF] End processing HTTP request after 27.2652ms - 200 +2024-05-23 19:48:36.372 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:48:36.401 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.434 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:48:36.467 +02:00 [INF] Published NotificationCreated event for NotificationId=b3dbc91a-6b28-4a70-90e4-718dc115c582 +2024-05-23 19:48:36.499 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 3dc2adff544b4db193ebc1e9a0044d3f, Correlation ID: 620a271ada874c3c887bdc642d15ad79, retry: 0 +2024-05-23 19:48:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:48:41.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:41.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:41.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.8247ms +2024-05-23 19:48:45.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:45.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:45.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:45.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.5123ms +2024-05-23 19:48:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:48:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7641ms +2024-05-23 19:48:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:48:56.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:56.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:48:56.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1589ms +2024-05-23 19:49:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:00.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:00.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.0578ms +2024-05-23 19:49:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:01.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:01.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.1404ms +2024-05-23 19:49:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:49:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.482ms +2024-05-23 19:49:15.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:15.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:15.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:15.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7891ms +2024-05-23 19:49:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5736ms +2024-05-23 19:49:26.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:49:26.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:26.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9246ms +2024-05-23 19:49:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:30.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:30.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.0055ms +2024-05-23 19:49:31.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:31.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3461ms +2024-05-23 19:49:36.250 +02:00 [INF] Deregistering a service [id: notifications-service:fa5396fed5594fe5b53365038c05502e] from Consul... +2024-05-23 19:49:36.251 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:fa5396fed5594fe5b53365038c05502e" +2024-05-23 19:49:36.251 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fa5396fed5594fe5b53365038c05502e +2024-05-23 19:49:36.252 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:fa5396fed5594fe5b53365038c05502e +2024-05-23 19:49:36.255 +02:00 [INF] Received HTTP response headers after 3.1296ms - 200 +2024-05-23 19:49:36.256 +02:00 [INF] End processing HTTP request after 4.1605ms - 200 +2024-05-23 19:49:36.256 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:49:36.257 +02:00 [INF] Deregistered a service [id: notifications-service:fa5396fed5594fe5b53365038c05502e] from Consul. +2024-05-23 19:49:42.929 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:49:42.977 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:49:43.050 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:49:43.122 +02:00 [INF] Registering a service [id: notifications-service:de49c6fa04bf44329c8857264c121774] in Consul... +2024-05-23 19:49:43.147 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:49:43.151 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:49:43.152 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:49:43.161 +02:00 [INF] Received HTTP response headers after 6.8549ms - 200 +2024-05-23 19:49:43.163 +02:00 [INF] End processing HTTP request after 12.648ms - 200 +2024-05-23 19:49:43.166 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:49:43.167 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:49:43.167 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:49:43.168 +02:00 [INF] Registered a service [id: notifications-service:de49c6fa04bf44329c8857264c121774] in Consul. +2024-05-23 19:49:43.175 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:49:43.188 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:49:43.192 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:49:43.194 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:49:43.198 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:49:43.201 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:49:43.204 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:49:43.206 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:49:43.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:49:44.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:44.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:44.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 114.7301ms +2024-05-23 19:49:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:45.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:45.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:45.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5218ms +2024-05-23 19:49:46.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:49:46.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:46.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:46.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.4772ms +2024-05-23 19:49:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:49:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:49:56.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1369ms +2024-05-23 19:50:00.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:00.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:00.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.825ms +2024-05-23 19:50:01.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:01.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.4162ms +2024-05-23 19:50:06.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:06.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:06.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:06.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5775ms +2024-05-23 19:50:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:06.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:06.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5847ms +2024-05-23 19:50:08.012 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:08.013 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:08.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:08.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7373ms +2024-05-23 19:50:08.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:08.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:08.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1387ms +2024-05-23 19:50:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:50:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.27ms +2024-05-23 19:50:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9863ms +2024-05-23 19:50:16.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:16.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:16.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:16.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.679ms +2024-05-23 19:50:21.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:21.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:21.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:21.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.43ms +2024-05-23 19:50:23.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:23.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:23.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:23.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.3358ms +2024-05-23 19:50:24.679 +02:00 [INF] Received a message with ID: 'f69b17705aef49f18a2f1dc23a76dc4f', Correlation ID: '7c8ca65d1f5b4ed8ba93bc4b207b1e5e', timestamp: 1716486624, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:50:24.679 +02:00 [INF] Received a message with ID: 'fab2572f2d3f4aaabdc99ea5c00dcc58', Correlation ID: 'dafc86f26d1c47b1ab7e824fd96324c1', timestamp: 1716486624, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:50:24.691 +02:00 [INF] Handling a message: friend_request_sent with ID: f69b17705aef49f18a2f1dc23a76dc4f, Correlation ID: 7c8ca65d1f5b4ed8ba93bc4b207b1e5e, retry: 0 +2024-05-23 19:50:24.691 +02:00 [INF] Handling a message: friend_invited with ID: fab2572f2d3f4aaabdc99ea5c00dcc58, Correlation ID: dafc86f26d1c47b1ab7e824fd96324c1, retry: 0 +2024-05-23 19:50:24.896 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:50:24.898 +02:00 [INF] Handled a message: friend_request_sent with ID: f69b17705aef49f18a2f1dc23a76dc4f, Correlation ID: 7c8ca65d1f5b4ed8ba93bc4b207b1e5e, retry: 0 +2024-05-23 19:50:25.034 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:50:25.034 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:50:25.034 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:50:25.068 +02:00 [INF] Received HTTP response headers after 33.9517ms - 200 +2024-05-23 19:50:25.069 +02:00 [INF] End processing HTTP request after 34.4066ms - 200 +2024-05-23 19:50:25.069 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:50:25.270 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:50:25.271 +02:00 [INF] Handled a message: friend_invited with ID: fab2572f2d3f4aaabdc99ea5c00dcc58, Correlation ID: dafc86f26d1c47b1ab7e824fd96324c1, retry: 0 +2024-05-23 19:50:26.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:50:26.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:26.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:26.935 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:50:26.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 58.0047ms +2024-05-23 19:50:30.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:30.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:30.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6808ms +2024-05-23 19:50:31.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:31.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:31.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:31.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0621ms +2024-05-23 19:50:36.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:36.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:36.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.6227ms +2024-05-23 19:50:38.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:38.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:38.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:38.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1387ms +2024-05-23 19:50:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:50:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:41.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:41.928 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:50:41.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 41.0745ms +2024-05-23 19:50:45.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:45.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:45.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:45.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9659ms +2024-05-23 19:50:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.7597ms +2024-05-23 19:50:51.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:51.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:51.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.59ms +2024-05-23 19:50:53.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:50:53.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:53.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:53.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6931ms +2024-05-23 19:50:56.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:50:56.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:56.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:50:56.925 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:50:56.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 40.4826ms +2024-05-23 19:51:00.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:00.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:00.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6477ms +2024-05-23 19:51:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:01.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:01.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4393ms +2024-05-23 19:51:06.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:06.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:06.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:06.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6613ms +2024-05-23 19:51:08.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:08.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4243ms +2024-05-23 19:51:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:51:11.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:11.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:11.934 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:51:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 43.4722ms +2024-05-23 19:51:15.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:15.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:15.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:15.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8145ms +2024-05-23 19:51:16.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:16.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0474ms +2024-05-23 19:51:21.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:21.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:21.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:21.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2561ms +2024-05-23 19:51:22.536 +02:00 [INF] Deregistering a service [id: notifications-service:de49c6fa04bf44329c8857264c121774] from Consul... +2024-05-23 19:51:22.537 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:de49c6fa04bf44329c8857264c121774" +2024-05-23 19:51:22.538 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:de49c6fa04bf44329c8857264c121774 +2024-05-23 19:51:22.538 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:de49c6fa04bf44329c8857264c121774 +2024-05-23 19:51:22.543 +02:00 [INF] Received HTTP response headers after 5.4874ms - 200 +2024-05-23 19:51:22.544 +02:00 [INF] End processing HTTP request after 5.9695ms - 200 +2024-05-23 19:51:22.544 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:51:22.544 +02:00 [INF] Deregistered a service [id: notifications-service:de49c6fa04bf44329c8857264c121774] from Consul. +2024-05-23 19:51:28.352 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:51:28.414 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:51:28.466 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:51:28.524 +02:00 [INF] Registering a service [id: notifications-service:741060ad9e0740e09497ea859489f308] in Consul... +2024-05-23 19:51:28.544 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:51:28.547 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:51:28.547 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:51:28.556 +02:00 [INF] Received HTTP response headers after 6.8778ms - 200 +2024-05-23 19:51:28.557 +02:00 [INF] End processing HTTP request after 10.9272ms - 200 +2024-05-23 19:51:28.560 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:51:28.560 +02:00 [INF] Registered a service [id: notifications-service:741060ad9e0740e09497ea859489f308] in Consul. +2024-05-23 19:51:28.566 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:51:28.578 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:51:28.581 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:51:28.583 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:51:28.586 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:51:28.587 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:51:28.587 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:51:28.588 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:51:28.591 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:51:28.592 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:51:28.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:51:28.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:29.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:29.046 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:51:29.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:29.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:29.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 145.8422ms +2024-05-23 19:51:29.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:29.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 49.4059ms +2024-05-23 19:51:30.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:30.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:30.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:30.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7217ms +2024-05-23 19:51:31.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:31.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:31.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.708ms +2024-05-23 19:51:36.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:36.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:36.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1449ms +2024-05-23 19:51:38.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:38.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:38.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:38.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.398ms +2024-05-23 19:51:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:51:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:41.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.465ms +2024-05-23 19:51:45.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:45.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:45.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:45.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6466ms +2024-05-23 19:51:46.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:46.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:46.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:46.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.5077ms +2024-05-23 19:51:51.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:51.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:51.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:51.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.3817ms +2024-05-23 19:51:53.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:51:53.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:53.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:53.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.2112ms +2024-05-23 19:51:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:51:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:51:56.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6806ms +2024-05-23 19:51:58.786 +02:00 [INF] Received a message with ID: '43c94d8a117c41748227da9990ec3f25', Correlation ID: 'cb0df490539d41d79e196628da52f1f4', timestamp: 1716486718, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:51:58.786 +02:00 [INF] Received a message with ID: '78144d3913bf412fb3fc80d005561220', Correlation ID: 'd900b8e9e37845fbb30da2e2eb61bea0', timestamp: 1716486718, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:51:58.802 +02:00 [INF] Handling a message: friend_request_sent with ID: 78144d3913bf412fb3fc80d005561220, Correlation ID: d900b8e9e37845fbb30da2e2eb61bea0, retry: 0 +2024-05-23 19:51:58.802 +02:00 [INF] Handling a message: friend_invited with ID: 43c94d8a117c41748227da9990ec3f25, Correlation ID: cb0df490539d41d79e196628da52f1f4, retry: 0 +2024-05-23 19:51:58.855 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:51:58.856 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:51:58.856 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:51:58.896 +02:00 [INF] Received HTTP response headers after 40.077ms - 200 +2024-05-23 19:51:58.896 +02:00 [INF] End processing HTTP request after 40.785ms - 200 +2024-05-23 19:51:58.896 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:51:59.156 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:51:59.158 +02:00 [INF] Handled a message: friend_invited with ID: 43c94d8a117c41748227da9990ec3f25, Correlation ID: cb0df490539d41d79e196628da52f1f4, retry: 0 +2024-05-23 19:51:59.220 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:51:59.220 +02:00 [INF] Handled a message: friend_request_sent with ID: 78144d3913bf412fb3fc80d005561220, Correlation ID: d900b8e9e37845fbb30da2e2eb61bea0, retry: 0 +2024-05-23 19:52:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:00.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:00.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1329ms +2024-05-23 19:52:01.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:01.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:01.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:01.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.0027ms +2024-05-23 19:52:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:06.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:06.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:06.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.4315ms +2024-05-23 19:52:08.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:08.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:08.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:08.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9459ms +2024-05-23 19:52:11.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:52:11.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:11.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:11.927 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:52:11.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 34.4123ms +2024-05-23 19:52:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7435ms +2024-05-23 19:52:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:16.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:16.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.8656ms +2024-05-23 19:52:21.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:21.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:21.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:21.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8295ms +2024-05-23 19:52:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:23.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:23.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6981ms +2024-05-23 19:52:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:52:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:26.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:26.920 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:52:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 33.7238ms +2024-05-23 19:52:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:30.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.8034ms +2024-05-23 19:52:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:31.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:31.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2843ms +2024-05-23 19:52:36.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:36.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:36.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3358ms +2024-05-23 19:52:38.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:38.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:38.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:38.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.6866ms +2024-05-23 19:52:41.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:52:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:41.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:41.916 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:52:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 30.8921ms +2024-05-23 19:52:45.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:45.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:45.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1372ms +2024-05-23 19:52:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:46.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4233ms +2024-05-23 19:52:51.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:51.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:51.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 25.9639ms +2024-05-23 19:52:53.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:52:53.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:53.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:53.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2752ms +2024-05-23 19:52:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:52:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:52:56.919 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:52:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 32.3233ms +2024-05-23 19:53:00.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:00.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:00.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:00.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.32ms +2024-05-23 19:53:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:01.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:01.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:01.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6ms +2024-05-23 19:53:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:06.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:06.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.93ms +2024-05-23 19:53:08.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:08.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:08.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:08.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9857ms +2024-05-23 19:53:11.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:53:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:11.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:11.926 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:53:11.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 38.8802ms +2024-05-23 19:53:15.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:15.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:15.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:15.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.3316ms +2024-05-23 19:53:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:16.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:16.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:16.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3691ms +2024-05-23 19:53:21.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:21.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:21.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:21.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.3952ms +2024-05-23 19:53:23.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:23.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:23.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:23.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0749ms +2024-05-23 19:53:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:53:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:26.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:26.916 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:53:26.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 29.7782ms +2024-05-23 19:53:30.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:30.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:30.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4054ms +2024-05-23 19:53:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:31.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5899ms +2024-05-23 19:53:36.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:36.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:36.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:36.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0327ms +2024-05-23 19:53:38.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:38.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:38.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:38.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.808ms +2024-05-23 19:53:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:53:41.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:41.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:41.924 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:53:41.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 38.1819ms +2024-05-23 19:53:45.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:45.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:45.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3526ms +2024-05-23 19:53:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0248ms +2024-05-23 19:53:51.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:51.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:51.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:51.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8162ms +2024-05-23 19:53:53.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:53:53.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:53.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:53.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7997ms +2024-05-23 19:53:56.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:53:56.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:56.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:53:56.925 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:53:56.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 37.2959ms +2024-05-23 19:54:00.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:00.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:00.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:00.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5424ms +2024-05-23 19:54:01.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:01.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7232ms +2024-05-23 19:54:06.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:06.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:06.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:06.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9175ms +2024-05-23 19:54:08.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:08.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6771ms +2024-05-23 19:54:11.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:54:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:11.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:11.921 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:54:11.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 31.8017ms +2024-05-23 19:54:15.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:15.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:15.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:15.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7903ms +2024-05-23 19:54:16.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:16.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:16.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:16.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7207ms +2024-05-23 19:54:21.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:21.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:21.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:21.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2299ms +2024-05-23 19:54:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:23.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:23.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:23.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7148ms +2024-05-23 19:54:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:54:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:26.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:26.917 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:54:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 31.0639ms +2024-05-23 19:54:30.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:30.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0141ms +2024-05-23 19:54:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:31.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:31.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 36.5998ms +2024-05-23 19:54:36.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:36.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:36.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:36.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7678ms +2024-05-23 19:54:38.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:38.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:38.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:38.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0405ms +2024-05-23 19:54:41.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:54:41.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:41.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:41.922 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:54:41.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 35.1026ms +2024-05-23 19:54:45.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:45.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:45.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:45.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1759ms +2024-05-23 19:54:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:46.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8908ms +2024-05-23 19:54:51.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:51.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:51.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:51.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1912ms +2024-05-23 19:54:53.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:54:53.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:53.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:54:53.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4338ms +2024-05-23 19:54:54.007 +02:00 [INF] Deregistering a service [id: notifications-service:741060ad9e0740e09497ea859489f308] from Consul... +2024-05-23 19:54:54.009 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:741060ad9e0740e09497ea859489f308" +2024-05-23 19:54:54.010 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:741060ad9e0740e09497ea859489f308 +2024-05-23 19:54:54.010 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:741060ad9e0740e09497ea859489f308 +2024-05-23 19:54:54.016 +02:00 [INF] Received HTTP response headers after 5.4716ms - 200 +2024-05-23 19:54:54.016 +02:00 [INF] End processing HTTP request after 6.4928ms - 200 +2024-05-23 19:54:54.017 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:54:54.018 +02:00 [INF] Deregistered a service [id: notifications-service:741060ad9e0740e09497ea859489f308] from Consul. +2024-05-23 19:54:59.182 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:54:59.245 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:54:59.320 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:54:59.387 +02:00 [INF] Registering a service [id: notifications-service:bec7facb04c74baca09f09f8c2a6cc40] in Consul... +2024-05-23 19:54:59.408 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:54:59.412 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:54:59.413 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:54:59.420 +02:00 [INF] Received HTTP response headers after 4.3777ms - 200 +2024-05-23 19:54:59.423 +02:00 [INF] End processing HTTP request after 11.4819ms - 200 +2024-05-23 19:54:59.426 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:54:59.427 +02:00 [INF] Registered a service [id: notifications-service:bec7facb04c74baca09f09f8c2a6cc40] in Consul. +2024-05-23 19:54:59.433 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:54:59.438 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:54:59.439 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:54:59.445 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:54:59.449 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:54:59.451 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:54:59.459 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:54:59.462 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:54:59.465 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:54:59.467 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:55:00.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:00.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:00.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:00.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 120.1817ms +2024-05-23 19:55:01.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:01.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8206ms +2024-05-23 19:55:02.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:55:02.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:02.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:02.963 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:55:02.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 92.778ms +2024-05-23 19:55:06.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:06.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:06.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:06.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.2513ms +2024-05-23 19:55:08.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:08.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:08.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.7118ms +2024-05-23 19:55:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:55:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:11.918 +02:00 [ERR] An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. +System.FormatException: An error occurred while deserializing the Id property of class MiniSpace.Services.Notifications.Infrastructure.Mongo.Documents.StudentNotificationsDocument: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + ---> System.FormatException: Cannot deserialize a 'Guid' from BsonType 'ObjectId'. + at MongoDB.Bson.Serialization.Serializers.GuidSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.Serializers.SerializerBase`1.MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize(IBsonSerializer serializer, BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + --- End of inner exception stack trace --- + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeMemberValue(BsonDeserializationContext context, BsonMemberMap memberMap) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.DeserializeClass(BsonDeserializationContext context) + at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) + at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Deserialize[TValue](IBsonSerializer`1 serializer, BsonDeserializationContext context) + at MongoDB.Driver.Core.Operations.CursorBatchDeserializationHelper.DeserializeBatch[TDocument](RawBsonArray batch, IBsonSerializer`1 documentSerializer, MessageEncoderSettings messageEncoderSettings) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateFirstCursorBatch(BsonDocument cursorDocument) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.CreateCursor(IChannelSourceHandle channelSource, IChannelHandle channel, BsonDocument commandResult) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 36 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 19:55:11.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 400 null application/json 32.5397ms +2024-05-23 19:55:15.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:15.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7392ms +2024-05-23 19:55:16.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:16.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:16.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:16.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.6569ms +2024-05-23 19:55:21.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:21.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:21.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:21.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4302ms +2024-05-23 19:55:23.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:23.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:23.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:23.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8276ms +2024-05-23 19:55:23.834 +02:00 [INF] Received a message with ID: 'a1396c44ae5a4736b64b4d7ca0767e7e', Correlation ID: '44d95e047a814debb9a967a917aff8c4', timestamp: 1716486923, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:55:23.834 +02:00 [INF] Received a message with ID: '4f0730eef62a4ce1babd02e989f30190', Correlation ID: 'c488f53b826d4cb2b3f2e09f9deaf374', timestamp: 1716486923, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:55:23.850 +02:00 [INF] Handling a message: friend_request_sent with ID: a1396c44ae5a4736b64b4d7ca0767e7e, Correlation ID: 44d95e047a814debb9a967a917aff8c4, retry: 0 +2024-05-23 19:55:23.850 +02:00 [INF] Handling a message: friend_invited with ID: 4f0730eef62a4ce1babd02e989f30190, Correlation ID: c488f53b826d4cb2b3f2e09f9deaf374, retry: 0 +2024-05-23 19:55:23.906 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:55:23.907 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:23.907 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:23.955 +02:00 [INF] Received HTTP response headers after 47.4448ms - 200 +2024-05-23 19:55:23.957 +02:00 [INF] End processing HTTP request after 50.4831ms - 200 +2024-05-23 19:55:23.958 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:55:24.186 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:55:24.188 +02:00 [INF] Handled a message: friend_invited with ID: 4f0730eef62a4ce1babd02e989f30190, Correlation ID: c488f53b826d4cb2b3f2e09f9deaf374, retry: 0 +2024-05-23 19:55:24.253 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:55:24.253 +02:00 [INF] Handled a message: friend_request_sent with ID: a1396c44ae5a4736b64b4d7ca0767e7e, Correlation ID: 44d95e047a814debb9a967a917aff8c4, retry: 0 +2024-05-23 19:55:26.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:55:26.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:26.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:26.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.866ms +2024-05-23 19:55:30.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:30.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:30.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:30.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 36.5919ms +2024-05-23 19:55:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:31.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1301ms +2024-05-23 19:55:33.766 +02:00 [INF] Received a message with ID: 'a249667b36654d2094326e6ed8aec1ee', Correlation ID: '4f19f732a93c4cd5ac8552e87e9458ba', timestamp: 1716486933, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:55:33.769 +02:00 [INF] Handling a message: pending_friend_accepted with ID: a249667b36654d2094326e6ed8aec1ee, Correlation ID: 4f19f732a93c4cd5ac8552e87e9458ba, retry: 0 +2024-05-23 19:55:33.807 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:55:33.808 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:33.808 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:33.842 +02:00 [INF] Received HTTP response headers after 34.588ms - 200 +2024-05-23 19:55:33.842 +02:00 [INF] End processing HTTP request after 34.9964ms - 200 +2024-05-23 19:55:33.843 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:55:33.843 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:55:33.843 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:55:33.843 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:55:33.870 +02:00 [INF] Received HTTP response headers after 26.3836ms - 200 +2024-05-23 19:55:33.870 +02:00 [INF] End processing HTTP request after 26.7198ms - 200 +2024-05-23 19:55:33.870 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:55:33.897 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:33.898 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:33.932 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:33.960 +02:00 [INF] Published NotificationCreated event for NotificationId=56dc88c0-e06e-4f9e-997a-bacb133ffb65 +2024-05-23 19:55:33.989 +02:00 [INF] Handled a message: pending_friend_accepted with ID: a249667b36654d2094326e6ed8aec1ee, Correlation ID: 4f19f732a93c4cd5ac8552e87e9458ba, retry: 0 +2024-05-23 19:55:33.990 +02:00 [INF] Received a message with ID: '90c1816eb80541519a65f7202354a2cb', Correlation ID: '7e9fdd9c46b34682a45ecc2dc9723019', timestamp: 1716486933, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:55:33.990 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 90c1816eb80541519a65f7202354a2cb, Correlation ID: 7e9fdd9c46b34682a45ecc2dc9723019, retry: 0 +2024-05-23 19:55:34.018 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:55:34.018 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:34.018 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:34.048 +02:00 [INF] Received HTTP response headers after 29.5778ms - 200 +2024-05-23 19:55:34.048 +02:00 [INF] End processing HTTP request after 30.5009ms - 200 +2024-05-23 19:55:34.049 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:55:34.050 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:55:34.050 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:55:34.050 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:55:34.083 +02:00 [INF] Received HTTP response headers after 32.4783ms - 200 +2024-05-23 19:55:34.084 +02:00 [INF] End processing HTTP request after 33.7333ms - 200 +2024-05-23 19:55:34.084 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:55:34.116 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:34.148 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:55:34.180 +02:00 [INF] Published NotificationCreated event for NotificationId=52f7b8ab-a0aa-4a28-88e1-e630eaffcb65 +2024-05-23 19:55:34.212 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 90c1816eb80541519a65f7202354a2cb, Correlation ID: 7e9fdd9c46b34682a45ecc2dc9723019, retry: 0 +2024-05-23 19:55:36.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:36.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:36.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:36.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6791ms +2024-05-23 19:55:38.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:38.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:38.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:38.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.0154ms +2024-05-23 19:55:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:55:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:41.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:41.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.7705ms +2024-05-23 19:55:45.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:45.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:45.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3496ms +2024-05-23 19:55:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:46.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3523ms +2024-05-23 19:55:51.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:51.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:51.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3076ms +2024-05-23 19:55:53.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:55:53.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:53.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:53.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.824ms +2024-05-23 19:55:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:55:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:56.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:55:56.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6494ms +2024-05-23 19:56:00.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:00.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:00.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:00.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6502ms +2024-05-23 19:56:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:01.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:01.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5675ms +2024-05-23 19:56:06.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:06.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:06.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.0981ms +2024-05-23 19:56:08.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:08.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2134ms +2024-05-23 19:56:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:56:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:11.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3728ms +2024-05-23 19:56:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:15.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5844ms +2024-05-23 19:56:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6809ms +2024-05-23 19:56:21.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:21.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:21.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:21.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 40.0013ms +2024-05-23 19:56:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:23.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:23.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6701ms +2024-05-23 19:56:26.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:56:26.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:26.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:26.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.2076ms +2024-05-23 19:56:30.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:30.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5909ms +2024-05-23 19:56:31.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:31.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:31.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:31.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.204ms +2024-05-23 19:56:36.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:36.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:36.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6776ms +2024-05-23 19:56:38.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:38.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:38.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:38.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7592ms +2024-05-23 19:56:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:56:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:41.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8637ms +2024-05-23 19:56:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:45.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:45.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3522ms +2024-05-23 19:56:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:46.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:46.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3555ms +2024-05-23 19:56:51.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:51.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:51.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:51.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6198ms +2024-05-23 19:56:53.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:56:53.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:53.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:53.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2335ms +2024-05-23 19:56:56.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:56:56.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:56.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:56:56.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.5871ms +2024-05-23 19:57:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:00.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:00.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4798ms +2024-05-23 19:57:01.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:01.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:01.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:01.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0128ms +2024-05-23 19:57:06.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:06.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:06.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.5764ms +2024-05-23 19:57:08.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:08.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:08.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:08.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1882ms +2024-05-23 19:57:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:57:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:11.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9648ms +2024-05-23 19:57:15.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:15.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:15.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:15.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.1348ms +2024-05-23 19:57:16.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:16.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:16.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1143ms +2024-05-23 19:57:21.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:21.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:21.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:21.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2197ms +2024-05-23 19:57:23.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:23.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:23.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:23.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6749ms +2024-05-23 19:57:26.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:57:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:26.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:26.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6411ms +2024-05-23 19:57:30.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:30.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3653ms +2024-05-23 19:57:30.314 +02:00 [INF] Deregistering a service [id: notifications-service:bec7facb04c74baca09f09f8c2a6cc40] from Consul... +2024-05-23 19:57:30.315 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:bec7facb04c74baca09f09f8c2a6cc40" +2024-05-23 19:57:30.315 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:bec7facb04c74baca09f09f8c2a6cc40 +2024-05-23 19:57:30.315 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:bec7facb04c74baca09f09f8c2a6cc40 +2024-05-23 19:57:30.318 +02:00 [INF] Received HTTP response headers after 2.104ms - 200 +2024-05-23 19:57:30.318 +02:00 [INF] End processing HTTP request after 2.45ms - 200 +2024-05-23 19:57:30.318 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:57:30.318 +02:00 [INF] Deregistered a service [id: notifications-service:bec7facb04c74baca09f09f8c2a6cc40] from Consul. +2024-05-23 19:57:36.411 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:57:36.459 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:57:36.534 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:57:36.598 +02:00 [INF] Registering a service [id: notifications-service:ddd04d8ef90942748646b3fb571e3bac] in Consul... +2024-05-23 19:57:36.618 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:57:36.621 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:57:36.621 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:57:36.631 +02:00 [INF] Received HTTP response headers after 7.0979ms - 200 +2024-05-23 19:57:36.632 +02:00 [INF] End processing HTTP request after 11.5308ms - 200 +2024-05-23 19:57:36.634 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:57:36.635 +02:00 [INF] Registered a service [id: notifications-service:ddd04d8ef90942748646b3fb571e3bac] in Consul. +2024-05-23 19:57:36.642 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:57:36.643 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:57:36.643 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:57:36.651 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:57:36.654 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:57:36.657 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:57:36.660 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:57:36.663 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:57:36.666 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:57:36.669 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:57:37.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:37.293 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:37.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:37.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 165.1585ms +2024-05-23 19:57:38.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:38.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:38.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:38.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.1669ms +2024-05-23 19:57:38.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:38.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:38.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:38.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.3879ms +2024-05-23 19:57:41.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:57:41.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:41.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:41.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.5108ms +2024-05-23 19:57:45.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:45.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:45.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:45.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9013ms +2024-05-23 19:57:46.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:46.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:46.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.9569ms +2024-05-23 19:57:51.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:51.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:51.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4401ms +2024-05-23 19:57:53.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:57:53.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:53.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:53.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.9045ms +2024-05-23 19:57:56.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:57:56.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:56.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:57:56.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3722ms +2024-05-23 19:58:00.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:00.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:00.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.1946ms +2024-05-23 19:58:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:01.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9625ms +2024-05-23 19:58:04.705 +02:00 [INF] Received a message with ID: 'e331aff47dc54bf59f8cf2761357fff0', Correlation ID: 'b674601cfb1948e88ef3fff67eb97107', timestamp: 1716487084, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:58:04.705 +02:00 [INF] Received a message with ID: '368841a174e34bbfb9ce1d16c7d2a617', Correlation ID: 'fb03c4e7e8444af6b1af4e2dfc6f2e05', timestamp: 1716487084, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:58:04.722 +02:00 [INF] Handling a message: friend_invited with ID: e331aff47dc54bf59f8cf2761357fff0, Correlation ID: b674601cfb1948e88ef3fff67eb97107, retry: 0 +2024-05-23 19:58:04.722 +02:00 [INF] Handling a message: friend_request_sent with ID: 368841a174e34bbfb9ce1d16c7d2a617, Correlation ID: fb03c4e7e8444af6b1af4e2dfc6f2e05, retry: 0 +2024-05-23 19:58:04.909 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:58:04.911 +02:00 [INF] Handled a message: friend_request_sent with ID: 368841a174e34bbfb9ce1d16c7d2a617, Correlation ID: fb03c4e7e8444af6b1af4e2dfc6f2e05, retry: 0 +2024-05-23 19:58:04.978 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:04.978 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:04.978 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:05.015 +02:00 [INF] Received HTTP response headers after 36.5583ms - 200 +2024-05-23 19:58:05.015 +02:00 [INF] End processing HTTP request after 37.0668ms - 200 +2024-05-23 19:58:05.015 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:05.197 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:58:05.197 +02:00 [INF] Handled a message: friend_invited with ID: e331aff47dc54bf59f8cf2761357fff0, Correlation ID: b674601cfb1948e88ef3fff67eb97107, retry: 0 +2024-05-23 19:58:06.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:06.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:06.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:06.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.1067ms +2024-05-23 19:58:08.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:08.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:08.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.964ms +2024-05-23 19:58:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:58:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:11.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:11.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.9791ms +2024-05-23 19:58:15.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:15.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:15.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:15.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1506ms +2024-05-23 19:58:16.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:16.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:16.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:16.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1325ms +2024-05-23 19:58:16.350 +02:00 [INF] Received a message with ID: '60e00f0d46ff41fda96159c3094867cb', Correlation ID: '5d34ad53385f4eb9952d1d41a440a92c', timestamp: 1716487096, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:58:16.351 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 60e00f0d46ff41fda96159c3094867cb, Correlation ID: 5d34ad53385f4eb9952d1d41a440a92c, retry: 0 +2024-05-23 19:58:16.394 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:16.394 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:16.394 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:16.423 +02:00 [INF] Received HTTP response headers after 28.6673ms - 200 +2024-05-23 19:58:16.423 +02:00 [INF] End processing HTTP request after 29.0983ms - 200 +2024-05-23 19:58:16.423 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:16.424 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:16.424 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:16.424 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:16.452 +02:00 [INF] Received HTTP response headers after 28.5087ms - 200 +2024-05-23 19:58:16.453 +02:00 [INF] End processing HTTP request after 28.8792ms - 200 +2024-05-23 19:58:16.453 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:16.479 +02:00 [ERR] There was an error when processing a message with id: '60e00f0d46ff41fda96159c3094867cb'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:16.491 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:16.493 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: '60e00f0d46ff41fda96159c3094867cb', Correlation ID: '5d34ad53385f4eb9952d1d41a440a92c', retry 1/3... +2024-05-23 19:58:18.495 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 60e00f0d46ff41fda96159c3094867cb, Correlation ID: 5d34ad53385f4eb9952d1d41a440a92c, retry: 1 +2024-05-23 19:58:18.522 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:18.523 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:18.523 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:18.551 +02:00 [INF] Received HTTP response headers after 28.0594ms - 200 +2024-05-23 19:58:18.551 +02:00 [INF] End processing HTTP request after 28.41ms - 200 +2024-05-23 19:58:18.551 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:18.552 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:18.552 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:18.552 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:18.579 +02:00 [INF] Received HTTP response headers after 27.3739ms - 200 +2024-05-23 19:58:18.579 +02:00 [INF] End processing HTTP request after 27.7585ms - 200 +2024-05-23 19:58:18.580 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:18.608 +02:00 [ERR] There was an error when processing a message with id: '60e00f0d46ff41fda96159c3094867cb'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:18.608 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:18.609 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: '60e00f0d46ff41fda96159c3094867cb', Correlation ID: '5d34ad53385f4eb9952d1d41a440a92c', retry 2/3... +2024-05-23 19:58:20.606 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 60e00f0d46ff41fda96159c3094867cb, Correlation ID: 5d34ad53385f4eb9952d1d41a440a92c, retry: 2 +2024-05-23 19:58:20.633 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:20.633 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:20.633 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:20.662 +02:00 [INF] Received HTTP response headers after 28.8663ms - 200 +2024-05-23 19:58:20.663 +02:00 [INF] End processing HTTP request after 29.2784ms - 200 +2024-05-23 19:58:20.663 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:20.664 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:20.664 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:20.664 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:20.694 +02:00 [INF] Received HTTP response headers after 29.9395ms - 200 +2024-05-23 19:58:20.694 +02:00 [INF] End processing HTTP request after 30.2785ms - 200 +2024-05-23 19:58:20.694 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:20.722 +02:00 [ERR] There was an error when processing a message with id: '60e00f0d46ff41fda96159c3094867cb'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:20.724 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:20.726 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: '60e00f0d46ff41fda96159c3094867cb', Correlation ID: '5d34ad53385f4eb9952d1d41a440a92c', retry 3/3... +2024-05-23 19:58:21.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:21.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:21.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:21.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8364ms +2024-05-23 19:58:22.728 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 60e00f0d46ff41fda96159c3094867cb, Correlation ID: 5d34ad53385f4eb9952d1d41a440a92c, retry: 3 +2024-05-23 19:58:22.758 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:22.759 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:22.759 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:22.789 +02:00 [INF] Received HTTP response headers after 30.0006ms - 200 +2024-05-23 19:58:22.789 +02:00 [INF] End processing HTTP request after 30.7796ms - 200 +2024-05-23 19:58:22.790 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:22.790 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:22.790 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:22.790 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:22.817 +02:00 [INF] Received HTTP response headers after 26.4478ms - 200 +2024-05-23 19:58:22.817 +02:00 [INF] End processing HTTP request after 26.7869ms - 200 +2024-05-23 19:58:22.817 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:22.843 +02:00 [ERR] There was an error when processing a message with id: '60e00f0d46ff41fda96159c3094867cb'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:22.844 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:22.844 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: '60e00f0d46ff41fda96159c3094867cb', Correlation ID: '5d34ad53385f4eb9952d1d41a440a92c', retry 4/3... +2024-05-23 19:58:22.844 +02:00 [ERR] Handling a message: pending_friend_accepted with ID: 60e00f0d46ff41fda96159c3094867cb, Correlation ID: 5d34ad53385f4eb9952d1d41a440a92c failed +2024-05-23 19:58:22.846 +02:00 [INF] Received a message with ID: 'bc3a9df8927d44588fb777ab453b954c', Correlation ID: '9fc1259e6e4847efa5f60165afdacdcc', timestamp: 1716487096, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:58:22.847 +02:00 [INF] Handling a message: pending_friend_accepted with ID: bc3a9df8927d44588fb777ab453b954c, Correlation ID: 9fc1259e6e4847efa5f60165afdacdcc, retry: 0 +2024-05-23 19:58:22.875 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:22.875 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:22.875 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:22.908 +02:00 [INF] Received HTTP response headers after 32.8044ms - 200 +2024-05-23 19:58:22.909 +02:00 [INF] End processing HTTP request after 33.6525ms - 200 +2024-05-23 19:58:22.909 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:22.909 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:22.910 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:22.910 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:22.942 +02:00 [INF] Received HTTP response headers after 32.0513ms - 200 +2024-05-23 19:58:22.942 +02:00 [INF] End processing HTTP request after 32.7227ms - 200 +2024-05-23 19:58:22.943 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:22.970 +02:00 [ERR] There was an error when processing a message with id: 'bc3a9df8927d44588fb777ab453b954c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:22.971 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:22.972 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: 'bc3a9df8927d44588fb777ab453b954c', Correlation ID: '9fc1259e6e4847efa5f60165afdacdcc', retry 1/3... +2024-05-23 19:58:23.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:23.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:23.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:23.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0046ms +2024-05-23 19:58:24.971 +02:00 [INF] Handling a message: pending_friend_accepted with ID: bc3a9df8927d44588fb777ab453b954c, Correlation ID: 9fc1259e6e4847efa5f60165afdacdcc, retry: 1 +2024-05-23 19:58:25.002 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:25.003 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:25.003 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:25.034 +02:00 [INF] Received HTTP response headers after 31.0955ms - 200 +2024-05-23 19:58:25.034 +02:00 [INF] End processing HTTP request after 31.5951ms - 200 +2024-05-23 19:58:25.034 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:25.035 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:25.035 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:25.035 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:25.065 +02:00 [INF] Received HTTP response headers after 29.3438ms - 200 +2024-05-23 19:58:25.065 +02:00 [INF] End processing HTTP request after 30.1984ms - 200 +2024-05-23 19:58:25.065 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:25.094 +02:00 [ERR] There was an error when processing a message with id: 'bc3a9df8927d44588fb777ab453b954c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:25.095 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:25.096 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: 'bc3a9df8927d44588fb777ab453b954c', Correlation ID: '9fc1259e6e4847efa5f60165afdacdcc', retry 2/3... +2024-05-23 19:58:26.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:58:26.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:26.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.9373ms +2024-05-23 19:58:27.094 +02:00 [INF] Handling a message: pending_friend_accepted with ID: bc3a9df8927d44588fb777ab453b954c, Correlation ID: 9fc1259e6e4847efa5f60165afdacdcc, retry: 2 +2024-05-23 19:58:27.121 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:27.121 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:27.122 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:27.150 +02:00 [INF] Received HTTP response headers after 28.0515ms - 200 +2024-05-23 19:58:27.150 +02:00 [INF] End processing HTTP request after 28.5862ms - 200 +2024-05-23 19:58:27.150 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:27.150 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:27.151 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:27.151 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:27.179 +02:00 [INF] Received HTTP response headers after 28.1301ms - 200 +2024-05-23 19:58:27.179 +02:00 [INF] End processing HTTP request after 28.5025ms - 200 +2024-05-23 19:58:27.179 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:27.207 +02:00 [ERR] There was an error when processing a message with id: 'bc3a9df8927d44588fb777ab453b954c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:27.208 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:27.209 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: 'bc3a9df8927d44588fb777ab453b954c', Correlation ID: '9fc1259e6e4847efa5f60165afdacdcc', retry 3/3... +2024-05-23 19:58:29.210 +02:00 [INF] Handling a message: pending_friend_accepted with ID: bc3a9df8927d44588fb777ab453b954c, Correlation ID: 9fc1259e6e4847efa5f60165afdacdcc, retry: 3 +2024-05-23 19:58:29.237 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:58:29.238 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:29.238 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:58:29.268 +02:00 [INF] Received HTTP response headers after 29.9228ms - 200 +2024-05-23 19:58:29.268 +02:00 [INF] End processing HTTP request after 30.4565ms - 200 +2024-05-23 19:58:29.268 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:29.269 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:58:29.269 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:29.269 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:58:29.302 +02:00 [INF] Received HTTP response headers after 32.7609ms - 200 +2024-05-23 19:58:29.303 +02:00 [INF] End processing HTTP request after 34.0956ms - 200 +2024-05-23 19:58:29.303 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:29.330 +02:00 [ERR] There was an error when processing a message with id: 'bc3a9df8927d44588fb777ab453b954c'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 19:58:29.331 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Application.Events.External.Handlers.PendingFriendRequestAcceptedHandler.HandleAsync(PendingFriendAccepted event, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Handlers/PendingFriendRequestAcceptedHandler.cs:line 64 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.EventHandlerLoggingDecorator`1.HandleAsync(TEvent event, CancellationToken cancellationToken) + at Convey.MessageBrokers.CQRS.Extensions.<>c__3`1.<b__3_0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.MessageBrokers.RabbitMQ.Internals.RabbitMqBackgroundService.<>c__DisplayClass27_0.<b__1>d.MoveNext() +2024-05-23 19:58:29.332 +02:00 [ERR] Unable to handle a message: 'pending_friend_accepted' with ID: 'bc3a9df8927d44588fb777ab453b954c', Correlation ID: '9fc1259e6e4847efa5f60165afdacdcc', retry 4/3... +2024-05-23 19:58:29.332 +02:00 [ERR] Handling a message: pending_friend_accepted with ID: bc3a9df8927d44588fb777ab453b954c, Correlation ID: 9fc1259e6e4847efa5f60165afdacdcc failed +2024-05-23 19:58:30.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:30.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1933ms +2024-05-23 19:58:31.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:31.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:31.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:31.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.3809ms +2024-05-23 19:58:36.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:36.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:36.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:36.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.4436ms +2024-05-23 19:58:38.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:38.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:38.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:38.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3161ms +2024-05-23 19:58:41.027 +02:00 [INF] Deregistering a service [id: notifications-service:ddd04d8ef90942748646b3fb571e3bac] from Consul... +2024-05-23 19:58:41.028 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ddd04d8ef90942748646b3fb571e3bac" +2024-05-23 19:58:41.028 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ddd04d8ef90942748646b3fb571e3bac +2024-05-23 19:58:41.028 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ddd04d8ef90942748646b3fb571e3bac +2024-05-23 19:58:41.032 +02:00 [INF] Received HTTP response headers after 3.5926ms - 200 +2024-05-23 19:58:41.032 +02:00 [INF] End processing HTTP request after 3.9905ms - 200 +2024-05-23 19:58:41.032 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:41.033 +02:00 [INF] Deregistered a service [id: notifications-service:ddd04d8ef90942748646b3fb571e3bac] from Consul. +2024-05-23 19:58:47.575 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 19:58:47.627 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 19:58:47.677 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 19:58:47.746 +02:00 [INF] Registering a service [id: notifications-service:514a246061a64851974e6c42a9d21f19] in Consul... +2024-05-23 19:58:47.766 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 19:58:47.769 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:58:47.770 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 19:58:47.780 +02:00 [INF] Received HTTP response headers after 7.8724ms - 200 +2024-05-23 19:58:47.781 +02:00 [INF] End processing HTTP request after 12.5582ms - 200 +2024-05-23 19:58:47.784 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:58:47.785 +02:00 [INF] Registered a service [id: notifications-service:514a246061a64851974e6c42a9d21f19] in Consul. +2024-05-23 19:58:47.789 +02:00 [INF] Removed 0 old notifications. +2024-05-23 19:58:47.789 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 19:58:47.791 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 19:58:47.803 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 19:58:47.807 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 19:58:47.809 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 19:58:47.811 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 19:58:47.813 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 19:58:47.815 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 19:58:47.817 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 19:58:47.927 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:58:47.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:48.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:48.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 141.3219ms +2024-05-23 19:58:48.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:48.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:48.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:48.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.8794ms +2024-05-23 19:58:51.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:51.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:51.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:51.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.0899ms +2024-05-23 19:58:51.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:51.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:51.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0827ms +2024-05-23 19:58:53.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:58:53.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:53.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:53.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7724ms +2024-05-23 19:58:56.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:58:56.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:56.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:58:56.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9556ms +2024-05-23 19:59:00.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:00.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:00.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:00.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.2747ms +2024-05-23 19:59:01.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:01.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:01.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.0695ms +2024-05-23 19:59:06.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:06.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:06.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:06.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0878ms +2024-05-23 19:59:08.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:08.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:08.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:08.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8659ms +2024-05-23 19:59:11.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:59:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:11.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:11.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.467ms +2024-05-23 19:59:15.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:15.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:15.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:15.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.439ms +2024-05-23 19:59:16.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:16.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:16.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.137ms +2024-05-23 19:59:17.874 +02:00 [INF] Received a message with ID: '897cdb496e6744489b09dd599764c2d0', Correlation ID: '7bed8353509c4cc4b6547e54746b0890', timestamp: 1716487157, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 19:59:17.874 +02:00 [INF] Received a message with ID: 'b886b5c40c3b4689a84151e9e62a7f29', Correlation ID: 'b69f204ef67b44fdb23522733b6eccde', timestamp: 1716487157, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 19:59:17.886 +02:00 [INF] Handling a message: friend_request_sent with ID: 897cdb496e6744489b09dd599764c2d0, Correlation ID: 7bed8353509c4cc4b6547e54746b0890, retry: 0 +2024-05-23 19:59:17.886 +02:00 [INF] Handling a message: friend_invited with ID: b886b5c40c3b4689a84151e9e62a7f29, Correlation ID: b69f204ef67b44fdb23522733b6eccde, retry: 0 +2024-05-23 19:59:18.057 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:59:18.059 +02:00 [INF] Handled a message: friend_request_sent with ID: 897cdb496e6744489b09dd599764c2d0, Correlation ID: 7bed8353509c4cc4b6547e54746b0890, retry: 0 +2024-05-23 19:59:18.191 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:59:18.192 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:18.192 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:18.226 +02:00 [INF] Received HTTP response headers after 33.3491ms - 200 +2024-05-23 19:59:18.226 +02:00 [INF] End processing HTTP request after 34.2584ms - 200 +2024-05-23 19:59:18.226 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:59:18.397 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 19:59:18.398 +02:00 [INF] Handled a message: friend_invited with ID: b886b5c40c3b4689a84151e9e62a7f29, Correlation ID: b69f204ef67b44fdb23522733b6eccde, retry: 0 +2024-05-23 19:59:21.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:21.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:21.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:21.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3403ms +2024-05-23 19:59:22.350 +02:00 [INF] Received a message with ID: '62eb62390a1442768bb1353109906c88', Correlation ID: '46fe7d6737b147e88c0d94cbea7f9e8f', timestamp: 1716487162, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:59:22.351 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 62eb62390a1442768bb1353109906c88, Correlation ID: 46fe7d6737b147e88c0d94cbea7f9e8f, retry: 0 +2024-05-23 19:59:22.382 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:59:22.382 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.382 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.410 +02:00 [INF] Received HTTP response headers after 27.2336ms - 200 +2024-05-23 19:59:22.410 +02:00 [INF] End processing HTTP request after 27.6537ms - 200 +2024-05-23 19:59:22.410 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:59:22.411 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:59:22.411 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:59:22.411 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:59:22.449 +02:00 [INF] Received HTTP response headers after 38.6034ms - 200 +2024-05-23 19:59:22.450 +02:00 [INF] End processing HTTP request after 38.9782ms - 200 +2024-05-23 19:59:22.450 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:59:22.477 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.478 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.509 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.539 +02:00 [INF] Published NotificationCreated event for NotificationId=2ee6a2d9-0a91-4fd9-9376-0e4d65fa6278 +2024-05-23 19:59:22.569 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 62eb62390a1442768bb1353109906c88, Correlation ID: 46fe7d6737b147e88c0d94cbea7f9e8f, retry: 0 +2024-05-23 19:59:22.569 +02:00 [INF] Received a message with ID: 'b22d9bd25e2e478c8d0a20f3761edbc7', Correlation ID: '58d3e5c0d33547b38ff0aa4c490a87f7', timestamp: 1716487162, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 19:59:22.569 +02:00 [INF] Handling a message: pending_friend_accepted with ID: b22d9bd25e2e478c8d0a20f3761edbc7, Correlation ID: 58d3e5c0d33547b38ff0aa4c490a87f7, retry: 0 +2024-05-23 19:59:22.597 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 19:59:22.597 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.597 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.628 +02:00 [INF] Received HTTP response headers after 31.1034ms - 200 +2024-05-23 19:59:22.628 +02:00 [INF] End processing HTTP request after 31.4747ms - 200 +2024-05-23 19:59:22.628 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:59:22.629 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 19:59:22.629 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:59:22.629 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 19:59:22.656 +02:00 [INF] Received HTTP response headers after 27.32ms - 200 +2024-05-23 19:59:22.656 +02:00 [INF] End processing HTTP request after 27.6983ms - 200 +2024-05-23 19:59:22.656 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 19:59:22.686 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.714 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 19:59:22.743 +02:00 [INF] Published NotificationCreated event for NotificationId=b0cd2b9f-effc-4ab2-b541-758d5756e481 +2024-05-23 19:59:22.779 +02:00 [INF] Handled a message: pending_friend_accepted with ID: b22d9bd25e2e478c8d0a20f3761edbc7, Correlation ID: 58d3e5c0d33547b38ff0aa4c490a87f7, retry: 0 +2024-05-23 19:59:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:23.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:23.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4907ms +2024-05-23 19:59:26.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:59:26.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:26.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:26.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1851ms +2024-05-23 19:59:30.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:30.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3021ms +2024-05-23 19:59:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:31.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:31.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.3728ms +2024-05-23 19:59:36.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:36.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:36.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:36.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.5642ms +2024-05-23 19:59:38.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:38.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:38.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:38.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1126ms +2024-05-23 19:59:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:59:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:41.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:41.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 37.0873ms +2024-05-23 19:59:45.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:45.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:45.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:45.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.629ms +2024-05-23 19:59:46.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:46.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:46.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:46.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5809ms +2024-05-23 19:59:51.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:51.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:51.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:51.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.0097ms +2024-05-23 19:59:53.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 19:59:53.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:53.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:53.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5134ms +2024-05-23 19:59:56.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 19:59:56.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:56.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 19:59:56.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 46.2469ms +2024-05-23 20:00:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:00.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:00.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:00.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8064ms +2024-05-23 20:00:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:01.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:01.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:01.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9132ms +2024-05-23 20:00:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:06.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:06.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:06.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 56.613ms +2024-05-23 20:00:08.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:08.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:08.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:08.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 77.2082ms +2024-05-23 20:00:11.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:00:11.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:11.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.6197ms +2024-05-23 20:00:15.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:15.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:15.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:15.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.0539ms +2024-05-23 20:00:16.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:16.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:16.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:16.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8518ms +2024-05-23 20:00:21.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:21.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:21.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:21.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3149ms +2024-05-23 20:00:23.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:23.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:23.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8042ms +2024-05-23 20:00:26.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:00:26.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:26.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:26.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.8767ms +2024-05-23 20:00:30.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:30.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:30.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0579ms +2024-05-23 20:00:31.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:31.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:31.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:31.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.941ms +2024-05-23 20:00:36.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:36.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:36.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:36.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7436ms +2024-05-23 20:00:38.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:38.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:38.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:38.068 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8609ms +2024-05-23 20:00:41.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:00:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:41.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:41.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.391ms +2024-05-23 20:00:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:45.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:45.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1227ms +2024-05-23 20:00:46.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:46.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.2126ms +2024-05-23 20:00:51.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:51.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:51.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:51.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0117ms +2024-05-23 20:00:53.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:00:53.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:53.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:53.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5423ms +2024-05-23 20:00:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:00:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:56.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:00:56.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7362ms +2024-05-23 20:01:00.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:00.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:00.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:00.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.4662ms +2024-05-23 20:01:01.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:01.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:01.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:01.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0432ms +2024-05-23 20:01:06.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:06.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:06.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:06.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9257ms +2024-05-23 20:01:08.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:08.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:08.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:08.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1378ms +2024-05-23 20:01:11.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:01:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8375ms +2024-05-23 20:01:15.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:15.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:15.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:15.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4264ms +2024-05-23 20:01:16.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:16.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:16.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:16.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1303ms +2024-05-23 20:01:21.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:21.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:21.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:21.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1024ms +2024-05-23 20:01:23.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:23.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:23.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:23.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5187ms +2024-05-23 20:01:26.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:01:26.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:26.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:26.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.3664ms +2024-05-23 20:01:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:30.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:30.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.1893ms +2024-05-23 20:01:31.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:31.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:31.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:31.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6368ms +2024-05-23 20:01:36.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:36.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:36.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:36.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.3349ms +2024-05-23 20:01:38.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:38.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:38.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:38.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1132ms +2024-05-23 20:01:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:01:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.3173ms +2024-05-23 20:01:45.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:45.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:45.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:45.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.6174ms +2024-05-23 20:01:46.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:46.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:46.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:46.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7619ms +2024-05-23 20:01:51.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:51.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:51.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:51.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.7704ms +2024-05-23 20:01:53.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:01:53.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:53.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:53.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9456ms +2024-05-23 20:01:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:01:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:56.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:01:56.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9676ms +2024-05-23 20:02:00.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:00.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:00.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:00.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6771ms +2024-05-23 20:02:01.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:01.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:01.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:01.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.7789ms +2024-05-23 20:02:06.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:06.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:06.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:06.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9405ms +2024-05-23 20:02:08.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:08.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:08.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:08.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.679ms +2024-05-23 20:02:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:02:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:11.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:11.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6043ms +2024-05-23 20:02:15.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:15.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:15.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:15.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.6496ms +2024-05-23 20:02:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:16.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:16.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:16.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.9845ms +2024-05-23 20:02:21.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:21.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:21.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:21.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8861ms +2024-05-23 20:02:23.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:23.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:23.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:23.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2208ms +2024-05-23 20:02:26.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:02:26.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.8573ms +2024-05-23 20:02:30.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:30.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:30.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:30.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0213ms +2024-05-23 20:02:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:31.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:31.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:31.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.5705ms +2024-05-23 20:02:36.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:36.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:36.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:36.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1648ms +2024-05-23 20:02:38.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:38.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:38.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:38.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9946ms +2024-05-23 20:02:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:02:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:41.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:41.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.5829ms +2024-05-23 20:02:45.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:45.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:45.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:45.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5048ms +2024-05-23 20:02:46.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:46.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:46.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5922ms +2024-05-23 20:02:51.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:51.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:51.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:51.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5286ms +2024-05-23 20:02:53.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:02:53.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:53.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:53.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7063ms +2024-05-23 20:02:56.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:02:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:02:56.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2746ms +2024-05-23 20:03:00.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:00.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:00.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:00.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7072ms +2024-05-23 20:03:01.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:01.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:01.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:01.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.1304ms +2024-05-23 20:03:06.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:06.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:06.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:06.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1663ms +2024-05-23 20:03:08.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:08.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:08.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:08.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.4729ms +2024-05-23 20:03:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:03:11.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:11.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:11.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.8601ms +2024-05-23 20:03:15.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:15.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:15.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:15.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.6276ms +2024-05-23 20:03:16.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:16.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:16.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:16.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.9834ms +2024-05-23 20:03:21.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:21.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:21.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:21.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8064ms +2024-05-23 20:03:23.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:23.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:23.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:23.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.8558ms +2024-05-23 20:03:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:03:26.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:26.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.9386ms +2024-05-23 20:03:30.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:30.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:30.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:30.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0941ms +2024-05-23 20:03:31.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.2964ms +2024-05-23 20:03:36.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:36.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:36.425 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6177ms +2024-05-23 20:03:38.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:38.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:38.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:38.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8532ms +2024-05-23 20:03:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:03:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:41.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6588ms +2024-05-23 20:03:45.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:45.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:45.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:45.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1479ms +2024-05-23 20:03:46.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:46.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:46.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:46.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5914ms +2024-05-23 20:03:51.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:51.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:51.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:51.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4006ms +2024-05-23 20:03:53.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:03:53.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:53.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:53.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.239ms +2024-05-23 20:03:56.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:03:56.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:56.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:03:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.3184ms +2024-05-23 20:04:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:00.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:00.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0115ms +2024-05-23 20:04:01.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:01.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:01.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:01.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4506ms +2024-05-23 20:04:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:06.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:06.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:06.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.256ms +2024-05-23 20:04:08.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:08.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:08.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:08.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0366ms +2024-05-23 20:04:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:04:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:11.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:11.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7062ms +2024-05-23 20:04:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:15.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:15.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:15.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.7429ms +2024-05-23 20:04:16.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:16.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:16.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:16.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4044ms +2024-05-23 20:04:21.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:21.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:21.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:21.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3672ms +2024-05-23 20:04:23.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:23.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:23.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:23.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5457ms +2024-05-23 20:04:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:04:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:26.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 25.7774ms +2024-05-23 20:04:30.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:30.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:30.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:30.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.796ms +2024-05-23 20:04:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:31.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:31.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7351ms +2024-05-23 20:04:36.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:36.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:36.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:36.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0299ms +2024-05-23 20:04:38.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:38.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:38.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:38.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6972ms +2024-05-23 20:04:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:04:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:41.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:41.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.2253ms +2024-05-23 20:04:45.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:45.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:45.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:45.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8618ms +2024-05-23 20:04:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:46.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.2902ms +2024-05-23 20:04:51.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:51.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:51.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.8236ms +2024-05-23 20:04:53.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:04:53.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:53.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:53.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.913ms +2024-05-23 20:04:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:04:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:56.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:04:56.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.3241ms +2024-05-23 20:05:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:00.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:00.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0969ms +2024-05-23 20:05:01.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:01.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:01.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.7242ms +2024-05-23 20:05:06.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:06.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:06.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:06.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6035ms +2024-05-23 20:05:08.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:08.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:08.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:08.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9435ms +2024-05-23 20:05:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:05:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:11.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:11.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5727ms +2024-05-23 20:05:15.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:15.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:15.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:15.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7858ms +2024-05-23 20:05:16.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:16.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:16.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5549ms +2024-05-23 20:05:21.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:21.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:21.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:21.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.6582ms +2024-05-23 20:05:23.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:23.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:23.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:23.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6504ms +2024-05-23 20:05:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:05:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:26.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:26.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1899ms +2024-05-23 20:05:30.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:30.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:30.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:30.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9306ms +2024-05-23 20:05:31.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:31.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:31.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:31.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 25.6572ms +2024-05-23 20:05:36.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:36.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:36.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:36.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.9186ms +2024-05-23 20:05:38.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:38.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:38.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:38.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 25.7842ms +2024-05-23 20:05:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:05:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:41.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:41.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.1466ms +2024-05-23 20:05:45.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:45.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:45.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:45.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.9548ms +2024-05-23 20:05:46.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:46.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:46.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:46.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7212ms +2024-05-23 20:05:51.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:51.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:51.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4193ms +2024-05-23 20:05:53.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:05:53.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:53.067 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:53.067 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2708ms +2024-05-23 20:05:56.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:05:56.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:05:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.3794ms +2024-05-23 20:06:00.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:00.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:00.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:00.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.1808ms +2024-05-23 20:06:01.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:01.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:01.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:01.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0848ms +2024-05-23 20:06:06.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:06.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:06.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5555ms +2024-05-23 20:06:08.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:08.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:08.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:08.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.862ms +2024-05-23 20:06:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:06:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:11.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:11.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.4897ms +2024-05-23 20:06:15.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:15.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:15.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:15.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1436ms +2024-05-23 20:06:16.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:16.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:16.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:16.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.8045ms +2024-05-23 20:06:21.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:21.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:21.425 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:21.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4055ms +2024-05-23 20:06:23.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:23.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:23.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:23.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.284ms +2024-05-23 20:06:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:06:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:26.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:26.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6714ms +2024-05-23 20:06:30.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:30.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:30.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:30.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3153ms +2024-05-23 20:06:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:31.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:31.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:31.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5734ms +2024-05-23 20:06:36.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:36.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:36.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:36.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1112ms +2024-05-23 20:06:38.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:38.041 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:38.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:38.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8674ms +2024-05-23 20:06:41.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:06:41.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:41.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:41.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.6776ms +2024-05-23 20:06:45.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:45.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:45.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:45.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.6694ms +2024-05-23 20:06:46.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:46.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:46.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0401ms +2024-05-23 20:06:51.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:51.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:51.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:51.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.2355ms +2024-05-23 20:06:53.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:06:53.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:53.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:53.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8205ms +2024-05-23 20:06:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:06:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:56.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:06:56.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.6048ms +2024-05-23 20:07:00.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:00.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:00.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:00.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.6697ms +2024-05-23 20:07:01.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:01.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:01.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:01.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9753ms +2024-05-23 20:07:06.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:06.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:06.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:06.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0905ms +2024-05-23 20:07:08.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:08.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:08.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:08.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6539ms +2024-05-23 20:07:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:07:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:11.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:11.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.0857ms +2024-05-23 20:07:15.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:15.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:15.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:15.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8704ms +2024-05-23 20:07:16.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:16.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:16.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:16.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.0818ms +2024-05-23 20:07:16.469 +02:00 [INF] Deregistering a service [id: notifications-service:514a246061a64851974e6c42a9d21f19] from Consul... +2024-05-23 20:07:16.471 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:514a246061a64851974e6c42a9d21f19" +2024-05-23 20:07:16.472 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:514a246061a64851974e6c42a9d21f19 +2024-05-23 20:07:16.472 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:514a246061a64851974e6c42a9d21f19 +2024-05-23 20:07:16.501 +02:00 [INF] Received HTTP response headers after 28.2656ms - 200 +2024-05-23 20:07:16.501 +02:00 [INF] End processing HTTP request after 29.4261ms - 200 +2024-05-23 20:07:16.502 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:07:16.503 +02:00 [INF] Deregistered a service [id: notifications-service:514a246061a64851974e6c42a9d21f19] from Consul. +2024-05-23 20:07:29.646 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:07:29.709 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:07:29.780 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:07:29.846 +02:00 [INF] Registering a service [id: notifications-service:678270f0ff36490b8a5a7f726fbeb11e] in Consul... +2024-05-23 20:07:29.867 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:07:29.871 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:07:29.872 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:07:29.888 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:07:29.889 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:07:29.894 +02:00 [INF] Received HTTP response headers after 18.9119ms - 200 +2024-05-23 20:07:29.895 +02:00 [INF] End processing HTTP request after 25.5817ms - 200 +2024-05-23 20:07:29.898 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:07:29.899 +02:00 [INF] Registered a service [id: notifications-service:678270f0ff36490b8a5a7f726fbeb11e] in Consul. +2024-05-23 20:07:29.906 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:07:29.917 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:07:29.920 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:07:29.923 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:07:29.927 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:07:29.930 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:07:29.932 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:07:29.933 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:07:30.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:30.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:30.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:30.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 127.2428ms +2024-05-23 20:07:31.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:31.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:31.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:31.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7846ms +2024-05-23 20:07:32.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:07:32.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:32.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:32.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.3649ms +2024-05-23 20:07:36.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:36.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:36.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:36.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.7282ms +2024-05-23 20:07:38.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:38.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:38.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:38.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.6318ms +2024-05-23 20:07:41.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:07:41.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:41.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:41.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.4226ms +2024-05-23 20:07:45.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:45.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:45.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:45.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.8833ms +2024-05-23 20:07:46.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:46.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:46.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:46.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9ms +2024-05-23 20:07:51.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:51.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:51.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:51.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.5282ms +2024-05-23 20:07:53.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:07:53.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:53.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:53.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9391ms +2024-05-23 20:07:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:07:56.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:56.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:07:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1911ms +2024-05-23 20:08:04.273 +02:00 [WRN] As of ""2024-05-23T18:08:04.2059575+00:00"", the heartbeat has been running for ""00:00:03.1680158"" which is longer than ""00:00:01"". This could be caused by thread pool starvation. +2024-05-23 20:08:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:08:11.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:11.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:11.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 37.394ms +2024-05-23 20:08:22.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:08:22.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:22.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:22.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.616ms +2024-05-23 20:08:22.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:08:22.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:22.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:22.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2923ms +2024-05-23 20:08:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:08:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:26.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:26.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3166ms +2024-05-23 20:08:28.485 +02:00 [INF] Received a message with ID: 'f02b3d945050434a9982c39e11621a9e', Correlation ID: '6fe371347a854a76a3d97b4e4c6c7056', timestamp: 1716487708, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:08:28.485 +02:00 [INF] Received a message with ID: '0e55c5647738489db6425d4bc891b0d4', Correlation ID: '3965a13423ba41d6b9a0ed3e62bfb412', timestamp: 1716487708, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:08:28.514 +02:00 [INF] Handling a message: friend_invited with ID: 0e55c5647738489db6425d4bc891b0d4, Correlation ID: 3965a13423ba41d6b9a0ed3e62bfb412, retry: 0 +2024-05-23 20:08:28.514 +02:00 [INF] Handling a message: friend_request_sent with ID: f02b3d945050434a9982c39e11621a9e, Correlation ID: 6fe371347a854a76a3d97b4e4c6c7056, retry: 0 +2024-05-23 20:08:28.575 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:08:28.575 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:28.576 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:28.634 +02:00 [INF] Received HTTP response headers after 56.5771ms - 200 +2024-05-23 20:08:28.635 +02:00 [INF] End processing HTTP request after 59.5711ms - 200 +2024-05-23 20:08:28.635 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:08:28.754 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:08:28.757 +02:00 [INF] Handled a message: friend_request_sent with ID: f02b3d945050434a9982c39e11621a9e, Correlation ID: 6fe371347a854a76a3d97b4e4c6c7056, retry: 0 +2024-05-23 20:08:28.842 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:08:28.842 +02:00 [INF] Handled a message: friend_invited with ID: 0e55c5647738489db6425d4bc891b0d4, Correlation ID: 3965a13423ba41d6b9a0ed3e62bfb412, retry: 0 +2024-05-23 20:08:37.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:08:37.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:37.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:37.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.3275ms +2024-05-23 20:08:41.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:08:41.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.2384ms +2024-05-23 20:08:46.677 +02:00 [INF] Received a message with ID: '1e71d2152ebb4117838d3f2c4f0ba6c1', Correlation ID: '9f51aa8f42bb4944a4fb91ac3ec496e8', timestamp: 1716487726, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:08:46.680 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 1e71d2152ebb4117838d3f2c4f0ba6c1, Correlation ID: 9f51aa8f42bb4944a4fb91ac3ec496e8, retry: 0 +2024-05-23 20:08:46.720 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:08:46.721 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.721 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.753 +02:00 [INF] Received HTTP response headers after 31.6898ms - 200 +2024-05-23 20:08:46.753 +02:00 [INF] End processing HTTP request after 32.2275ms - 200 +2024-05-23 20:08:46.753 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:08:46.754 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:08:46.754 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:08:46.754 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:08:46.787 +02:00 [INF] Received HTTP response headers after 33.1893ms - 200 +2024-05-23 20:08:46.788 +02:00 [INF] End processing HTTP request after 33.6315ms - 200 +2024-05-23 20:08:46.788 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:08:46.823 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.823 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.855 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.900 +02:00 [INF] Published NotificationCreated event for NotificationId=cd900faf-36fd-4fdc-ac67-965928deefde +2024-05-23 20:08:46.930 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 1e71d2152ebb4117838d3f2c4f0ba6c1, Correlation ID: 9f51aa8f42bb4944a4fb91ac3ec496e8, retry: 0 +2024-05-23 20:08:46.930 +02:00 [INF] Received a message with ID: 'de6b3c6782c44b6db32ebb7f03eb5c77', Correlation ID: '7613868f3ef14fcca195ee73e4ade6fd', timestamp: 1716487726, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:08:46.930 +02:00 [INF] Handling a message: pending_friend_accepted with ID: de6b3c6782c44b6db32ebb7f03eb5c77, Correlation ID: 7613868f3ef14fcca195ee73e4ade6fd, retry: 0 +2024-05-23 20:08:46.958 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:08:46.959 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.959 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:46.987 +02:00 [INF] Received HTTP response headers after 28.0606ms - 200 +2024-05-23 20:08:46.987 +02:00 [INF] End processing HTTP request after 28.4506ms - 200 +2024-05-23 20:08:46.987 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:08:46.987 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:08:46.988 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:08:46.988 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:08:47.016 +02:00 [INF] Received HTTP response headers after 28.6561ms - 200 +2024-05-23 20:08:47.017 +02:00 [INF] End processing HTTP request after 29.0207ms - 200 +2024-05-23 20:08:47.017 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:08:47.048 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:47.081 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:08:47.111 +02:00 [INF] Published NotificationCreated event for NotificationId=7592b7e6-e5f0-4cd1-b886-a1ee28183a13 +2024-05-23 20:08:47.141 +02:00 [INF] Handled a message: pending_friend_accepted with ID: de6b3c6782c44b6db32ebb7f03eb5c77, Correlation ID: 7613868f3ef14fcca195ee73e4ade6fd, retry: 0 +2024-05-23 20:08:52.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:08:52.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:52.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:52.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7313ms +2024-05-23 20:08:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:08:56.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:56.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:08:56.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.2208ms +2024-05-23 20:09:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:09:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:07.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:07.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3435ms +2024-05-23 20:09:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:09:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:11.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:11.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.7301ms +2024-05-23 20:09:22.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:09:22.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:22.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:22.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9589ms +2024-05-23 20:09:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:09:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:26.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 34.7547ms +2024-05-23 20:09:37.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:09:37.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.7022ms +2024-05-23 20:09:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:09:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.204ms +2024-05-23 20:09:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:09:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:52.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:52.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.5244ms +2024-05-23 20:09:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:09:56.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:09:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7372ms +2024-05-23 20:10:07.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:10:07.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:07.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:07.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7596ms +2024-05-23 20:10:11.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:10:11.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:11.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:11.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.2699ms +2024-05-23 20:10:22.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:10:22.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:22.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3837ms +2024-05-23 20:10:26.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:10:26.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:26.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:26.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8559ms +2024-05-23 20:10:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:10:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:37.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:37.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7991ms +2024-05-23 20:10:41.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:10:41.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:41.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:41.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.0855ms +2024-05-23 20:10:52.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:10:52.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:52.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:52.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.9013ms +2024-05-23 20:10:56.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:10:56.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:56.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:10:56.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.7625ms +2024-05-23 20:11:07.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:11:07.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:07.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:07.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.8682ms +2024-05-23 20:11:11.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:11:11.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:11.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:11.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5046ms +2024-05-23 20:11:22.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:11:22.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:22.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 34.5395ms +2024-05-23 20:11:26.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:11:26.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:26.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:26.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.236ms +2024-05-23 20:11:37.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:11:37.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8111ms +2024-05-23 20:11:41.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:11:41.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:41.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:41.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.0951ms +2024-05-23 20:11:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:11:52.927 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:52.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:52.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 58.6729ms +2024-05-23 20:11:56.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:11:57.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:57.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:11:57.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 51.8244ms +2024-05-23 20:12:08.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:12:08.722 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:08.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:08.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 180.6776ms +2024-05-23 20:12:12.232 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:12:12.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:12.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:12.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 127.7278ms +2024-05-23 20:12:24.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:12:24.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:25.176 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:25.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 329.8ms +2024-05-23 20:12:27.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:12:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:28.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:28.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 547.6457ms +2024-05-23 20:12:46.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:12:46.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:46.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:46.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 726.63ms +2024-05-23 20:12:48.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:12:48.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:50.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:12:50.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 2171.8361ms +2024-05-23 20:14:26.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:14:26.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:26.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:26.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 66.3675ms +2024-05-23 20:14:37.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:14:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:37.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:37.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5127ms +2024-05-23 20:14:41.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:14:41.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:41.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:41.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.8467ms +2024-05-23 20:14:52.922 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:14:52.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:52.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:52.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 39.8878ms +2024-05-23 20:14:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:14:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:14:56.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.8161ms +2024-05-23 20:15:07.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:15:07.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:07.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:07.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 35.3291ms +2024-05-23 20:15:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:15:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8117ms +2024-05-23 20:15:22.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:15:22.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:22.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:22.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.3256ms +2024-05-23 20:15:26.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:15:26.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:26.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:26.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 44.014ms +2024-05-23 20:15:37.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:15:37.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:37.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:37.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.8925ms +2024-05-23 20:15:41.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:15:41.900 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 39.752ms +2024-05-23 20:15:52.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:15:52.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:52.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:52.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 39.9953ms +2024-05-23 20:15:56.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:15:56.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:56.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:15:56.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.9138ms +2024-05-23 20:16:07.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:16:07.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:07.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:07.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 38.5849ms +2024-05-23 20:16:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:16:11.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:11.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:11.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.6132ms +2024-05-23 20:16:22.573 +02:00 [INF] Deregistering a service [id: notifications-service:678270f0ff36490b8a5a7f726fbeb11e] from Consul... +2024-05-23 20:16:22.575 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:678270f0ff36490b8a5a7f726fbeb11e" +2024-05-23 20:16:22.575 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:678270f0ff36490b8a5a7f726fbeb11e +2024-05-23 20:16:22.575 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:678270f0ff36490b8a5a7f726fbeb11e +2024-05-23 20:16:22.593 +02:00 [INF] Received HTTP response headers after 17.4984ms - 200 +2024-05-23 20:16:22.593 +02:00 [INF] End processing HTTP request after 18.1322ms - 200 +2024-05-23 20:16:22.593 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:16:22.594 +02:00 [INF] Deregistered a service [id: notifications-service:678270f0ff36490b8a5a7f726fbeb11e] from Consul. +2024-05-23 20:16:28.809 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:16:28.859 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:16:28.930 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:16:28.989 +02:00 [INF] Registering a service [id: notifications-service:f50a1725bf7c48fa96fb518676cdcfdd] in Consul... +2024-05-23 20:16:29.007 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:16:29.011 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:16:29.011 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:16:29.028 +02:00 [INF] Received HTTP response headers after 14.1671ms - 200 +2024-05-23 20:16:29.028 +02:00 [INF] End processing HTTP request after 18.4624ms - 200 +2024-05-23 20:16:29.032 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:16:29.032 +02:00 [INF] Registered a service [id: notifications-service:f50a1725bf7c48fa96fb518676cdcfdd] in Consul. +2024-05-23 20:16:29.039 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:16:29.049 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:16:29.052 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:16:29.055 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:16:29.058 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:16:29.060 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:16:29.063 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'friends'. +2024-05-23 20:16:29.064 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:16:29.100 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:16:29.100 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:16:32.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:16:32.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:33.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:33.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 149.0794ms +2024-05-23 20:16:37.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:16:37.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:37.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:37.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 40.4595ms +2024-05-23 20:16:41.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:16:41.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:41.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:41.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.1546ms +2024-05-23 20:16:52.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:16:52.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:52.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:52.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.5316ms +2024-05-23 20:16:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:16:56.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:56.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:16:56.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.7747ms +2024-05-23 20:17:01.671 +02:00 [INF] Received a message with ID: '3a2a83674dd440c49157ee87ea6d1cc0', Correlation ID: 'a1fd180b471944749934c9f5478bc810', timestamp: 1716488221, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:17:01.671 +02:00 [INF] Received a message with ID: '94cc075d4c544769b7a2052abb2aae7d', Correlation ID: '1ce01416cf0f4bfab3f248062117b8ce', timestamp: 1716488221, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:17:01.687 +02:00 [INF] Handling a message: friend_invited with ID: 94cc075d4c544769b7a2052abb2aae7d, Correlation ID: 1ce01416cf0f4bfab3f248062117b8ce, retry: 0 +2024-05-23 20:17:01.687 +02:00 [INF] Handling a message: friend_request_sent with ID: 3a2a83674dd440c49157ee87ea6d1cc0, Correlation ID: a1fd180b471944749934c9f5478bc810, retry: 0 +2024-05-23 20:17:01.745 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:17:01.746 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:01.746 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:01.781 +02:00 [INF] Received HTTP response headers after 34.4049ms - 200 +2024-05-23 20:17:01.781 +02:00 [INF] End processing HTTP request after 35.4368ms - 200 +2024-05-23 20:17:01.782 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:01.884 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:17:01.886 +02:00 [INF] Handled a message: friend_request_sent with ID: 3a2a83674dd440c49157ee87ea6d1cc0, Correlation ID: a1fd180b471944749934c9f5478bc810, retry: 0 +2024-05-23 20:17:01.979 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:17:01.979 +02:00 [INF] Handled a message: friend_invited with ID: 94cc075d4c544769b7a2052abb2aae7d, Correlation ID: 1ce01416cf0f4bfab3f248062117b8ce, retry: 0 +2024-05-23 20:17:07.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:17:07.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:07.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:07.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 36.7536ms +2024-05-23 20:17:11.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:17:11.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:11.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:11.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6848ms +2024-05-23 20:17:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:17:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.713ms +2024-05-23 20:17:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:17:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:26.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:26.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.6354ms +2024-05-23 20:17:37.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:17:37.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:37.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:37.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.073ms +2024-05-23 20:17:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:17:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:41.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:41.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9977ms +2024-05-23 20:17:48.265 +02:00 [INF] Deregistering a service [id: notifications-service:f50a1725bf7c48fa96fb518676cdcfdd] from Consul... +2024-05-23 20:17:48.266 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:f50a1725bf7c48fa96fb518676cdcfdd" +2024-05-23 20:17:48.267 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f50a1725bf7c48fa96fb518676cdcfdd +2024-05-23 20:17:48.268 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f50a1725bf7c48fa96fb518676cdcfdd +2024-05-23 20:17:48.275 +02:00 [INF] Received HTTP response headers after 7.5057ms - 200 +2024-05-23 20:17:48.276 +02:00 [INF] End processing HTTP request after 9.1545ms - 200 +2024-05-23 20:17:48.277 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:48.279 +02:00 [INF] Deregistered a service [id: notifications-service:f50a1725bf7c48fa96fb518676cdcfdd] from Consul. +2024-05-23 20:17:55.160 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:17:55.210 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:17:55.293 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:17:55.352 +02:00 [INF] Registering a service [id: notifications-service:be4e4bc0b9b54acf84126fa569183106] in Consul... +2024-05-23 20:17:55.373 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:17:55.376 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:17:55.377 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:17:55.387 +02:00 [INF] Received HTTP response headers after 7.7981ms - 200 +2024-05-23 20:17:55.389 +02:00 [INF] End processing HTTP request after 13.4589ms - 200 +2024-05-23 20:17:55.393 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:55.394 +02:00 [INF] Registered a service [id: notifications-service:be4e4bc0b9b54acf84126fa569183106] in Consul. +2024-05-23 20:17:55.403 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:17:55.403 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:17:55.403 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:17:55.415 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:17:55.423 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:17:55.426 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:17:55.429 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:17:55.431 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:17:55.434 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:17:55.438 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:17:55.445 +02:00 [INF] Received a message with ID: '4ad5d3afe63a434c8b86ec6a89c3cad5', Correlation ID: '276f85fdfdc44023b138c44a2102d558', timestamp: 1716488241, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:17:55.467 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 4ad5d3afe63a434c8b86ec6a89c3cad5, Correlation ID: 276f85fdfdc44023b138c44a2102d558, retry: 0 +2024-05-23 20:17:55.773 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:17:55.774 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:55.774 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:55.811 +02:00 [INF] Received HTTP response headers after 37.0552ms - 200 +2024-05-23 20:17:55.811 +02:00 [INF] End processing HTTP request after 37.7334ms - 200 +2024-05-23 20:17:55.812 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:55.829 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:17:55.829 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:17:55.830 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:17:55.857 +02:00 [INF] Received HTTP response headers after 27.2778ms - 200 +2024-05-23 20:17:55.857 +02:00 [INF] End processing HTTP request after 28.0434ms - 200 +2024-05-23 20:17:55.858 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:55.892 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:55.892 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:55.938 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:55.985 +02:00 [INF] Published NotificationCreated event for NotificationId=25232f1f-4c53-4292-9bea-5ace56aff49d +2024-05-23 20:17:56.019 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 4ad5d3afe63a434c8b86ec6a89c3cad5, Correlation ID: 276f85fdfdc44023b138c44a2102d558, retry: 0 +2024-05-23 20:17:56.023 +02:00 [INF] Received a message with ID: 'd49e70d7727f4bc1a5d15d7c905c4069', Correlation ID: 'de3eaaea40e342759630684afe433ba6', timestamp: 1716488241, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:17:56.024 +02:00 [INF] Handling a message: pending_friend_accepted with ID: d49e70d7727f4bc1a5d15d7c905c4069, Correlation ID: de3eaaea40e342759630684afe433ba6, retry: 0 +2024-05-23 20:17:56.053 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:17:56.053 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:56.053 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:56.081 +02:00 [INF] Received HTTP response headers after 27.4477ms - 200 +2024-05-23 20:17:56.081 +02:00 [INF] End processing HTTP request after 28.1598ms - 200 +2024-05-23 20:17:56.082 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:56.082 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:17:56.082 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:17:56.082 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:17:56.112 +02:00 [INF] Received HTTP response headers after 29.2905ms - 200 +2024-05-23 20:17:56.112 +02:00 [INF] End processing HTTP request after 30.0608ms - 200 +2024-05-23 20:17:56.112 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:17:56.151 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:56.188 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:17:56.219 +02:00 [INF] Published NotificationCreated event for NotificationId=1c7602e5-abf2-483e-9651-9209a8bda8b8 +2024-05-23 20:17:56.254 +02:00 [INF] Handled a message: pending_friend_accepted with ID: d49e70d7727f4bc1a5d15d7c905c4069, Correlation ID: de3eaaea40e342759630684afe433ba6, retry: 0 +2024-05-23 20:17:56.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:17:56.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:57.024 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:57.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 118.0764ms +2024-05-23 20:17:58.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:17:58.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:58.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:17:58.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 44.5171ms +2024-05-23 20:18:07.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:18:07.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:07.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:07.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 39.8205ms +2024-05-23 20:18:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:18:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:11.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:11.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.8835ms +2024-05-23 20:18:12.106 +02:00 [INF] Deregistering a service [id: notifications-service:be4e4bc0b9b54acf84126fa569183106] from Consul... +2024-05-23 20:18:12.107 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:be4e4bc0b9b54acf84126fa569183106" +2024-05-23 20:18:12.107 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:be4e4bc0b9b54acf84126fa569183106 +2024-05-23 20:18:12.108 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:be4e4bc0b9b54acf84126fa569183106 +2024-05-23 20:18:12.110 +02:00 [INF] Received HTTP response headers after 2.4958ms - 200 +2024-05-23 20:18:12.111 +02:00 [INF] End processing HTTP request after 3.1741ms - 200 +2024-05-23 20:18:12.111 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:12.111 +02:00 [INF] Deregistered a service [id: notifications-service:be4e4bc0b9b54acf84126fa569183106] from Consul. +2024-05-23 20:18:17.292 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:18:17.364 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:18:17.441 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:18:17.500 +02:00 [INF] Registering a service [id: notifications-service:ca7917ad8c3f471db5f30d64ad6965e2] in Consul... +2024-05-23 20:18:17.519 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:18:17.523 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:18:17.523 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:18:17.534 +02:00 [INF] Received HTTP response headers after 8.3771ms - 200 +2024-05-23 20:18:17.535 +02:00 [INF] End processing HTTP request after 13.1825ms - 200 +2024-05-23 20:18:17.539 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:17.540 +02:00 [INF] Registered a service [id: notifications-service:ca7917ad8c3f471db5f30d64ad6965e2] in Consul. +2024-05-23 20:18:17.547 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:18:17.555 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:18:17.555 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:18:17.558 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:18:17.561 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:18:17.563 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:18:17.565 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:18:17.569 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:18:17.571 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:18:17.574 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:18:22.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:18:22.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:22.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:22.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 111.9033ms +2024-05-23 20:18:23.484 +02:00 [INF] Received a message with ID: '6d19cc1a628c4253bf6db12cd25919a0', Correlation ID: '365fc7452fac4b4c96df0ab81480e8d3', timestamp: 1716488303, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:18:23.484 +02:00 [INF] Received a message with ID: '0ab9bcbe84534544a017b1a77a68bae2', Correlation ID: '8da3d5f2e98d42e29adb17c3e4f53e49', timestamp: 1716488303, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:18:23.508 +02:00 [INF] Handling a message: friend_invited with ID: 6d19cc1a628c4253bf6db12cd25919a0, Correlation ID: 365fc7452fac4b4c96df0ab81480e8d3, retry: 0 +2024-05-23 20:18:23.508 +02:00 [INF] Handling a message: friend_request_sent with ID: 0ab9bcbe84534544a017b1a77a68bae2, Correlation ID: 8da3d5f2e98d42e29adb17c3e4f53e49, retry: 0 +2024-05-23 20:18:23.553 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:18:23.554 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:23.554 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:23.596 +02:00 [INF] Received HTTP response headers after 41.7048ms - 200 +2024-05-23 20:18:23.596 +02:00 [INF] End processing HTTP request after 42.2447ms - 200 +2024-05-23 20:18:23.596 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:23.832 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:18:23.834 +02:00 [INF] Handled a message: friend_invited with ID: 6d19cc1a628c4253bf6db12cd25919a0, Correlation ID: 365fc7452fac4b4c96df0ab81480e8d3, retry: 0 +2024-05-23 20:18:23.906 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:18:23.906 +02:00 [INF] Handled a message: friend_request_sent with ID: 0ab9bcbe84534544a017b1a77a68bae2, Correlation ID: 8da3d5f2e98d42e29adb17c3e4f53e49, retry: 0 +2024-05-23 20:18:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:18:26.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:26.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:26.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 40.8679ms +2024-05-23 20:18:37.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:18:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:37.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:37.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.3112ms +2024-05-23 20:18:38.775 +02:00 [INF] Received a message with ID: '480c77da06c644179eb5aff24a5160ef', Correlation ID: '38da17ac9ff14055a351edbb3d776e7b', timestamp: 1716488318, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:18:38.777 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 480c77da06c644179eb5aff24a5160ef, Correlation ID: 38da17ac9ff14055a351edbb3d776e7b, retry: 0 +2024-05-23 20:18:38.809 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:18:38.809 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:38.810 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:38.842 +02:00 [INF] Received HTTP response headers after 32.3052ms - 200 +2024-05-23 20:18:38.842 +02:00 [INF] End processing HTTP request after 33.0037ms - 200 +2024-05-23 20:18:38.843 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:38.843 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:18:38.844 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:18:38.844 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:18:38.879 +02:00 [INF] Received HTTP response headers after 35.2625ms - 200 +2024-05-23 20:18:38.880 +02:00 [INF] End processing HTTP request after 35.9963ms - 200 +2024-05-23 20:18:38.880 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:38.909 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:38.909 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:38.948 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:38.980 +02:00 [INF] Published NotificationCreated event for NotificationId=0fe2ba9f-02ef-4581-b14c-39d8ade6d8ea +2024-05-23 20:18:39.011 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 480c77da06c644179eb5aff24a5160ef, Correlation ID: 38da17ac9ff14055a351edbb3d776e7b, retry: 0 +2024-05-23 20:18:39.011 +02:00 [INF] Received a message with ID: '567f9766b5554f72808ee6132652c9b8', Correlation ID: '46226f3a50674683964c94569b0bac25', timestamp: 1716488318, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:18:39.012 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 567f9766b5554f72808ee6132652c9b8, Correlation ID: 46226f3a50674683964c94569b0bac25, retry: 0 +2024-05-23 20:18:39.039 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:18:39.039 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:39.040 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:39.067 +02:00 [INF] Received HTTP response headers after 27.4701ms - 200 +2024-05-23 20:18:39.068 +02:00 [INF] End processing HTTP request after 28.2034ms - 200 +2024-05-23 20:18:39.068 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:39.068 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:18:39.069 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:18:39.069 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:18:39.099 +02:00 [INF] Received HTTP response headers after 29.9392ms - 200 +2024-05-23 20:18:39.099 +02:00 [INF] End processing HTTP request after 30.457ms - 200 +2024-05-23 20:18:39.099 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:18:39.129 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:39.165 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:18:39.195 +02:00 [INF] Published NotificationCreated event for NotificationId=a9c72b60-79aa-40d2-83b6-e6c30a3bf4d6 +2024-05-23 20:18:39.225 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 567f9766b5554f72808ee6132652c9b8, Correlation ID: 46226f3a50674683964c94569b0bac25, retry: 0 +2024-05-23 20:18:41.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:18:41.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:41.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:41.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.6561ms +2024-05-23 20:18:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:18:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:52.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:52.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8642ms +2024-05-23 20:18:56.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:18:56.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:56.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:18:56.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.995ms +2024-05-23 20:19:07.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:19:07.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:07.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:07.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7178ms +2024-05-23 20:19:11.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:19:11.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:11.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:11.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.5651ms +2024-05-23 20:19:22.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:19:22.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:22.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:22.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1454ms +2024-05-23 20:19:26.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:19:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:26.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:26.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6779ms +2024-05-23 20:19:37.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:19:37.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:37.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:37.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6116ms +2024-05-23 20:19:41.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:19:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:41.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:41.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1499ms +2024-05-23 20:19:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:19:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:52.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:52.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2727ms +2024-05-23 20:19:56.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:19:56.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:56.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:19:56.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.4631ms +2024-05-23 20:20:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:20:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:07.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8139ms +2024-05-23 20:20:11.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:20:11.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:11.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:11.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.1841ms +2024-05-23 20:20:22.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:20:22.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:22.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:22.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.7467ms +2024-05-23 20:20:26.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:20:26.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:26.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:26.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.1458ms +2024-05-23 20:20:37.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:20:37.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:37.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:37.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9465ms +2024-05-23 20:20:41.893 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:20:41.895 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:41.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:41.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 33.1457ms +2024-05-23 20:20:52.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:20:52.854 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:52.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:52.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.02ms +2024-05-23 20:20:56.410 +02:00 [INF] Received a message with ID: 'd4970005ca1a4c0c972c00736483de9b', Correlation ID: 'a816871cc8174d6e8e5d322c07d55475', timestamp: 1716488456, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:20:56.410 +02:00 [INF] Received a message with ID: '1fcd2b3c4f5e42f39059fea302a3acaa', Correlation ID: '8a713deeaab94c66a58e6e5d2f982a1c', timestamp: 1716488456, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:20:56.411 +02:00 [INF] Handling a message: friend_request_sent with ID: 1fcd2b3c4f5e42f39059fea302a3acaa, Correlation ID: 8a713deeaab94c66a58e6e5d2f982a1c, retry: 0 +2024-05-23 20:20:56.411 +02:00 [INF] Handling a message: friend_invited with ID: d4970005ca1a4c0c972c00736483de9b, Correlation ID: a816871cc8174d6e8e5d322c07d55475, retry: 0 +2024-05-23 20:20:56.441 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:20:56.441 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:20:56.441 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:20:56.472 +02:00 [INF] Received HTTP response headers after 30.7793ms - 200 +2024-05-23 20:20:56.472 +02:00 [INF] End processing HTTP request after 31.3259ms - 200 +2024-05-23 20:20:56.472 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:20:56.539 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:20:56.540 +02:00 [INF] Handled a message: friend_request_sent with ID: 1fcd2b3c4f5e42f39059fea302a3acaa, Correlation ID: 8a713deeaab94c66a58e6e5d2f982a1c, retry: 0 +2024-05-23 20:20:56.631 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:20:56.631 +02:00 [INF] Handled a message: friend_invited with ID: d4970005ca1a4c0c972c00736483de9b, Correlation ID: a816871cc8174d6e8e5d322c07d55475, retry: 0 +2024-05-23 20:20:56.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:20:56.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:56.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:20:56.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.0277ms +2024-05-23 20:21:07.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:21:07.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:07.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:07.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.5105ms +2024-05-23 20:21:08.462 +02:00 [INF] Received a message with ID: '5670bc922d9f423a8cc718b92a6182ce', Correlation ID: '4c0ec380b0ca4f9b933b87cfa2eaefe9', timestamp: 1716488468, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:21:08.462 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 5670bc922d9f423a8cc718b92a6182ce, Correlation ID: 4c0ec380b0ca4f9b933b87cfa2eaefe9, retry: 0 +2024-05-23 20:21:08.490 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:21:08.490 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:21:08.491 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:21:08.521 +02:00 [INF] Received HTTP response headers after 29.8236ms - 200 +2024-05-23 20:21:08.521 +02:00 [INF] End processing HTTP request after 30.4534ms - 200 +2024-05-23 20:21:08.521 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:21:08.521 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:21:08.521 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:21:08.521 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:21:08.551 +02:00 [INF] Received HTTP response headers after 29.623ms - 200 +2024-05-23 20:21:08.552 +02:00 [INF] End processing HTTP request after 30.1866ms - 200 +2024-05-23 20:21:08.552 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:21:08.579 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:21:08.579 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:21:08.609 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:21:08.639 +02:00 [INF] Published NotificationCreated event for NotificationId=fc1ad85d-6c46-45b5-b4b1-dea41736474d +2024-05-23 20:21:08.670 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 5670bc922d9f423a8cc718b92a6182ce, Correlation ID: 4c0ec380b0ca4f9b933b87cfa2eaefe9, retry: 0 +2024-05-23 20:21:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:21:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:11.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:11.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 42.5153ms +2024-05-23 20:21:22.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:21:22.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:22.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3934ms +2024-05-23 20:21:26.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:21:26.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:26.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:26.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1265ms +2024-05-23 20:21:37.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:21:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:37.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:37.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3606ms +2024-05-23 20:21:41.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:21:41.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:41.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:41.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.4017ms +2024-05-23 20:21:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:21:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:52.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:52.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.6674ms +2024-05-23 20:21:56.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:21:56.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:56.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:21:56.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.233ms +2024-05-23 20:22:07.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:22:07.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:07.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:07.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 36.9509ms +2024-05-23 20:22:11.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:22:11.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:11.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:11.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.8229ms +2024-05-23 20:22:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:22:22.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:22.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8451ms +2024-05-23 20:22:26.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:22:26.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:26.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:26.923 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1753ms +2024-05-23 20:22:37.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:22:37.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:37.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.3894ms +2024-05-23 20:22:41.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:22:41.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:41.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:41.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.199ms +2024-05-23 20:22:51.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:22:51.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:51.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:51.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.3616ms +2024-05-23 20:22:51.137 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:22:51.138 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:51.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:51.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.8534ms +2024-05-23 20:22:52.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:22:52.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:52.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:22:52.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.0658ms +2024-05-23 20:22:53.931 +02:00 [INF] Received a message with ID: '26795c4efd304382aa54413cb49ee972', Correlation ID: '8a53a4d4f8e74242a1a619a99ef8dc46', timestamp: 1716488573, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:22:53.932 +02:00 [INF] Handling a message: friend_invited with ID: 26795c4efd304382aa54413cb49ee972, Correlation ID: 8a53a4d4f8e74242a1a619a99ef8dc46, retry: 0 +2024-05-23 20:22:53.938 +02:00 [INF] Received a message with ID: '7cde67cbd4c84a24a6c3259aac7dbb60', Correlation ID: 'b8a3edcc838d422599b550ccae6a37b9', timestamp: 1716488573, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:22:53.940 +02:00 [INF] Handling a message: friend_request_sent with ID: 7cde67cbd4c84a24a6c3259aac7dbb60, Correlation ID: b8a3edcc838d422599b550ccae6a37b9, retry: 0 +2024-05-23 20:22:53.963 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:22:53.964 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:22:53.964 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:22:53.996 +02:00 [INF] Received HTTP response headers after 31.893ms - 200 +2024-05-23 20:22:53.996 +02:00 [INF] End processing HTTP request after 32.319ms - 200 +2024-05-23 20:22:53.996 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:22:54.064 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:22:54.064 +02:00 [INF] Handled a message: friend_request_sent with ID: 7cde67cbd4c84a24a6c3259aac7dbb60, Correlation ID: b8a3edcc838d422599b550ccae6a37b9, retry: 0 +2024-05-23 20:22:54.152 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:22:54.153 +02:00 [INF] Handled a message: friend_invited with ID: 26795c4efd304382aa54413cb49ee972, Correlation ID: 8a53a4d4f8e74242a1a619a99ef8dc46, retry: 0 +2024-05-23 20:23:06.121 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:23:06.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:06.149 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:06.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.5259ms +2024-05-23 20:23:07.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:23:07.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:07.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:07.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 138.2503ms +2024-05-23 20:23:11.078 +02:00 [INF] Received a message with ID: '29afd5357ed54020b1d583500c7e9407', Correlation ID: '6cc2001fd8d24253952916901012cb91', timestamp: 1716488591, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:23:11.079 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 29afd5357ed54020b1d583500c7e9407, Correlation ID: 6cc2001fd8d24253952916901012cb91, retry: 0 +2024-05-23 20:23:11.111 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:23:11.119 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:23:11.120 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:23:11.163 +02:00 [INF] Received HTTP response headers after 41.9686ms - 200 +2024-05-23 20:23:11.165 +02:00 [INF] End processing HTTP request after 45.5576ms - 200 +2024-05-23 20:23:11.165 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:23:11.167 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 20:23:11.171 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:23:11.172 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:23:11.204 +02:00 [INF] Received HTTP response headers after 30.2797ms - 200 +2024-05-23 20:23:11.206 +02:00 [INF] End processing HTTP request after 34.7814ms - 200 +2024-05-23 20:23:11.207 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:23:11.234 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:23:11.264 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:23:11.295 +02:00 [INF] Published NotificationCreated event for NotificationId=f932b79d-596d-4d6a-85b0-c3ef945f7be9 +2024-05-23 20:23:11.326 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 29afd5357ed54020b1d583500c7e9407, Correlation ID: 6cc2001fd8d24253952916901012cb91, retry: 0 +2024-05-23 20:23:21.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:23:21.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:21.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:21.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.1688ms +2024-05-23 20:23:22.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:23:22.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:22.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:22.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.207ms +2024-05-23 20:23:36.120 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:23:36.121 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:36.150 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:36.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.2485ms +2024-05-23 20:23:37.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:23:37.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.4514ms +2024-05-23 20:23:51.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:23:51.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:51.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:51.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.3295ms +2024-05-23 20:23:52.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:23:52.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:52.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:23:52.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4953ms +2024-05-23 20:24:06.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:24:06.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:06.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:06.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.4725ms +2024-05-23 20:24:07.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:24:07.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:07.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.1482ms +2024-05-23 20:24:21.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:24:21.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:21.145 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:21.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.1118ms +2024-05-23 20:24:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:24:22.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:22.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.224ms +2024-05-23 20:24:37.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:24:37.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:37.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:37.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.752ms +2024-05-23 20:24:39.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:24:39.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:39.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:39.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.6729ms +2024-05-23 20:24:39.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:24:39.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:39.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:39.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.7833ms +2024-05-23 20:24:42.388 +02:00 [INF] Received a message with ID: '2500d7f72fd642278e289bdf72fcea0e', Correlation ID: '4f3cadc551534e9e917b16344d4ca5d5', timestamp: 1716488682, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:24:42.389 +02:00 [INF] Handling a message: friend_invited with ID: 2500d7f72fd642278e289bdf72fcea0e, Correlation ID: 4f3cadc551534e9e917b16344d4ca5d5, retry: 0 +2024-05-23 20:24:42.389 +02:00 [INF] Received a message with ID: '7b0c80e8cebd488383b13fefe8db8345', Correlation ID: 'f376b4311eb341a5beab11ea269a3902', timestamp: 1716488682, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:24:42.394 +02:00 [INF] Handling a message: friend_request_sent with ID: 7b0c80e8cebd488383b13fefe8db8345, Correlation ID: f376b4311eb341a5beab11ea269a3902, retry: 0 +2024-05-23 20:24:42.422 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:24:42.422 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:24:42.422 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:24:42.450 +02:00 [INF] Received HTTP response headers after 27.9653ms - 200 +2024-05-23 20:24:42.451 +02:00 [INF] End processing HTTP request after 28.7773ms - 200 +2024-05-23 20:24:42.451 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:24:42.513 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:24:42.513 +02:00 [INF] Handled a message: friend_request_sent with ID: 7b0c80e8cebd488383b13fefe8db8345, Correlation ID: f376b4311eb341a5beab11ea269a3902, retry: 0 +2024-05-23 20:24:42.605 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:24:42.606 +02:00 [INF] Handled a message: friend_invited with ID: 2500d7f72fd642278e289bdf72fcea0e, Correlation ID: 4f3cadc551534e9e917b16344d4ca5d5, retry: 0 +2024-05-23 20:24:52.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:24:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:52.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:52.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.013ms +2024-05-23 20:24:54.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:24:54.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:54.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:24:54.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.7122ms +2024-05-23 20:25:04.919 +02:00 [INF] Received a message with ID: '4917db4fd9204775ab048a204e37a6b5', Correlation ID: '6bd29d0cfe534d0b97bc9ce4cbe8a36a', timestamp: 1716488704, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:25:04.920 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 4917db4fd9204775ab048a204e37a6b5, Correlation ID: 6bd29d0cfe534d0b97bc9ce4cbe8a36a, retry: 0 +2024-05-23 20:25:04.947 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:25:04.948 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:25:04.948 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:25:04.988 +02:00 [INF] Received HTTP response headers after 40.0308ms - 200 +2024-05-23 20:25:04.988 +02:00 [INF] End processing HTTP request after 40.3723ms - 200 +2024-05-23 20:25:04.988 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:25:04.988 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 20:25:04.988 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:25:04.988 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:25:05.026 +02:00 [INF] Received HTTP response headers after 37.9453ms - 200 +2024-05-23 20:25:05.027 +02:00 [INF] End processing HTTP request after 38.2543ms - 200 +2024-05-23 20:25:05.027 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:25:05.058 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:25:05.089 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:25:05.121 +02:00 [INF] Published NotificationCreated event for NotificationId=6a6dcdb9-16d4-4737-9f4c-5331b72ff192 +2024-05-23 20:25:05.152 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 4917db4fd9204775ab048a204e37a6b5, Correlation ID: 6bd29d0cfe534d0b97bc9ce4cbe8a36a, retry: 0 +2024-05-23 20:25:07.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:25:07.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:07.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:07.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.124ms +2024-05-23 20:25:09.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:25:09.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:09.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:09.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 36.1284ms +2024-05-23 20:25:22.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:25:22.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:22.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.274ms +2024-05-23 20:25:24.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:25:24.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:24.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:24.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 29.8905ms +2024-05-23 20:25:37.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:25:37.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:37.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:37.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.3252ms +2024-05-23 20:25:39.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:25:39.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:39.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:39.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 31.1763ms +2024-05-23 20:25:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:25:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:52.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:52.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.9392ms +2024-05-23 20:25:54.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:25:54.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:54.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:25:54.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.8778ms +2024-05-23 20:26:07.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:26:07.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:07.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:07.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3723ms +2024-05-23 20:26:09.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:26:09.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:09.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:09.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 25.8397ms +2024-05-23 20:26:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:26:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:22.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4951ms +2024-05-23 20:26:24.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:26:24.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:24.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:24.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 26.7291ms +2024-05-23 20:26:37.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:26:37.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:37.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:37.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.5418ms +2024-05-23 20:26:39.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:26:39.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:39.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:39.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.8974ms +2024-05-23 20:26:41.350 +02:00 [INF] Deregistering a service [id: notifications-service:ca7917ad8c3f471db5f30d64ad6965e2] from Consul... +2024-05-23 20:26:41.351 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ca7917ad8c3f471db5f30d64ad6965e2" +2024-05-23 20:26:41.352 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ca7917ad8c3f471db5f30d64ad6965e2 +2024-05-23 20:26:41.352 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ca7917ad8c3f471db5f30d64ad6965e2 +2024-05-23 20:26:41.358 +02:00 [INF] Received HTTP response headers after 5.524ms - 200 +2024-05-23 20:26:41.358 +02:00 [INF] End processing HTTP request after 6.5202ms - 200 +2024-05-23 20:26:41.359 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:26:41.360 +02:00 [INF] Deregistered a service [id: notifications-service:ca7917ad8c3f471db5f30d64ad6965e2] from Consul. +2024-05-23 20:26:47.136 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:26:47.183 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:26:47.222 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:26:47.289 +02:00 [INF] Registering a service [id: notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f] in Consul... +2024-05-23 20:26:47.305 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:26:47.308 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:26:47.308 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:26:47.317 +02:00 [INF] Received HTTP response headers after 6.7684ms - 200 +2024-05-23 20:26:47.318 +02:00 [INF] End processing HTTP request after 10.7187ms - 200 +2024-05-23 20:26:47.320 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:26:47.321 +02:00 [INF] Registered a service [id: notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f] in Consul. +2024-05-23 20:26:47.327 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:26:47.335 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:26:47.337 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:26:47.339 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:26:47.339 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:26:47.340 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:26:47.341 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:26:47.343 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:26:47.346 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:26:47.347 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:26:52.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:26:52.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:52.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:52.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 109.8561ms +2024-05-23 20:26:54.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:26:54.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:54.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:26:54.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 29.3831ms +2024-05-23 20:27:07.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:27:07.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:07.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.1869ms +2024-05-23 20:27:09.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:27:09.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:09.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:09.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.0999ms +2024-05-23 20:27:10.807 +02:00 [INF] Received a message with ID: '839c4158865e461a82cb4877120b291e', Correlation ID: '7979403eb633454b8776832ecc57f6ed', timestamp: 1716488830, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:27:10.807 +02:00 [INF] Received a message with ID: '65d19dec9e664f38ada3eeb014afda26', Correlation ID: '9e143c9fa2e74a2a8a04f44022466509', timestamp: 1716488830, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:27:10.821 +02:00 [INF] Handling a message: friend_request_sent with ID: 65d19dec9e664f38ada3eeb014afda26, Correlation ID: 9e143c9fa2e74a2a8a04f44022466509, retry: 0 +2024-05-23 20:27:10.821 +02:00 [INF] Handling a message: friend_invited with ID: 839c4158865e461a82cb4877120b291e, Correlation ID: 7979403eb633454b8776832ecc57f6ed, retry: 0 +2024-05-23 20:27:11.019 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:27:11.022 +02:00 [INF] Handled a message: friend_request_sent with ID: 65d19dec9e664f38ada3eeb014afda26, Correlation ID: 9e143c9fa2e74a2a8a04f44022466509, retry: 0 +2024-05-23 20:27:11.117 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:27:11.117 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:11.117 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:11.150 +02:00 [INF] Received HTTP response headers after 32.2432ms - 200 +2024-05-23 20:27:11.150 +02:00 [INF] End processing HTTP request after 32.7287ms - 200 +2024-05-23 20:27:11.150 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:27:11.322 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:27:11.322 +02:00 [INF] Handled a message: friend_invited with ID: 839c4158865e461a82cb4877120b291e, Correlation ID: 7979403eb633454b8776832ecc57f6ed, retry: 0 +2024-05-23 20:27:22.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:27:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:22.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:22.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8075ms +2024-05-23 20:27:24.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:27:24.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:24.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:24.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 35.7117ms +2024-05-23 20:27:29.114 +02:00 [INF] Received a message with ID: '17bc380d1713438a91b81f563ed42176', Correlation ID: 'e81a0bebbcac4c84a9ccf2be5bc64a4e', timestamp: 1716488849, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:27:29.115 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 17bc380d1713438a91b81f563ed42176, Correlation ID: e81a0bebbcac4c84a9ccf2be5bc64a4e, retry: 0 +2024-05-23 20:27:29.145 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:27:29.146 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:29.146 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:29.173 +02:00 [INF] Received HTTP response headers after 27.3247ms - 200 +2024-05-23 20:27:29.197 +02:00 [INF] End processing HTTP request after 50.8078ms - 200 +2024-05-23 20:27:29.197 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:27:29.198 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 20:27:29.198 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:27:29.198 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:27:29.224 +02:00 [INF] Received HTTP response headers after 26.2687ms - 200 +2024-05-23 20:27:29.224 +02:00 [INF] End processing HTTP request after 26.742ms - 200 +2024-05-23 20:27:29.225 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:27:29.251 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:29.251 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:29.285 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:29.314 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 17bc380d1713438a91b81f563ed42176, Correlation ID: e81a0bebbcac4c84a9ccf2be5bc64a4e, retry: 0 +2024-05-23 20:27:37.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:27:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:37.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:37.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.6989ms +2024-05-23 20:27:39.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:27:39.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:39.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:39.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 30.7007ms +2024-05-23 20:27:50.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:27:50.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:50.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:50.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.1158ms +2024-05-23 20:27:50.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:27:50.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:50.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:50.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 32.3975ms +2024-05-23 20:27:52.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:27:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:52.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:27:52.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6262ms +2024-05-23 20:27:54.871 +02:00 [INF] Received a message with ID: '2adfe6537667406f88f8ce5895cfb610', Correlation ID: '92272acc00074f1da086704560b5cfa0', timestamp: 1716488874, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:27:54.872 +02:00 [INF] Handling a message: friend_invited with ID: 2adfe6537667406f88f8ce5895cfb610, Correlation ID: 92272acc00074f1da086704560b5cfa0, retry: 0 +2024-05-23 20:27:54.876 +02:00 [INF] Received a message with ID: '91edfc9a8cfa42d38cdd5db3b4113896', Correlation ID: '097c5ebeb524417fa18d75de4c43ff5f', timestamp: 1716488874, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:27:54.880 +02:00 [INF] Handling a message: friend_request_sent with ID: 91edfc9a8cfa42d38cdd5db3b4113896, Correlation ID: 097c5ebeb524417fa18d75de4c43ff5f, retry: 0 +2024-05-23 20:27:54.912 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:27:54.912 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:54.912 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:27:54.941 +02:00 [INF] Received HTTP response headers after 28.5618ms - 200 +2024-05-23 20:27:54.941 +02:00 [INF] End processing HTTP request after 28.9828ms - 200 +2024-05-23 20:27:54.941 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:27:55.004 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:27:55.004 +02:00 [INF] Handled a message: friend_request_sent with ID: 91edfc9a8cfa42d38cdd5db3b4113896, Correlation ID: 097c5ebeb524417fa18d75de4c43ff5f, retry: 0 +2024-05-23 20:27:55.087 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:27:55.088 +02:00 [INF] Handled a message: friend_invited with ID: 2adfe6537667406f88f8ce5895cfb610, Correlation ID: 92272acc00074f1da086704560b5cfa0, retry: 0 +2024-05-23 20:28:05.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:28:05.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:05.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:05.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.0996ms +2024-05-23 20:28:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:28:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:07.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:07.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8307ms +2024-05-23 20:28:17.618 +02:00 [INF] Received a message with ID: '8f06760c208b437b8577d42d3a7e0241', Correlation ID: '588b10631ecb4347b4e1add7f5ccd886', timestamp: 1716488897, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:28:17.618 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 8f06760c208b437b8577d42d3a7e0241, Correlation ID: 588b10631ecb4347b4e1add7f5ccd886, retry: 0 +2024-05-23 20:28:17.647 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:28:17.647 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:28:17.647 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:28:17.675 +02:00 [INF] Received HTTP response headers after 28.0031ms - 200 +2024-05-23 20:28:17.675 +02:00 [INF] End processing HTTP request after 28.414ms - 200 +2024-05-23 20:28:17.675 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:28:17.676 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 20:28:17.676 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:28:17.676 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:28:17.706 +02:00 [INF] Received HTTP response headers after 29.6776ms - 200 +2024-05-23 20:28:17.706 +02:00 [INF] End processing HTTP request after 29.9582ms - 200 +2024-05-23 20:28:17.706 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:28:17.743 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:28:17.773 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:28:17.804 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 8f06760c208b437b8577d42d3a7e0241, Correlation ID: 588b10631ecb4347b4e1add7f5ccd886, retry: 0 +2024-05-23 20:28:20.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:28:20.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:20.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:20.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.9681ms +2024-05-23 20:28:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:28:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:22.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7245ms +2024-05-23 20:28:35.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:28:35.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:35.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:35.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 32.1051ms +2024-05-23 20:28:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:28:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:37.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:37.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 37.4127ms +2024-05-23 20:28:50.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:28:50.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:50.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:50.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.6711ms +2024-05-23 20:28:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:28:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:52.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:28:52.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.094ms +2024-05-23 20:29:05.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:29:05.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:05.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:05.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.4426ms +2024-05-23 20:29:07.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:29:07.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:07.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:07.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.8883ms +2024-05-23 20:29:20.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:29:20.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:20.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:20.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.4264ms +2024-05-23 20:29:22.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:29:22.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.395ms +2024-05-23 20:29:35.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:29:35.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:35.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:35.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.2084ms +2024-05-23 20:29:37.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:29:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:37.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:37.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8888ms +2024-05-23 20:29:50.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:29:50.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:50.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:50.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.8138ms +2024-05-23 20:29:52.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:29:52.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:52.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:29:52.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.557ms +2024-05-23 20:30:05.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:30:05.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:05.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:05.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.6292ms +2024-05-23 20:30:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:30:07.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:07.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8899ms +2024-05-23 20:30:20.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:30:20.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:20.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:20.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 32.0374ms +2024-05-23 20:30:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:30:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:22.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:22.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8404ms +2024-05-23 20:30:35.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:30:35.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:35.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:35.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 31.3693ms +2024-05-23 20:30:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:30:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8484ms +2024-05-23 20:30:50.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:30:50.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:50.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:50.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.609ms +2024-05-23 20:30:52.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:30:52.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:52.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:30:52.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2583ms +2024-05-23 20:31:05.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:31:05.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:05.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:05.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.5799ms +2024-05-23 20:31:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:31:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2343ms +2024-05-23 20:31:20.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:31:20.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:20.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:20.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.025ms +2024-05-23 20:31:22.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:31:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:22.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:22.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 41.5737ms +2024-05-23 20:31:35.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:31:35.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:35.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:35.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.3366ms +2024-05-23 20:31:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:31:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7393ms +2024-05-23 20:31:50.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:31:50.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:50.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:50.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 35.7858ms +2024-05-23 20:31:52.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:31:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:52.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:31:52.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.7621ms +2024-05-23 20:32:05.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:32:05.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:05.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:05.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 33.1627ms +2024-05-23 20:32:07.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:32:07.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:07.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7531ms +2024-05-23 20:32:20.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:32:20.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:20.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:20.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.3511ms +2024-05-23 20:32:22.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:32:22.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.932ms +2024-05-23 20:32:35.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:32:35.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:35.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:35.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.3356ms +2024-05-23 20:32:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:32:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:37.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:37.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.967ms +2024-05-23 20:32:50.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:32:50.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:50.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:50.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 30.4643ms +2024-05-23 20:32:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:32:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:52.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:32:52.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.4122ms +2024-05-23 20:33:05.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:33:05.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:05.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:05.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 37.9852ms +2024-05-23 20:33:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:33:07.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:07.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:07.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.3253ms +2024-05-23 20:33:20.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:33:20.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:20.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:20.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 29.0868ms +2024-05-23 20:33:22.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:33:22.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:22.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:22.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.8433ms +2024-05-23 20:33:35.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:33:35.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:35.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:35.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 28.569ms +2024-05-23 20:33:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:33:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:37.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:37.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.4638ms +2024-05-23 20:33:50.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:33:50.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:50.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:50.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 34.5724ms +2024-05-23 20:33:52.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:33:52.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:52.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:33:52.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.9042ms +2024-05-23 20:33:54.950 +02:00 [INF] Deregistering a service [id: notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f] from Consul... +2024-05-23 20:33:54.951 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f" +2024-05-23 20:33:54.951 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f +2024-05-23 20:33:54.951 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f +2024-05-23 20:33:54.953 +02:00 [INF] Received HTTP response headers after 1.5809ms - 200 +2024-05-23 20:33:54.953 +02:00 [INF] End processing HTTP request after 1.8681ms - 200 +2024-05-23 20:33:54.953 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:33:54.953 +02:00 [INF] Deregistered a service [id: notifications-service:4da94f2eddf1421f83cb66ed99f4ed8f] from Consul. +2024-05-23 20:34:00.530 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:34:00.590 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:34:00.648 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:34:00.714 +02:00 [INF] Registering a service [id: notifications-service:057223faeb1b44feb490ca36dbbd2fde] in Consul... +2024-05-23 20:34:00.732 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:34:00.735 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:34:00.736 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:34:00.743 +02:00 [INF] Received HTTP response headers after 4.4412ms - 200 +2024-05-23 20:34:00.744 +02:00 [INF] End processing HTTP request after 9.444ms - 200 +2024-05-23 20:34:00.746 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:34:00.747 +02:00 [INF] Registered a service [id: notifications-service:057223faeb1b44feb490ca36dbbd2fde] in Consul. +2024-05-23 20:34:00.753 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:34:00.761 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:34:00.762 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:34:00.763 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:34:00.766 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:34:00.767 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:34:00.770 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:34:00.772 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:34:00.774 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:34:00.775 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:34:05.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:34:05.293 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:05.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:05.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 122.1048ms +2024-05-23 20:34:07.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:34:07.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:07.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:07.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3503ms +2024-05-23 20:34:15.013 +02:00 [INF] Received a message with ID: 'b074bcb997fa4548b4570d3a69eaf1db', Correlation ID: '5ba7ddd536c44017b8bad533941873bf', timestamp: 1716489255, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:34:15.013 +02:00 [INF] Received a message with ID: '787c5c0c7fa24c44ab8fc5c4f2584c82', Correlation ID: '7a552a6386fd48558046a26798edbbec', timestamp: 1716489254, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:34:15.029 +02:00 [INF] Handling a message: friend_request_sent with ID: b074bcb997fa4548b4570d3a69eaf1db, Correlation ID: 5ba7ddd536c44017b8bad533941873bf, retry: 0 +2024-05-23 20:34:15.029 +02:00 [INF] Handling a message: friend_invited with ID: 787c5c0c7fa24c44ab8fc5c4f2584c82, Correlation ID: 7a552a6386fd48558046a26798edbbec, retry: 0 +2024-05-23 20:34:15.089 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:34:15.089 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:15.089 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:15.131 +02:00 [INF] Received HTTP response headers after 42.0714ms - 200 +2024-05-23 20:34:15.132 +02:00 [INF] End processing HTTP request after 42.794ms - 200 +2024-05-23 20:34:15.132 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:34:15.361 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:34:15.363 +02:00 [INF] Handled a message: friend_invited with ID: 787c5c0c7fa24c44ab8fc5c4f2584c82, Correlation ID: 7a552a6386fd48558046a26798edbbec, retry: 0 +2024-05-23 20:34:15.423 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-23 20:34:15.423 +02:00 [INF] Handled a message: friend_request_sent with ID: b074bcb997fa4548b4570d3a69eaf1db, Correlation ID: 5ba7ddd536c44017b8bad533941873bf, retry: 0 +2024-05-23 20:34:20.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:34:20.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:20.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:20.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 48.2455ms +2024-05-23 20:34:22.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:34:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:22.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:22.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.2879ms +2024-05-23 20:34:30.009 +02:00 [INF] Received a message with ID: '3e8ff9ae30b143119fdaa0d5a1f71f20', Correlation ID: '48675b60c2be4d088ca256cc3a1f5e05', timestamp: 1716489270, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:34:30.010 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 3e8ff9ae30b143119fdaa0d5a1f71f20, Correlation ID: 48675b60c2be4d088ca256cc3a1f5e05, retry: 0 +2024-05-23 20:34:30.041 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:34:30.042 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:30.042 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:30.079 +02:00 [INF] Received HTTP response headers after 37.0749ms - 200 +2024-05-23 20:34:30.079 +02:00 [INF] End processing HTTP request after 37.9032ms - 200 +2024-05-23 20:34:30.080 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:34:30.080 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-23 20:34:30.080 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:34:30.080 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-23 20:34:30.113 +02:00 [INF] Received HTTP response headers after 32.0691ms - 200 +2024-05-23 20:34:30.113 +02:00 [INF] End processing HTTP request after 32.5338ms - 200 +2024-05-23 20:34:30.113 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:34:30.140 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:30.140 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:30.170 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:30.212 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 3e8ff9ae30b143119fdaa0d5a1f71f20, Correlation ID: 48675b60c2be4d088ca256cc3a1f5e05, retry: 0 +2024-05-23 20:34:35.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:34:35.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:35.254 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:35.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 32.6314ms +2024-05-23 20:34:37.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:34:37.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:37.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.5065ms +2024-05-23 20:34:47.937 +02:00 [INF] Received a message with ID: '19163178e52840fb9a340ed360a5e77e', Correlation ID: '1f17ba8717e94448992eb485ead34367', timestamp: 1716489287, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:34:47.938 +02:00 [INF] Handling a message: friend_invited with ID: 19163178e52840fb9a340ed360a5e77e, Correlation ID: 1f17ba8717e94448992eb485ead34367, retry: 0 +2024-05-23 20:34:47.938 +02:00 [INF] Received a message with ID: '7b9e3b988248447ea93f1afe53668e67', Correlation ID: '9eaa19c0940b420e8b36fd8ed8f44652', timestamp: 1716489287, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:34:47.941 +02:00 [INF] Handling a message: friend_request_sent with ID: 7b9e3b988248447ea93f1afe53668e67, Correlation ID: 9eaa19c0940b420e8b36fd8ed8f44652, retry: 0 +2024-05-23 20:34:47.967 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:34:47.967 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:47.967 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:34:47.995 +02:00 [INF] Received HTTP response headers after 27.9129ms - 200 +2024-05-23 20:34:47.995 +02:00 [INF] End processing HTTP request after 28.3346ms - 200 +2024-05-23 20:34:47.996 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:34:48.059 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:34:48.059 +02:00 [INF] Handled a message: friend_request_sent with ID: 7b9e3b988248447ea93f1afe53668e67, Correlation ID: 9eaa19c0940b420e8b36fd8ed8f44652, retry: 0 +2024-05-23 20:34:48.146 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:34:48.146 +02:00 [INF] Handled a message: friend_invited with ID: 19163178e52840fb9a340ed360a5e77e, Correlation ID: 1f17ba8717e94448992eb485ead34367, retry: 0 +2024-05-23 20:34:50.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - null null +2024-05-23 20:34:50.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:50.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:50.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10 - 200 null application/json 27.6902ms +2024-05-23 20:34:52.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:34:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:52.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:52.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.8167ms +2024-05-23 20:34:58.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:34:58.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:58.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:58.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.4599ms +2024-05-23 20:34:58.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:34:58.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:58.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:34:58.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 29.251ms +2024-05-23 20:35:06.758 +02:00 [INF] Received a message with ID: '79c5ee5a2cd44d2e99217859b8e30213', Correlation ID: 'c2b7084ccbd84c38925f8ff116de476b', timestamp: 1716489306, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:35:06.759 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 79c5ee5a2cd44d2e99217859b8e30213, Correlation ID: c2b7084ccbd84c38925f8ff116de476b, retry: 0 +2024-05-23 20:35:06.787 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:35:06.787 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:35:06.787 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:35:06.815 +02:00 [INF] Received HTTP response headers after 28.4076ms - 200 +2024-05-23 20:35:06.817 +02:00 [INF] End processing HTTP request after 30.6373ms - 200 +2024-05-23 20:35:06.818 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:35:06.818 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 20:35:06.818 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:35:06.818 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:35:06.848 +02:00 [INF] Received HTTP response headers after 29.656ms - 200 +2024-05-23 20:35:06.849 +02:00 [INF] End processing HTTP request after 31.0534ms - 200 +2024-05-23 20:35:06.849 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:35:06.877 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:35:06.909 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:35:07.185 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 79c5ee5a2cd44d2e99217859b8e30213, Correlation ID: c2b7084ccbd84c38925f8ff116de476b, retry: 0 +2024-05-23 20:35:07.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:35:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:07.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6161ms +2024-05-23 20:35:13.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:35:13.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:13.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:13.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.8086ms +2024-05-23 20:35:22.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:35:22.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.9273ms +2024-05-23 20:35:28.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:35:28.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:28.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:28.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 26.2089ms +2024-05-23 20:35:37.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:35:37.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:37.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:37.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.549ms +2024-05-23 20:35:43.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:35:43.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:43.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:43.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 26.2541ms +2024-05-23 20:35:52.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:35:52.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:52.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:52.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.1266ms +2024-05-23 20:35:58.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:35:58.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:58.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:35:58.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.8495ms +2024-05-23 20:36:07.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:36:07.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:07.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:07.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8676ms +2024-05-23 20:36:13.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:36:13.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:13.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:13.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.1251ms +2024-05-23 20:36:22.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:36:22.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:22.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:22.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9248ms +2024-05-23 20:36:28.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:36:28.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:28.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:28.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.1508ms +2024-05-23 20:36:29.077 +02:00 [INF] Received a message with ID: '5663f692db7c46efa97982212eb2d70b', Correlation ID: '13ecf2fcdf1848da99e4fcd4c3d3c299', timestamp: 1716489389, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:36:29.077 +02:00 [INF] Handling a message: friend_invited with ID: 5663f692db7c46efa97982212eb2d70b, Correlation ID: 13ecf2fcdf1848da99e4fcd4c3d3c299, retry: 0 +2024-05-23 20:36:29.077 +02:00 [INF] Received a message with ID: 'f9cf8d7602e84af986def3eb5ae3068d', Correlation ID: '395d5b0ced8f41cc8377e6a7eadfe108', timestamp: 1716489389, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:36:29.078 +02:00 [INF] Handling a message: friend_request_sent with ID: f9cf8d7602e84af986def3eb5ae3068d, Correlation ID: 395d5b0ced8f41cc8377e6a7eadfe108, retry: 0 +2024-05-23 20:36:29.104 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:36:29.104 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:36:29.104 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:36:29.137 +02:00 [INF] Received HTTP response headers after 32.9181ms - 200 +2024-05-23 20:36:29.137 +02:00 [INF] End processing HTTP request after 33.4999ms - 200 +2024-05-23 20:36:29.140 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:36:29.202 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:36:29.202 +02:00 [INF] Handled a message: friend_request_sent with ID: f9cf8d7602e84af986def3eb5ae3068d, Correlation ID: 395d5b0ced8f41cc8377e6a7eadfe108, retry: 0 +2024-05-23 20:36:29.293 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 20:36:29.294 +02:00 [INF] Handled a message: friend_invited with ID: 5663f692db7c46efa97982212eb2d70b, Correlation ID: 13ecf2fcdf1848da99e4fcd4c3d3c299, retry: 0 +2024-05-23 20:36:37.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:36:37.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:37.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:37.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5868ms +2024-05-23 20:36:43.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:36:43.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:43.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:43.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.0706ms +2024-05-23 20:36:52.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:36:52.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:52.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:52.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.8128ms +2024-05-23 20:36:58.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:36:58.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:58.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:36:58.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.2743ms +2024-05-23 20:37:07.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:37:07.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:07.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:07.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.3013ms +2024-05-23 20:37:09.514 +02:00 [INF] Received a message with ID: '68cea1fcc1004e6c994340d3af42eb67', Correlation ID: '9d67560a1b914a0980be2d1bee00582f', timestamp: 1716489429, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:37:09.515 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 68cea1fcc1004e6c994340d3af42eb67, Correlation ID: 9d67560a1b914a0980be2d1bee00582f, retry: 0 +2024-05-23 20:37:09.541 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:37:09.542 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:37:09.542 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:37:09.569 +02:00 [INF] Received HTTP response headers after 27.1571ms - 200 +2024-05-23 20:37:09.569 +02:00 [INF] End processing HTTP request after 27.5776ms - 200 +2024-05-23 20:37:09.569 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:37:09.572 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 20:37:09.572 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:37:09.572 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 20:37:09.600 +02:00 [INF] Received HTTP response headers after 27.3678ms - 200 +2024-05-23 20:37:09.600 +02:00 [INF] End processing HTTP request after 27.7011ms - 200 +2024-05-23 20:37:09.600 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:37:09.627 +02:00 [INF] Creating new StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:37:09.627 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:37:09.657 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:37:09.686 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 68cea1fcc1004e6c994340d3af42eb67, Correlation ID: 9d67560a1b914a0980be2d1bee00582f, retry: 0 +2024-05-23 20:37:13.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:37:13.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:13.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:13.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 30.6957ms +2024-05-23 20:37:22.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:37:22.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:22.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:22.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.6523ms +2024-05-23 20:37:28.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:37:28.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:28.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:28.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.9458ms +2024-05-23 20:37:43.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:37:43.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:43.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:43.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.7902ms +2024-05-23 20:37:46.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:37:46.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:46.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:46.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9242ms +2024-05-23 20:37:46.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:37:46.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:46.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:46.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4726ms +2024-05-23 20:37:58.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:37:58.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:58.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:37:58.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.8629ms +2024-05-23 20:38:01.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:38:01.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:01.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:01.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9398ms +2024-05-23 20:38:13.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:38:13.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:13.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:13.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.5187ms +2024-05-23 20:38:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:38:16.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:16.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.055ms +2024-05-23 20:38:28.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:38:28.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:28.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:28.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.3134ms +2024-05-23 20:38:31.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:38:31.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:31.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:31.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.5159ms +2024-05-23 20:38:43.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:38:43.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:43.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:43.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.8376ms +2024-05-23 20:38:46.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:38:46.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:46.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:46.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1707ms +2024-05-23 20:38:58.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:38:58.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:58.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:38:58.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 32.628ms +2024-05-23 20:39:01.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:39:01.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:01.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:01.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.8053ms +2024-05-23 20:39:13.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:39:13.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:13.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:13.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.8151ms +2024-05-23 20:39:16.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:39:16.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:16.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.9243ms +2024-05-23 20:39:28.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:39:28.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:28.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:28.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 29.2067ms +2024-05-23 20:39:31.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:39:31.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:31.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:31.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.6287ms +2024-05-23 20:39:43.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:39:43.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:43.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:43.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 30.5312ms +2024-05-23 20:39:46.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:39:46.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:46.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:46.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1347ms +2024-05-23 20:39:58.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:39:58.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:58.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:39:58.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 25.9149ms +2024-05-23 20:40:01.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:40:01.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:01.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:01.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 33.8797ms +2024-05-23 20:40:13.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:40:13.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:13.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:13.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 26.7734ms +2024-05-23 20:40:16.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:40:16.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:16.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:16.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.61ms +2024-05-23 20:40:28.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:40:28.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:28.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:28.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 26.9801ms +2024-05-23 20:40:31.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:40:31.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:31.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:31.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1592ms +2024-05-23 20:40:43.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:40:43.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:43.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:43.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 27.4297ms +2024-05-23 20:40:46.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:40:46.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:46.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:40:46.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2584ms +2024-05-23 20:40:54.395 +02:00 [INF] Deregistering a service [id: notifications-service:057223faeb1b44feb490ca36dbbd2fde] from Consul... +2024-05-23 20:40:54.396 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:057223faeb1b44feb490ca36dbbd2fde" +2024-05-23 20:40:54.396 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:057223faeb1b44feb490ca36dbbd2fde +2024-05-23 20:40:54.396 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:057223faeb1b44feb490ca36dbbd2fde +2024-05-23 20:40:54.398 +02:00 [INF] Received HTTP response headers after 1.8524ms - 200 +2024-05-23 20:40:54.398 +02:00 [INF] End processing HTTP request after 2.1557ms - 200 +2024-05-23 20:40:54.399 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:40:54.399 +02:00 [INF] Deregistered a service [id: notifications-service:057223faeb1b44feb490ca36dbbd2fde] from Consul. +2024-05-23 20:41:00.088 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-23 20:41:00.143 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-23 20:41:00.194 +02:00 [INF] Notification Cleanup Service is running. +2024-05-23 20:41:00.262 +02:00 [INF] Registering a service [id: notifications-service:a5989101efc94c8b8a10deb45bcf99c1] in Consul... +2024-05-23 20:41:00.279 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-23 20:41:00.282 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:41:00.283 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-23 20:41:00.292 +02:00 [INF] Received HTTP response headers after 6.7049ms - 200 +2024-05-23 20:41:00.293 +02:00 [INF] End processing HTTP request after 10.947ms - 200 +2024-05-23 20:41:00.296 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:41:00.296 +02:00 [INF] Registered a service [id: notifications-service:a5989101efc94c8b8a10deb45bcf99c1] in Consul. +2024-05-23 20:41:00.302 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-23 20:41:00.306 +02:00 [INF] Removed 0 old notifications. +2024-05-23 20:41:00.306 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-23 20:41:00.311 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-23 20:41:00.313 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-23 20:41:00.315 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-23 20:41:00.317 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-23 20:41:00.319 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-23 20:41:00.322 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-23 20:41:00.324 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-23 20:41:01.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:41:01.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:01.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:01.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 134.3743ms +2024-05-23 20:41:04.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:41:04.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:04.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:04.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 321.7461ms +2024-05-23 20:41:13.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-23 20:41:13.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:13.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:13.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 28.8598ms +2024-05-23 20:41:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:41:16.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:16.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.1237ms +2024-05-23 20:41:28.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:41:28.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:28.212 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:28.213 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.333ms +2024-05-23 20:41:28.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:41:28.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:28.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:28.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5192ms +2024-05-23 20:41:30.009 +02:00 [INF] Received a message with ID: '7f57936000a54024a557625aef8a505a', Correlation ID: 'b2382ba0a80249c8bf9d9bd1e807243b', timestamp: 1716489689, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 20:41:30.009 +02:00 [INF] Received a message with ID: 'eb0ef1872a864c19961ab8b0124a19fb', Correlation ID: 'f0c1f69d03434396af7df8e9ebcb1fdd', timestamp: 1716489689, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 20:41:30.024 +02:00 [INF] Handling a message: friend_request_sent with ID: eb0ef1872a864c19961ab8b0124a19fb, Correlation ID: f0c1f69d03434396af7df8e9ebcb1fdd, retry: 0 +2024-05-23 20:41:30.024 +02:00 [INF] Handling a message: friend_invited with ID: 7f57936000a54024a557625aef8a505a, Correlation ID: b2382ba0a80249c8bf9d9bd1e807243b, retry: 0 +2024-05-23 20:41:30.078 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:41:30.079 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:30.079 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:30.115 +02:00 [INF] Received HTTP response headers after 35.5727ms - 200 +2024-05-23 20:41:30.115 +02:00 [INF] End processing HTTP request after 36.3428ms - 200 +2024-05-23 20:41:30.115 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:41:30.231 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:41:30.234 +02:00 [INF] Handled a message: friend_request_sent with ID: eb0ef1872a864c19961ab8b0124a19fb, Correlation ID: f0c1f69d03434396af7df8e9ebcb1fdd, retry: 0 +2024-05-23 20:41:30.331 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 20:41:30.331 +02:00 [INF] Handled a message: friend_invited with ID: 7f57936000a54024a557625aef8a505a, Correlation ID: b2382ba0a80249c8bf9d9bd1e807243b, retry: 0 +2024-05-23 20:41:31.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:41:31.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:31.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:31.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7331ms +2024-05-23 20:41:43.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:41:43.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:43.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:43.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.343ms +2024-05-23 20:41:46.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:41:46.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:46.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:46.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1131ms +2024-05-23 20:41:56.770 +02:00 [INF] Received a message with ID: '98812d019fce423daf8b5f023a7464b6', Correlation ID: '986b20de7a07450085a3fd56f5596f79', timestamp: 1716489716, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 20:41:56.773 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 98812d019fce423daf8b5f023a7464b6, Correlation ID: 986b20de7a07450085a3fd56f5596f79, retry: 0 +2024-05-23 20:41:56.812 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 20:41:56.812 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:56.813 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:56.843 +02:00 [INF] Received HTTP response headers after 30.0773ms - 200 +2024-05-23 20:41:56.844 +02:00 [INF] End processing HTTP request after 31.1108ms - 200 +2024-05-23 20:41:56.844 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:41:56.844 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 20:41:56.845 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:41:56.845 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 20:41:56.876 +02:00 [INF] Received HTTP response headers after 31.1245ms - 200 +2024-05-23 20:41:56.876 +02:00 [INF] End processing HTTP request after 31.5577ms - 200 +2024-05-23 20:41:56.876 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 20:41:56.906 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:56.954 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 20:41:56.988 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 98812d019fce423daf8b5f023a7464b6, Correlation ID: 986b20de7a07450085a3fd56f5596f79, retry: 0 +2024-05-23 20:41:58.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:41:58.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:58.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:41:58.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6192ms +2024-05-23 20:42:01.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:42:01.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:01.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:01.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.3792ms +2024-05-23 20:42:13.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:42:13.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:13.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:13.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5775ms +2024-05-23 20:42:16.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:42:16.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:16.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:16.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.7745ms +2024-05-23 20:42:28.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:42:28.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:28.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:28.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.0005ms +2024-05-23 20:42:31.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:42:31.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:31.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:31.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.906ms +2024-05-23 20:42:43.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:42:43.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:43.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:43.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.2583ms +2024-05-23 20:42:46.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:42:46.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:46.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:46.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0598ms +2024-05-23 20:42:58.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:42:58.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:58.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:42:58.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.9569ms +2024-05-23 20:43:01.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:43:01.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:01.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:01.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.1588ms +2024-05-23 20:43:13.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:43:13.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:13.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:13.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.833ms +2024-05-23 20:43:16.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:43:16.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:16.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:16.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.6405ms +2024-05-23 20:43:28.223 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:43:28.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:28.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:28.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.5286ms +2024-05-23 20:43:31.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:43:31.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:31.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:31.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.0269ms +2024-05-23 20:43:43.235 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:43:43.236 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:43.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:43.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.5419ms +2024-05-23 20:43:46.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:43:46.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:46.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:46.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9626ms +2024-05-23 20:43:58.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:43:58.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:58.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:58.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.8672ms +2024-05-23 20:43:58.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:43:58.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:58.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:43:58.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.0367ms +2024-05-23 20:44:01.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:44:01.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:01.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:01.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4258ms +2024-05-23 20:44:13.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:44:13.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:13.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:13.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.5011ms +2024-05-23 20:44:16.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:44:16.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:16.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.053ms +2024-05-23 20:44:28.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:44:28.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:28.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:28.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.8213ms +2024-05-23 20:44:31.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:44:31.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:31.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:31.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.1785ms +2024-05-23 20:44:43.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:44:43.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:43.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:43.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 41.0463ms +2024-05-23 20:44:46.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:44:46.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:46.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:46.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 31.5112ms +2024-05-23 20:44:58.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:44:58.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:58.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:44:58.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.6874ms +2024-05-23 20:45:01.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:45:01.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:01.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:01.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0273ms +2024-05-23 20:45:13.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:45:13.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:13.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:13.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.1839ms +2024-05-23 20:45:16.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:45:16.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:16.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.0642ms +2024-05-23 20:45:28.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:45:28.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:28.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:28.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.9839ms +2024-05-23 20:45:31.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:45:31.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:31.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:31.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.2935ms +2024-05-23 20:45:43.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:45:43.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:43.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:43.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.1003ms +2024-05-23 20:45:46.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:45:46.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:46.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:46.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 43.2284ms +2024-05-23 20:45:58.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:45:58.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:58.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:45:58.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 36.033ms +2024-05-23 20:46:01.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:46:01.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:01.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:01.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 32.6661ms +2024-05-23 20:46:13.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:46:13.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:13.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:13.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.122ms +2024-05-23 20:46:16.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:46:16.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:16.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.4376ms +2024-05-23 20:46:28.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:46:28.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:28.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:28.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 32.2413ms +2024-05-23 20:46:31.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:46:31.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:31.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:31.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.2935ms +2024-05-23 20:46:43.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:46:43.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:43.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:43.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.9627ms +2024-05-23 20:46:46.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:46:46.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:46.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:46.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.6534ms +2024-05-23 20:46:58.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:46:58.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:58.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:46:58.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.9836ms +2024-05-23 20:47:01.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:47:01.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:01.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:01.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.6625ms +2024-05-23 20:47:13.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:47:13.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:13.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:13.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 31.3556ms +2024-05-23 20:47:16.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:47:16.793 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:16.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:16.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 30.0467ms +2024-05-23 20:47:28.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:47:28.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:28.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:28.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 35.3707ms +2024-05-23 20:47:31.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:47:31.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:31.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:31.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8029ms +2024-05-23 20:47:43.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:47:43.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:43.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:43.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 30.2602ms +2024-05-23 20:47:46.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:47:46.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:46.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:46.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3942ms +2024-05-23 20:47:58.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:47:58.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:58.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:47:58.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 29.3407ms +2024-05-23 20:48:01.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:48:01.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:01.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:01.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 25.6722ms +2024-05-23 20:48:13.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:48:13.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:13.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:13.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.9843ms +2024-05-23 20:48:16.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:48:16.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:16.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:16.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 26.7109ms +2024-05-23 20:48:28.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:48:28.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:28.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:28.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.1573ms +2024-05-23 20:48:31.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:48:31.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:31.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:31.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.9525ms +2024-05-23 20:48:43.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:48:43.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:43.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:43.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.1628ms +2024-05-23 20:48:46.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:48:46.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:46.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:46.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.4683ms +2024-05-23 20:48:58.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:48:58.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:58.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:48:58.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 26.4456ms +2024-05-23 20:49:01.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:01.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:01.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:01.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 28.3001ms +2024-05-23 20:49:05.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:05.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:05.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:05.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.4218ms +2024-05-23 20:49:12.923 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:12.923 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:12.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:12.953 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 29.9808ms +2024-05-23 20:49:12.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:12.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:12.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:12.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.7406ms +2024-05-23 20:49:13.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:49:13.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:13.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:13.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 27.592ms +2024-05-23 20:49:15.236 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:15.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:15.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:15.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.8061ms +2024-05-23 20:49:27.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - null null +2024-05-23 20:49:27.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:27.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:27.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10 - 200 null application/json 27.5306ms +2024-05-23 20:49:28.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - null null +2024-05-23 20:49:28.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:28.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:49:28.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10 - 200 null application/json 28.47ms +2024-05-23 20:57:49.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:57:49.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:57:49.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:57:49.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 77.5951ms +2024-05-23 20:57:49.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:57:49.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:57:49.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:57:49.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5687ms +2024-05-23 20:58:00.821 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:58:00.821 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:00.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:00.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1455ms +2024-05-23 20:58:02.531 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 20:58:02.532 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 20:58:02.620 +02:00 [ERR] There was an error when processing a message with id: 'd776948c9df44d5cafe5185cd70f3986'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 20:58:02.655 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 20:58:02.667 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 20:58:02.672 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 140.3705ms +2024-05-23 20:58:03.534 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 20:58:03.535 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 20:58:03.600 +02:00 [ERR] There was an error when processing a message with id: 'b969ee404c4b46cc88ccc978842e5ea5'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 20:58:03.601 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 20:58:03.601 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 20:58:03.603 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 68.3223ms +2024-05-23 20:58:04.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:58:04.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:04.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:04.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2857ms +2024-05-23 20:58:19.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:58:19.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:19.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:19.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7038ms +2024-05-23 20:58:34.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:58:34.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:34.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:34.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0408ms +2024-05-23 20:58:49.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 20:58:49.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:49.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 20:58:49.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9458ms +2024-05-23 21:00:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:00:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:02.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:02.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 50.7623ms +2024-05-23 21:00:02.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:00:02.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:02.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:02.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7817ms +2024-05-23 21:00:04.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:00:04.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:04.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:04.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0502ms +2024-05-23 21:00:04.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:00:04.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:04.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:00:04.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.6781ms +2024-05-23 21:01:04.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:04.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:04.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:04.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7938ms +2024-05-23 21:01:04.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:04.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:04.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:04.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3156ms +2024-05-23 21:01:05.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:05.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:05.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:05.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.984ms +2024-05-23 21:01:05.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:05.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:06.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:06.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.415ms +2024-05-23 21:01:23.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:23.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:23.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:23.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7127ms +2024-05-23 21:01:23.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:23.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:23.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:23.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4117ms +2024-05-23 21:01:25.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:25.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:25.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:25.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4051ms +2024-05-23 21:01:25.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:25.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:26.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:26.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4021ms +2024-05-23 21:01:39.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:39.183 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:39.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:39.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3562ms +2024-05-23 21:01:39.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:01:39.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:40.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:01:40.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 347.9201ms +2024-05-23 21:02:19.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:02:19.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:20.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:20.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3998ms +2024-05-23 21:02:20.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:02:20.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:20.120 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:20.121 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7485ms +2024-05-23 21:02:21.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:02:21.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:21.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:21.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6782ms +2024-05-23 21:02:35.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:02:35.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:35.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:35.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0178ms +2024-05-23 21:02:50.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:02:50.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:50.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:02:50.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9308ms +2024-05-23 21:03:05.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:03:05.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:05.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:05.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.19ms +2024-05-23 21:03:20.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:03:20.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:20.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:20.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3316ms +2024-05-23 21:03:35.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:03:35.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:35.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:35.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9398ms +2024-05-23 21:03:50.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:03:50.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:50.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:03:50.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4257ms +2024-05-23 21:04:05.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:04:05.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:05.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:05.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7208ms +2024-05-23 21:04:20.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:04:20.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:20.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:20.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.911ms +2024-05-23 21:04:35.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:04:35.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:35.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:35.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4812ms +2024-05-23 21:04:50.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:04:50.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:50.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:04:50.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4448ms +2024-05-23 21:05:05.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:05:05.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:05.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:05.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1299ms +2024-05-23 21:05:20.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:05:20.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:20.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:20.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8018ms +2024-05-23 21:05:35.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:05:35.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:35.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:35.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5179ms +2024-05-23 21:05:50.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:05:50.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:50.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:05:50.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9827ms +2024-05-23 21:06:05.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:06:05.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:05.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:05.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6189ms +2024-05-23 21:06:20.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:06:20.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:20.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:20.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4034ms +2024-05-23 21:06:35.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:06:35.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:35.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:35.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.175ms +2024-05-23 21:06:50.075 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:06:50.075 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:50.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:06:50.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.369ms +2024-05-23 21:07:05.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:05.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:05.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:05.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.751ms +2024-05-23 21:07:20.074 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:20.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:20.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:20.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6531ms +2024-05-23 21:07:35.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:35.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:35.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:35.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2795ms +2024-05-23 21:07:45.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:45.233 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:45.260 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:45.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2228ms +2024-05-23 21:07:45.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:45.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:45.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:45.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5923ms +2024-05-23 21:07:51.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:07:51.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:51.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:07:51.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7781ms +2024-05-23 21:08:10.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:10.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:10.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:10.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 344.4053ms +2024-05-23 21:08:10.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:10.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:10.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:10.721 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3514ms +2024-05-23 21:08:12.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:12.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1412ms +2024-05-23 21:08:12.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:12.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0566ms +2024-05-23 21:08:12.550 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:12.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:12.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3981ms +2024-05-23 21:08:25.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:25.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:25.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:25.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0104ms +2024-05-23 21:08:27.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:27.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:27.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:27.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4708ms +2024-05-23 21:08:40.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:40.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:40.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:40.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3848ms +2024-05-23 21:08:42.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:42.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:42.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:42.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4242ms +2024-05-23 21:08:55.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:55.693 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:55.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:55.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4767ms +2024-05-23 21:08:57.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:08:57.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:57.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:08:57.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8443ms +2024-05-23 21:09:10.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:10.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:10.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:10.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1311ms +2024-05-23 21:09:12.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:12.548 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:12.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:12.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9124ms +2024-05-23 21:09:25.688 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:25.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:25.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:25.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4106ms +2024-05-23 21:09:27.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:27.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:27.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:27.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1183ms +2024-05-23 21:09:40.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:40.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:40.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:40.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5938ms +2024-05-23 21:09:42.547 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:42.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:42.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:42.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6221ms +2024-05-23 21:09:55.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:55.689 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:55.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:55.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7424ms +2024-05-23 21:09:57.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:09:57.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:57.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:09:57.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2041ms +2024-05-23 21:10:10.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:10.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:10.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:10.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5794ms +2024-05-23 21:10:12.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:12.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:12.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:12.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6776ms +2024-05-23 21:10:38.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:38.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:38.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:38.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4899ms +2024-05-23 21:10:39.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:39.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:39.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:39.443 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.263ms +2024-05-23 21:10:41.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:41.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:41.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:41.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4335ms +2024-05-23 21:10:53.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:10:53.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:53.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:10:53.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3739ms +2024-05-23 21:11:12.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:12.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:12.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:12.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6392ms +2024-05-23 21:11:13.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:13.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:13.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:13.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9052ms +2024-05-23 21:11:14.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:14.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:14.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:14.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7157ms +2024-05-23 21:11:27.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:27.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:27.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:27.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9425ms +2024-05-23 21:11:42.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:42.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:42.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:42.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1591ms +2024-05-23 21:11:57.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:11:57.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:57.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:11:57.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.374ms +2024-05-23 21:12:12.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:12.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:12.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:12.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3474ms +2024-05-23 21:12:27.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:27.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:27.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:27.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9208ms +2024-05-23 21:12:30.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:30.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:30.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:30.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2615ms +2024-05-23 21:12:30.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:30.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:30.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:30.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0814ms +2024-05-23 21:12:31.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:31.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8974ms +2024-05-23 21:12:31.820 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:31.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1222ms +2024-05-23 21:12:31.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:31.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:31.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.76ms +2024-05-23 21:12:34.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:34.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:34.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:34.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5517ms +2024-05-23 21:12:34.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:34.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:34.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:34.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5305ms +2024-05-23 21:12:36.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:36.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1056ms +2024-05-23 21:12:36.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:36.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3562ms +2024-05-23 21:12:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:36.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.742ms +2024-05-23 21:12:42.047 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:12:42.047 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:12:42.101 +02:00 [ERR] There was an error when processing a message with id: '6e9dd15697db4aebb536931cbdc62b86'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:12:42.103 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:12:42.103 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:12:42.105 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 58.5315ms +2024-05-23 21:12:42.695 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:12:42.697 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:12:42.754 +02:00 [ERR] There was an error when processing a message with id: '2275a365836b43eb95f84c5bb3e73042'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:12:42.754 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:12:42.755 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:12:42.756 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 60.6778ms +2024-05-23 21:12:42.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:42.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:42.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:42.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4726ms +2024-05-23 21:12:45.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:45.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:45.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:45.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.46ms +2024-05-23 21:12:46.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:46.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:46.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:46.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6136ms +2024-05-23 21:12:49.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:49.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:49.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:49.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3432ms +2024-05-23 21:12:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:51.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:51.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4365ms +2024-05-23 21:12:57.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:12:57.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:57.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:12:57.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3488ms +2024-05-23 21:13:00.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:00.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:00.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7727ms +2024-05-23 21:13:01.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:01.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:01.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:01.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5637ms +2024-05-23 21:13:04.837 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:04.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:04.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:04.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1806ms +2024-05-23 21:13:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:06.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:06.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:06.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0823ms +2024-05-23 21:13:12.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:12.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:12.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:12.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9683ms +2024-05-23 21:13:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:15.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:15.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:15.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2195ms +2024-05-23 21:13:16.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:16.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:16.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:16.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7339ms +2024-05-23 21:13:19.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:19.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:19.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:19.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5874ms +2024-05-23 21:13:21.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:21.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:21.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:21.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3044ms +2024-05-23 21:13:27.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:27.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:27.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:27.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5009ms +2024-05-23 21:13:30.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:30.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:30.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:30.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4299ms +2024-05-23 21:13:31.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:31.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:31.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:31.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3398ms +2024-05-23 21:13:34.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:34.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:34.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:34.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.147ms +2024-05-23 21:13:36.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:36.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:36.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:36.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2048ms +2024-05-23 21:13:42.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:42.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:42.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:42.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8939ms +2024-05-23 21:13:45.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:45.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:45.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:45.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6575ms +2024-05-23 21:13:46.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:46.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:46.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:46.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3662ms +2024-05-23 21:13:49.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:49.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:49.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:49.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1955ms +2024-05-23 21:13:51.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:51.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:51.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:51.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4793ms +2024-05-23 21:13:57.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:13:57.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:57.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:13:57.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.6786ms +2024-05-23 21:14:00.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:00.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:00.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:00.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6756ms +2024-05-23 21:14:01.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:01.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:01.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:01.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9395ms +2024-05-23 21:14:04.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:04.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:04.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:04.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4601ms +2024-05-23 21:14:06.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:06.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:06.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:06.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6932ms +2024-05-23 21:14:08.068 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:14:08.069 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:08.135 +02:00 [ERR] There was an error when processing a message with id: '92086044d7be41dbbf458fc9446baa1e'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:14:08.137 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:08.139 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:14:08.142 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 73.2587ms +2024-05-23 21:14:08.984 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:14:08.985 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:09.048 +02:00 [ERR] There was an error when processing a message with id: 'd2f79d617fba4744901354a2141a7bec'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:14:09.049 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:09.051 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:14:09.054 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 70.7334ms +2024-05-23 21:14:12.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:12.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:12.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:12.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8874ms +2024-05-23 21:14:15.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:15.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:15.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:15.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9782ms +2024-05-23 21:14:16.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:16.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:16.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:16.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5248ms +2024-05-23 21:14:19.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:19.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:19.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:19.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2664ms +2024-05-23 21:14:21.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:21.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:21.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:21.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.4882ms +2024-05-23 21:14:27.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:27.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:27.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:27.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1902ms +2024-05-23 21:14:30.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:30.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:30.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:30.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7513ms +2024-05-23 21:14:31.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:31.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:31.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:31.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1162ms +2024-05-23 21:14:34.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:34.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:34.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:34.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4994ms +2024-05-23 21:14:36.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:36.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:36.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:36.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6703ms +2024-05-23 21:14:42.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:42.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:42.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:42.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8942ms +2024-05-23 21:14:45.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:45.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:45.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:45.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.297ms +2024-05-23 21:14:46.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:46.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:46.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:46.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4585ms +2024-05-23 21:14:49.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:49.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:49.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:49.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6421ms +2024-05-23 21:14:51.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:51.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:51.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.243ms +2024-05-23 21:14:57.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:14:57.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:57.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:14:57.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9174ms +2024-05-23 21:14:58.346 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:14:58.348 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:58.417 +02:00 [ERR] There was an error when processing a message with id: 'ca923e5489a14142b59d9f352bf4a03d'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:14:58.418 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:58.423 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:14:58.436 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 90.3978ms +2024-05-23 21:14:58.878 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:14:58.879 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:58.935 +02:00 [ERR] There was an error when processing a message with id: '0e83a9331c3643d3bb95652ef139c794'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:14:58.936 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:58.937 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:14:58.938 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 59.3812ms +2024-05-23 21:14:59.453 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:14:59.453 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:59.511 +02:00 [ERR] There was an error when processing a message with id: '722dbaa0e96c47429b8fe29fc25aa7fa'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:14:59.512 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:14:59.513 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:14:59.514 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 61.0641ms +2024-05-23 21:14:59.980 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:14:59.982 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.040 +02:00 [ERR] There was an error when processing a message with id: '034836edc6a34851bd518c3d85d09441'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:15:00.041 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.043 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:15:00.046 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 65.6041ms +2024-05-23 21:15:00.403 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:15:00.404 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.463 +02:00 [ERR] There was an error when processing a message with id: '86a32d33ec094c3ca45dc3f5b7cbdc1b'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:15:00.465 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.467 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:15:00.471 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 67.6972ms +2024-05-23 21:15:00.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:00.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:00.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:00.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2646ms +2024-05-23 21:15:00.925 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:15:00.925 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.979 +02:00 [ERR] There was an error when processing a message with id: '18c06a320d0e46e7b909404b8a4d456b'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:15:00.980 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:15:00.980 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:15:00.981 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 56.4775ms +2024-05-23 21:15:01.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:01.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:01.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:01.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.642ms +2024-05-23 21:15:04.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:04.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:04.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:04.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7333ms +2024-05-23 21:15:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:06.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:06.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:06.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7221ms +2024-05-23 21:15:12.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:12.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:12.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:12.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3521ms +2024-05-23 21:15:15.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:15.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:15.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:15.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9038ms +2024-05-23 21:15:16.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:16.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:16.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:16.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.7673ms +2024-05-23 21:15:19.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:19.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:19.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:19.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2276ms +2024-05-23 21:15:21.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:21.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:21.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:21.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1994ms +2024-05-23 21:15:27.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:27.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:27.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:27.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.486ms +2024-05-23 21:15:30.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:30.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:30.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:30.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3981ms +2024-05-23 21:15:31.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:31.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:31.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:31.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5985ms +2024-05-23 21:15:34.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:34.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:34.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:34.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8463ms +2024-05-23 21:15:36.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:36.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:36.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:36.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1138ms +2024-05-23 21:15:42.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:42.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:42.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:42.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4252ms +2024-05-23 21:15:45.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:45.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5154ms +2024-05-23 21:15:46.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:46.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:46.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:46.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9587ms +2024-05-23 21:15:49.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:49.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:49.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:49.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0831ms +2024-05-23 21:15:51.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:51.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:51.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 264.8603ms +2024-05-23 21:15:57.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:15:57.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:57.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:15:57.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.593ms +2024-05-23 21:16:00.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:00.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:00.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6682ms +2024-05-23 21:16:01.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:01.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:01.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:01.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.865ms +2024-05-23 21:16:04.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:04.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:04.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:04.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6308ms +2024-05-23 21:16:06.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:06.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:06.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:06.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2558ms +2024-05-23 21:16:12.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:12.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:12.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:12.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.13ms +2024-05-23 21:16:15.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:15.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:15.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1514ms +2024-05-23 21:16:16.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:16.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:16.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:16.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4597ms +2024-05-23 21:16:19.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:19.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:19.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:19.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1971ms +2024-05-23 21:16:21.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:21.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:21.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:21.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6875ms +2024-05-23 21:16:27.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:27.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:27.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:27.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6209ms +2024-05-23 21:16:30.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:30.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:30.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:30.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1679ms +2024-05-23 21:16:31.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:31.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:31.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:31.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9011ms +2024-05-23 21:16:34.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:34.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:34.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:34.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.126ms +2024-05-23 21:16:36.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:36.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:36.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:36.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2735ms +2024-05-23 21:16:42.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:42.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:42.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:42.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.027ms +2024-05-23 21:16:45.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:45.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:45.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3378ms +2024-05-23 21:16:46.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:46.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:46.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:46.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1894ms +2024-05-23 21:16:49.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:49.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:49.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:49.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5913ms +2024-05-23 21:16:51.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:51.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:51.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:51.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5925ms +2024-05-23 21:16:56.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:56.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:56.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:56.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5564ms +2024-05-23 21:16:56.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:56.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8023ms +2024-05-23 21:16:57.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:57.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:57.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:57.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9954ms +2024-05-23 21:16:58.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:58.501 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5421ms +2024-05-23 21:16:58.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:58.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7843ms +2024-05-23 21:16:58.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:16:58.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:16:58.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9841ms +2024-05-23 21:17:00.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:00.487 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:00.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:00.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3837ms +2024-05-23 21:17:01.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:01.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:01.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:01.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1478ms +2024-05-23 21:17:04.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:04.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:04.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:04.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4453ms +2024-05-23 21:17:06.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:06.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:06.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:06.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9203ms +2024-05-23 21:17:11.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:11.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:11.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5823ms +2024-05-23 21:17:12.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:12.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:12.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:12.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0776ms +2024-05-23 21:17:13.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:13.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:13.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:13.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7786ms +2024-05-23 21:17:14.908 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:17:14.909 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:14.964 +02:00 [ERR] There was an error when processing a message with id: '8d6a6ca16f46494d9d674628e91d6073'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:14.965 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:14.967 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:14.970 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 61.5553ms +2024-05-23 21:17:15.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:15.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:15.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:15.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2053ms +2024-05-23 21:17:15.519 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:15.519 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:15.575 +02:00 [ERR] There was an error when processing a message with id: '57152583af1d4d799ee25c418563db4f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:15.576 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:15.577 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:15.579 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 60.3813ms +2024-05-23 21:17:16.019 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:17:16.020 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:16.089 +02:00 [ERR] There was an error when processing a message with id: '42d638814290437a869e04da544298d3'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:16.089 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:16.090 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:16.090 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 71.1341ms +2024-05-23 21:17:16.426 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:16.426 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:16.486 +02:00 [ERR] There was an error when processing a message with id: '7954c6c36ec2482486a3df30487a2e58'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:16.486 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:16.487 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:16.488 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 61.5717ms +2024-05-23 21:17:16.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:16.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:16.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:16.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7909ms +2024-05-23 21:17:17.126 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:17:17.126 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:17.185 +02:00 [ERR] There was an error when processing a message with id: '84f148ce23c349d79935c1174bc4061f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:17.187 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:17.189 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:17.192 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 65.8588ms +2024-05-23 21:17:17.797 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:17.798 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:17.855 +02:00 [ERR] There was an error when processing a message with id: '39db201c21b24218b6267496e095e08f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:17.857 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:17.859 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:17.875 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 77.3262ms +2024-05-23 21:17:19.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:19.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:19.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:19.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7095ms +2024-05-23 21:17:21.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:21.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:21.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:21.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.813ms +2024-05-23 21:17:37.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:37.616 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:37.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:37.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1129ms +2024-05-23 21:17:37.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:37.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:37.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:37.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3206ms +2024-05-23 21:17:39.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:39.229 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:39.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:39.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2754ms +2024-05-23 21:17:41.456 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:41.456 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:41.514 +02:00 [ERR] There was an error when processing a message with id: 'b6f3de141d544044a8a28f96d481a4e7'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:41.516 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:41.518 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:41.522 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 65.9702ms +2024-05-23 21:17:42.087 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:42.087 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:42.143 +02:00 [ERR] There was an error when processing a message with id: '38aebbe9a21642f6bfe9b910fcc29f29'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:42.143 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:42.144 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:42.145 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 58.2458ms +2024-05-23 21:17:52.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:17:52.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:52.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:17:52.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9284ms +2024-05-23 21:17:53.532 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:53.533 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:53.595 +02:00 [ERR] There was an error when processing a message with id: 'ffdfc650016f4990a77a1c652fa75c96'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:53.597 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:53.598 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:53.601 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 68.7721ms +2024-05-23 21:17:54.109 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-23 21:17:54.109 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:54.162 +02:00 [ERR] There was an error when processing a message with id: 'b3ddf4cb99624e2bb4d9e21ec71eb979'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:54.162 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:54.163 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:54.163 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 54.2733ms +2024-05-23 21:17:54.762 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:17:54.763 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:54.818 +02:00 [ERR] There was an error when processing a message with id: 'c029a4bc69ef40b1bf7094ffb800ccc2'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:54.818 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:54.819 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:54.820 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 57.5539ms +2024-05-23 21:17:55.888 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-23 21:17:55.889 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:55.946 +02:00 [ERR] There was an error when processing a message with id: 'b79f5a4eb1aa4c99b7a0680dcf3e52b3'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-23 21:17:55.947 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-23 21:17:55.948 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-23 21:17:55.948 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 60.6715ms +2024-05-23 21:18:07.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:18:07.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:07.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:07.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8848ms +2024-05-23 21:18:22.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:18:22.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:22.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:22.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4406ms +2024-05-23 21:18:37.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:18:37.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:37.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:37.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6589ms +2024-05-23 21:18:52.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:18:52.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:52.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:18:52.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8836ms +2024-05-23 21:19:07.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:19:07.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:07.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:07.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7441ms +2024-05-23 21:19:22.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:19:22.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:22.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:22.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9773ms +2024-05-23 21:19:37.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:19:37.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:37.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:37.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4387ms +2024-05-23 21:19:52.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:19:52.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:52.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:19:52.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.634ms +2024-05-23 21:20:07.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:20:07.705 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:20:07.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:20:07.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9145ms +2024-05-23 21:20:22.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:20:22.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:20:22.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:20:22.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3868ms +2024-05-23 21:21:29.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:21:29.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:29.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:29.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6822ms +2024-05-23 21:21:30.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:21:30.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:30.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:30.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0239ms +2024-05-23 21:21:44.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:21:44.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:44.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:44.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6621ms +2024-05-23 21:21:59.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:21:59.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:59.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:21:59.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.058ms +2024-05-23 21:22:14.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:22:14.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:14.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:14.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2153ms +2024-05-23 21:22:29.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:22:29.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:29.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:29.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8033ms +2024-05-23 21:22:44.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:22:44.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:44.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:44.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9766ms +2024-05-23 21:22:59.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:22:59.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:59.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:22:59.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3914ms +2024-05-23 21:23:14.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:23:14.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:14.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:14.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0738ms +2024-05-23 21:23:29.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:23:29.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:29.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:29.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9872ms +2024-05-23 21:23:44.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:23:44.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:44.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:44.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9456ms +2024-05-23 21:23:59.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:23:59.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:59.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:23:59.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1852ms +2024-05-23 21:24:14.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:24:14.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:14.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:14.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7044ms +2024-05-23 21:24:29.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:24:29.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:29.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:29.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4756ms +2024-05-23 21:24:44.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:24:44.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:44.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:44.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.625ms +2024-05-23 21:24:59.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:24:59.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:59.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:24:59.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7713ms +2024-05-23 21:25:14.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:25:14.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:14.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:14.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4178ms +2024-05-23 21:25:29.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:25:29.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:29.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:29.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.772ms +2024-05-23 21:25:44.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:25:44.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:44.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:44.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7056ms +2024-05-23 21:25:59.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:25:59.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:59.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:25:59.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8075ms +2024-05-23 21:26:14.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:26:14.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:14.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:14.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4151ms +2024-05-23 21:26:29.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:26:29.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:29.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:29.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7348ms +2024-05-23 21:26:44.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:26:44.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:44.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:44.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0729ms +2024-05-23 21:26:59.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:26:59.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:59.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:26:59.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7177ms +2024-05-23 21:27:14.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:27:14.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:14.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:14.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.541ms +2024-05-23 21:27:29.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:27:29.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:29.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:29.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3089ms +2024-05-23 21:27:44.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:27:44.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:44.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:44.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4414ms +2024-05-23 21:27:59.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:27:59.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:59.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:27:59.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8017ms +2024-05-23 21:28:14.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:28:14.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:14.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:14.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.36ms +2024-05-23 21:28:29.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:28:29.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:29.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:29.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2902ms +2024-05-23 21:28:44.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:28:44.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:44.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:44.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0105ms +2024-05-23 21:28:59.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:28:59.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:59.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:28:59.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2739ms +2024-05-23 21:29:14.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:29:14.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:14.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:14.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6764ms +2024-05-23 21:29:29.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:29:29.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:29.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:29.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2366ms +2024-05-23 21:29:44.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:29:44.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:44.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:44.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9855ms +2024-05-23 21:29:59.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:29:59.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:59.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:29:59.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4312ms +2024-05-23 21:30:14.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:30:14.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:14.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:14.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5331ms +2024-05-23 21:30:29.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:30:29.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:29.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:29.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1744ms +2024-05-23 21:30:44.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:30:44.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:44.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:44.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4136ms +2024-05-23 21:30:59.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:30:59.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:59.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:30:59.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9378ms +2024-05-23 21:31:14.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:31:14.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:14.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:14.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3598ms +2024-05-23 21:31:29.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:31:29.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:29.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:29.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0402ms +2024-05-23 21:31:44.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:31:44.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:44.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:44.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6116ms +2024-05-23 21:31:59.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:31:59.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:59.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:31:59.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7427ms +2024-05-23 21:32:22.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:32:22.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:22.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:22.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.826ms +2024-05-23 21:32:22.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:32:22.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:22.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:22.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2356ms +2024-05-23 21:32:37.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:32:37.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:37.990 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:37.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9042ms +2024-05-23 21:32:52.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:32:52.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:52.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:32:52.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.053ms +2024-05-23 21:33:07.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:33:07.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:07.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:07.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0295ms +2024-05-23 21:33:22.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:33:22.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:22.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:22.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.387ms +2024-05-23 21:33:37.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:33:37.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:37.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:37.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9698ms +2024-05-23 21:33:52.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:33:52.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:52.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:33:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5068ms +2024-05-23 21:34:07.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:34:07.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:07.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:07.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2532ms +2024-05-23 21:34:22.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:34:22.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:22.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:22.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3063ms +2024-05-23 21:34:37.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:34:37.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:37.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:37.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.6675ms +2024-05-23 21:34:52.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:34:52.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:52.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:34:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4108ms +2024-05-23 21:35:07.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:35:07.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:07.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:07.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8911ms +2024-05-23 21:35:22.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:35:22.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:22.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:22.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3515ms +2024-05-23 21:35:37.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:35:37.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:37.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:37.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8686ms +2024-05-23 21:35:52.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:35:52.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:52.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:35:52.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8587ms +2024-05-23 21:36:07.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:36:07.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:07.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:07.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.164ms +2024-05-23 21:36:22.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:36:22.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:22.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:22.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7993ms +2024-05-23 21:36:37.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:36:37.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:37.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:37.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0086ms +2024-05-23 21:36:52.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:36:52.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:52.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:36:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0824ms +2024-05-23 21:37:07.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:37:07.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:07.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:07.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2927ms +2024-05-23 21:37:22.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:37:22.950 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:22.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:22.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6798ms +2024-05-23 21:37:37.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:37:37.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:37.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:37:37.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6192ms +2024-05-23 21:40:06.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:40:06.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:06.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:06.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5378ms +2024-05-23 21:40:07.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:40:07.003 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:07.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:07.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4259ms +2024-05-23 21:40:22.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:40:22.170 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:22.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:22.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4768ms +2024-05-23 21:40:37.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:40:37.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:37.039 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:37.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2362ms +2024-05-23 21:40:52.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:40:52.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:52.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:40:52.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3501ms +2024-05-23 21:41:07.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:41:07.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:07.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:07.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.832ms +2024-05-23 21:41:22.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:41:22.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:22.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:22.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2483ms +2024-05-23 21:41:37.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:41:37.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:37.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:37.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3213ms +2024-05-23 21:41:52.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:41:52.006 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:52.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:41:52.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7503ms +2024-05-23 21:42:07.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:42:07.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:07.040 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:07.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9448ms +2024-05-23 21:42:22.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:42:22.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:22.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:22.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.4038ms +2024-05-23 21:42:37.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:42:37.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:37.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:37.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8946ms +2024-05-23 21:42:52.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:42:52.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:52.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:42:52.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1572ms +2024-05-23 21:43:07.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:43:07.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:07.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:07.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8797ms +2024-05-23 21:43:22.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:43:22.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:22.034 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:22.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1165ms +2024-05-23 21:43:37.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:43:37.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:37.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:37.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4358ms +2024-05-23 21:43:52.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:43:52.001 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:52.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:43:52.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8617ms +2024-05-23 21:44:07.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:44:07.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:07.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:07.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2627ms +2024-05-23 21:44:22.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:44:22.004 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:22.034 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:22.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8272ms +2024-05-23 21:44:37.000 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:44:37.000 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:37.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:37.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4579ms +2024-05-23 21:44:52.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:44:52.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:52.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:44:52.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.994ms +2024-05-23 21:45:07.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:07.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:07.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:07.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.004ms +2024-05-23 21:45:22.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:22.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:22.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:22.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2114ms +2024-05-23 21:45:37.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:37.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:37.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:37.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6424ms +2024-05-23 21:45:52.001 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:52.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:52.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:52.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9218ms +2024-05-23 21:45:57.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:57.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:57.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:57.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1638ms +2024-05-23 21:45:58.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:58.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:58.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:58.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1081ms +2024-05-23 21:45:58.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:45:58.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:58.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:45:58.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0687ms +2024-05-23 21:46:02.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:02.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:03.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:03.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7393ms +2024-05-23 21:46:03.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:03.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:03.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:03.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.422ms +2024-05-23 21:46:05.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:05.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:05.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:05.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2169ms +2024-05-23 21:46:05.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:05.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:05.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:05.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4164ms +2024-05-23 21:46:18.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:18.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:18.032 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:18.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6202ms +2024-05-23 21:46:33.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:33.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:33.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:33.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3579ms +2024-05-23 21:46:33.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:33.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:33.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:33.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5536ms +2024-05-23 21:46:48.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:46:48.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:48.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:46:48.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5508ms +2024-05-23 21:47:03.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:47:03.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:03.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:03.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2707ms +2024-05-23 21:47:18.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:47:18.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:18.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:18.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1261ms +2024-05-23 21:47:33.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:47:33.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:33.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:33.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7499ms +2024-05-23 21:47:39.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:47:39.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:39.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:39.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.269ms +2024-05-23 21:47:48.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:47:48.930 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:48.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:47:48.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1304ms +2024-05-23 21:48:03.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:03.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:03.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:03.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.603ms +2024-05-23 21:48:18.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:18.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:18.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:18.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4777ms +2024-05-23 21:48:31.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:31.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:32.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:32.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5787ms +2024-05-23 21:48:32.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:32.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:32.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:32.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7917ms +2024-05-23 21:48:34.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:34.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:34.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:34.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.081ms +2024-05-23 21:48:47.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:48:47.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:47.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:48:47.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6467ms +2024-05-23 21:49:15.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:15.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:15.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:15.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8744ms +2024-05-23 21:49:15.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:15.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:15.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:15.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1475ms +2024-05-23 21:49:30.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:30.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:30.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:30.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5341ms +2024-05-23 21:49:45.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:45.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:45.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:45.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1868ms +2024-05-23 21:49:47.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:47.356 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:47.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:47.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9456ms +2024-05-23 21:49:47.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:49:47.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:47.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:49:47.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1793ms +2024-05-23 21:49:51.655 +02:00 [INF] Received a message with ID: 'a58103012a5b44b2a8ac7b9f9586a31f', Correlation ID: '086d993608614c648409d36a2f86db92', timestamp: 1716493791, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 21:49:51.656 +02:00 [INF] Received a message with ID: '6ae5c2c7b02049bc891861bbc60d9cc3', Correlation ID: 'db1ddf3e164f4f9e933751e3159502bd', timestamp: 1716493791, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 21:49:51.657 +02:00 [INF] Handling a message: friend_request_sent with ID: 6ae5c2c7b02049bc891861bbc60d9cc3, Correlation ID: db1ddf3e164f4f9e933751e3159502bd, retry: 0 +2024-05-23 21:49:51.657 +02:00 [INF] Handling a message: friend_invited with ID: a58103012a5b44b2a8ac7b9f9586a31f, Correlation ID: 086d993608614c648409d36a2f86db92, retry: 0 +2024-05-23 21:49:51.690 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 21:49:51.690 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:49:51.691 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:49:51.723 +02:00 [INF] Received HTTP response headers after 31.4511ms - 200 +2024-05-23 21:49:51.723 +02:00 [INF] End processing HTTP request after 32.7162ms - 200 +2024-05-23 21:49:51.723 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:49:51.784 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 21:49:51.784 +02:00 [INF] Handled a message: friend_request_sent with ID: 6ae5c2c7b02049bc891861bbc60d9cc3, Correlation ID: db1ddf3e164f4f9e933751e3159502bd, retry: 0 +2024-05-23 21:49:51.876 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 21:49:51.876 +02:00 [INF] Handled a message: friend_invited with ID: a58103012a5b44b2a8ac7b9f9586a31f, Correlation ID: 086d993608614c648409d36a2f86db92, retry: 0 +2024-05-23 21:50:00.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:00.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:00.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:00.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3968ms +2024-05-23 21:50:02.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:02.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:02.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:02.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2725ms +2024-05-23 21:50:10.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:10.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:10.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:10.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.088ms +2024-05-23 21:50:10.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:10.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:10.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:10.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1155ms +2024-05-23 21:50:13.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:13.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1559ms +2024-05-23 21:50:13.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:13.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.390 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7654ms +2024-05-23 21:50:13.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:13.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:13.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5083ms +2024-05-23 21:50:15.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:15.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:15.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:15.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6469ms +2024-05-23 21:50:17.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:17.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:17.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:17.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.394ms +2024-05-23 21:50:23.947 +02:00 [INF] Received a message with ID: '46d4dee21efc4ce7bd7382505daaaf86', Correlation ID: 'f6265d52287f42f1933167aba096c5f2', timestamp: 1716493823, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 21:50:23.948 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 46d4dee21efc4ce7bd7382505daaaf86, Correlation ID: f6265d52287f42f1933167aba096c5f2, retry: 0 +2024-05-23 21:50:23.976 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 21:50:23.976 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:50:23.976 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:50:24.004 +02:00 [INF] Received HTTP response headers after 27.4027ms - 200 +2024-05-23 21:50:24.004 +02:00 [INF] End processing HTTP request after 28.1742ms - 200 +2024-05-23 21:50:24.004 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:50:24.004 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 21:50:24.005 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 21:50:24.005 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 21:50:24.035 +02:00 [INF] Received HTTP response headers after 30.4723ms - 200 +2024-05-23 21:50:24.036 +02:00 [INF] End processing HTTP request after 31.0599ms - 200 +2024-05-23 21:50:24.036 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:50:24.062 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:50:24.100 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:50:24.131 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 46d4dee21efc4ce7bd7382505daaaf86, Correlation ID: f6265d52287f42f1933167aba096c5f2, retry: 0 +2024-05-23 21:50:25.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:25.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:25.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:25.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7932ms +2024-05-23 21:50:28.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:28.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:28.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:28.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1016ms +2024-05-23 21:50:30.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:30.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:30.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:30.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8391ms +2024-05-23 21:50:32.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:32.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:32.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:32.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6711ms +2024-05-23 21:50:40.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:40.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:40.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:40.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9441ms +2024-05-23 21:50:43.396 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:43.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:43.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:43.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9734ms +2024-05-23 21:50:45.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:45.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:45.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:45.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4258ms +2024-05-23 21:50:47.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:47.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:47.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:47.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4843ms +2024-05-23 21:50:55.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:55.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:55.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:55.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.747ms +2024-05-23 21:50:58.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:50:58.400 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:58.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:50:58.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8032ms +2024-05-23 21:51:00.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:00.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:00.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:00.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6751ms +2024-05-23 21:51:02.392 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:02.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:02.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:02.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6916ms +2024-05-23 21:51:10.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:10.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:10.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:10.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4591ms +2024-05-23 21:51:13.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:13.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:13.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:13.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3083ms +2024-05-23 21:51:15.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:15.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:15.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:15.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8895ms +2024-05-23 21:51:17.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:17.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:17.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:17.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7874ms +2024-05-23 21:51:25.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:25.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:25.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:25.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0589ms +2024-05-23 21:51:28.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:28.398 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:28.426 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:28.426 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4237ms +2024-05-23 21:51:30.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:30.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:30.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:30.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0006ms +2024-05-23 21:51:32.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:32.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:32.422 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:32.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.676ms +2024-05-23 21:51:40.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:40.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:40.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:40.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8534ms +2024-05-23 21:51:43.399 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:43.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:43.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:43.429 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4046ms +2024-05-23 21:51:45.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:45.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:45.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:45.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.83ms +2024-05-23 21:51:47.393 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:47.394 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:47.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:47.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4316ms +2024-05-23 21:51:55.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:55.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:55.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:55.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0405ms +2024-05-23 21:51:58.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:51:58.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:58.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:51:58.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5289ms +2024-05-23 21:52:00.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:00.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:00.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:00.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7381ms +2024-05-23 21:52:02.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:02.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:02.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:02.427 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0532ms +2024-05-23 21:52:10.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:10.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:10.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:10.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7291ms +2024-05-23 21:52:10.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:10.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:10.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:10.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5312ms +2024-05-23 21:52:15.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:15.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:15.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:15.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9275ms +2024-05-23 21:52:15.435 +02:00 [INF] Received a message with ID: '2934216c0bce48e2abd7e35d69e6402c', Correlation ID: 'b69091202f894a2d9cf65bdf2cda05ec', timestamp: 1716493935, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 21:52:15.437 +02:00 [INF] Handling a message: friend_invited with ID: 2934216c0bce48e2abd7e35d69e6402c, Correlation ID: b69091202f894a2d9cf65bdf2cda05ec, retry: 0 +2024-05-23 21:52:15.437 +02:00 [INF] Received a message with ID: '1cb565fe0951497da66b2d850f64bd4c', Correlation ID: 'eed5d491aa744034bf285e533d91bb8d', timestamp: 1716493935, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 21:52:15.438 +02:00 [INF] Handling a message: friend_request_sent with ID: 1cb565fe0951497da66b2d850f64bd4c, Correlation ID: eed5d491aa744034bf285e533d91bb8d, retry: 0 +2024-05-23 21:52:15.468 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 21:52:15.468 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:15.469 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:15.499 +02:00 [INF] Received HTTP response headers after 30.0547ms - 200 +2024-05-23 21:52:15.499 +02:00 [INF] End processing HTTP request after 30.8328ms - 200 +2024-05-23 21:52:15.499 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:52:15.563 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 21:52:15.563 +02:00 [INF] Handled a message: friend_request_sent with ID: 1cb565fe0951497da66b2d850f64bd4c, Correlation ID: eed5d491aa744034bf285e533d91bb8d, retry: 0 +2024-05-23 21:52:15.655 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 21:52:15.655 +02:00 [INF] Handled a message: friend_invited with ID: 2934216c0bce48e2abd7e35d69e6402c, Correlation ID: b69091202f894a2d9cf65bdf2cda05ec, retry: 0 +2024-05-23 21:52:25.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:25.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:25.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:25.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4953ms +2024-05-23 21:52:30.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:30.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:30.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:30.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9092ms +2024-05-23 21:52:34.858 +02:00 [INF] Received a message with ID: '682affe981144f9da30104b5e959700e', Correlation ID: 'd789c0a797f344aca8ecbf7da0146992', timestamp: 1716493954, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 21:52:34.859 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 682affe981144f9da30104b5e959700e, Correlation ID: d789c0a797f344aca8ecbf7da0146992, retry: 0 +2024-05-23 21:52:34.887 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 21:52:34.887 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:34.888 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:34.918 +02:00 [INF] Received HTTP response headers after 30.6506ms - 200 +2024-05-23 21:52:34.918 +02:00 [INF] End processing HTTP request after 31.63ms - 200 +2024-05-23 21:52:34.919 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:52:34.920 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 21:52:34.920 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 21:52:34.921 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 21:52:34.948 +02:00 [INF] Received HTTP response headers after 26.9117ms - 200 +2024-05-23 21:52:34.948 +02:00 [INF] End processing HTTP request after 27.4861ms - 200 +2024-05-23 21:52:34.948 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 21:52:34.976 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:35.006 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 21:52:35.036 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 682affe981144f9da30104b5e959700e, Correlation ID: d789c0a797f344aca8ecbf7da0146992, retry: 0 +2024-05-23 21:52:40.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:40.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:40.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:40.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3031ms +2024-05-23 21:52:45.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:45.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:45.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:45.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7082ms +2024-05-23 21:52:55.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:52:55.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:55.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:52:55.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9757ms +2024-05-23 21:53:00.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:00.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:00.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:00.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.7169ms +2024-05-23 21:53:10.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:10.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:10.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:10.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1798ms +2024-05-23 21:53:15.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:15.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:15.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:15.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2284ms +2024-05-23 21:53:25.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:25.448 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:25.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:25.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7828ms +2024-05-23 21:53:30.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:30.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:30.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:30.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2875ms +2024-05-23 21:53:40.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:40.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:40.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:40.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9534ms +2024-05-23 21:53:45.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:45.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:45.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:45.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8724ms +2024-05-23 21:53:55.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:53:55.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:55.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:53:55.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4886ms +2024-05-23 21:54:00.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:00.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:00.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:00.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9354ms +2024-05-23 21:54:10.432 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:10.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:10.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:10.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7247ms +2024-05-23 21:54:15.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:15.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:15.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:15.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.2224ms +2024-05-23 21:54:22.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:22.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:22.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:22.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4814ms +2024-05-23 21:54:22.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:22.113 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:22.143 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:22.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9766ms +2024-05-23 21:54:25.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:25.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:25.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9819ms +2024-05-23 21:54:37.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:37.105 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:37.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:37.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6047ms +2024-05-23 21:54:40.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:40.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:40.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:40.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8276ms +2024-05-23 21:54:52.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:52.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:52.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:52.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4423ms +2024-05-23 21:54:55.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:54:55.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:54:55.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8963ms +2024-05-23 21:55:07.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:07.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:07.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:07.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.734ms +2024-05-23 21:55:10.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:10.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:10.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:10.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7279ms +2024-05-23 21:55:22.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:22.105 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:22.144 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:22.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.8737ms +2024-05-23 21:55:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:25.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:25.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3589ms +2024-05-23 21:55:37.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:37.103 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:37.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:37.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4015ms +2024-05-23 21:55:40.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:40.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:40.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:40.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9825ms +2024-05-23 21:55:52.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:52.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:52.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:52.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2389ms +2024-05-23 21:55:55.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:55.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:55.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:55.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9254ms +2024-05-23 21:55:55.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:55.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:55.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:55.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3676ms +2024-05-23 21:55:56.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:56.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:56.213 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:56.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0936ms +2024-05-23 21:55:56.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:56.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:56.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:56.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2475ms +2024-05-23 21:55:58.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:58.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.874ms +2024-05-23 21:55:58.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:58.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5528ms +2024-05-23 21:55:58.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:55:58.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:55:58.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6741ms +2024-05-23 21:56:07.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:07.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:07.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:07.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7853ms +2024-05-23 21:56:10.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:10.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:10.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:10.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.81ms +2024-05-23 21:56:11.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:11.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:11.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:11.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9721ms +2024-05-23 21:56:13.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:13.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:13.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:13.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8543ms +2024-05-23 21:56:22.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:22.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:22.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:22.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0173ms +2024-05-23 21:56:25.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:25.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:25.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:25.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8887ms +2024-05-23 21:56:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:26.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:26.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:26.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4443ms +2024-05-23 21:56:28.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:28.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:28.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:28.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2142ms +2024-05-23 21:56:37.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:37.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:37.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:37.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2729ms +2024-05-23 21:56:40.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:40.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:40.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:40.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1465ms +2024-05-23 21:56:41.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:41.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:41.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:41.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.13ms +2024-05-23 21:56:43.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:43.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:43.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:43.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3438ms +2024-05-23 21:56:52.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:52.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:52.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:52.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6884ms +2024-05-23 21:56:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:55.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:55.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:55.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5251ms +2024-05-23 21:56:56.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:56.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:56.254 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:56.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9173ms +2024-05-23 21:56:58.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:56:58.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:58.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:56:58.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8347ms +2024-05-23 21:57:07.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:07.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:07.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:07.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0192ms +2024-05-23 21:57:10.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:10.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:10.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:10.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5032ms +2024-05-23 21:57:11.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:11.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:11.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:11.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2037ms +2024-05-23 21:57:13.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:13.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:13.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:13.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8228ms +2024-05-23 21:57:22.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:22.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:22.143 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:22.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.5932ms +2024-05-23 21:57:25.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:25.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:25.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6968ms +2024-05-23 21:57:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:26.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:26.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:26.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6735ms +2024-05-23 21:57:28.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:28.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:28.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:28.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5464ms +2024-05-23 21:57:37.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:37.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:37.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:37.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0188ms +2024-05-23 21:57:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:40.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:40.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:40.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4387ms +2024-05-23 21:57:41.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:41.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:41.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:41.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4414ms +2024-05-23 21:57:43.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:43.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:43.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:43.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.301ms +2024-05-23 21:57:52.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:52.103 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:52.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:52.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5742ms +2024-05-23 21:57:55.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:55.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:55.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1055ms +2024-05-23 21:57:56.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:56.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:56.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:56.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1368ms +2024-05-23 21:57:58.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:57:58.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:58.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:57:58.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5044ms +2024-05-23 21:58:07.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:07.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:07.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:07.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9839ms +2024-05-23 21:58:10.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:10.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:10.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:10.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5436ms +2024-05-23 21:58:11.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:11.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:11.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:11.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9861ms +2024-05-23 21:58:13.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:13.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:13.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:13.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2947ms +2024-05-23 21:58:22.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:22.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:22.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:22.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1382ms +2024-05-23 21:58:25.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:25.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:25.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2548ms +2024-05-23 21:58:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:26.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:26.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:26.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0998ms +2024-05-23 21:58:28.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:28.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:28.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:28.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1903ms +2024-05-23 21:58:37.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:37.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:37.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:37.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1444ms +2024-05-23 21:58:40.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:40.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:40.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:40.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0663ms +2024-05-23 21:58:41.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:41.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:41.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:41.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.929ms +2024-05-23 21:58:43.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:43.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:43.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:43.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5139ms +2024-05-23 21:58:52.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:52.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:52.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:52.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7598ms +2024-05-23 21:58:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:55.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:55.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8995ms +2024-05-23 21:58:56.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:56.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:56.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:56.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7777ms +2024-05-23 21:58:58.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:58:58.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:58.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:58:58.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0548ms +2024-05-23 21:59:07.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:07.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:07.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:07.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3906ms +2024-05-23 21:59:10.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:10.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:10.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:10.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1736ms +2024-05-23 21:59:11.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:11.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:11.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:11.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0427ms +2024-05-23 21:59:13.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:13.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:13.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:13.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6628ms +2024-05-23 21:59:22.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:22.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:22.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:22.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7516ms +2024-05-23 21:59:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:25.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:25.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:25.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.282ms +2024-05-23 21:59:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:26.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:26.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:26.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8512ms +2024-05-23 21:59:28.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:28.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:28.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:28.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.158ms +2024-05-23 21:59:37.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:37.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:37.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:37.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1094ms +2024-05-23 21:59:40.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:40.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:40.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:40.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6336ms +2024-05-23 21:59:41.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:41.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:41.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:41.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8009ms +2024-05-23 21:59:43.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:43.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:43.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:43.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3209ms +2024-05-23 21:59:52.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:52.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:52.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:52.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0022ms +2024-05-23 21:59:55.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:55.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:55.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:55.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.249ms +2024-05-23 21:59:56.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:56.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:56.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:56.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2625ms +2024-05-23 21:59:58.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 21:59:58.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:58.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 21:59:58.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.148ms +2024-05-23 22:00:07.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:07.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:07.143 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:07.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.1389ms +2024-05-23 22:00:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:10.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:10.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6526ms +2024-05-23 22:00:11.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:11.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:11.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:11.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5868ms +2024-05-23 22:00:13.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:13.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:13.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:13.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9775ms +2024-05-23 22:00:22.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:22.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:22.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:22.137 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.494ms +2024-05-23 22:00:25.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:25.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:25.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:25.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 108.1094ms +2024-05-23 22:00:26.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:26.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:26.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:26.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.3589ms +2024-05-23 22:00:28.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:28.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:28.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:28.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 93.6818ms +2024-05-23 22:00:37.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:37.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:37.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:37.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 107.888ms +2024-05-23 22:00:40.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:40.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:40.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:40.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 85.6608ms +2024-05-23 22:00:41.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:41.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:41.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:41.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 132.9533ms +2024-05-23 22:00:43.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:43.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:43.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:43.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 123.7769ms +2024-05-23 22:00:52.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:52.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:52.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:52.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5095ms +2024-05-23 22:00:55.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:55.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:55.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:55.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5786ms +2024-05-23 22:00:56.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:56.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:56.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:56.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9623ms +2024-05-23 22:00:58.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:00:58.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:58.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:00:58.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4919ms +2024-05-23 22:01:07.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:07.103 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:07.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:07.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4738ms +2024-05-23 22:01:10.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:10.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:10.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:10.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1069ms +2024-05-23 22:01:11.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:11.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:11.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:11.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6951ms +2024-05-23 22:01:13.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:13.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:13.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:13.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2203ms +2024-05-23 22:01:22.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:22.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:22.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:22.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1991ms +2024-05-23 22:01:25.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:25.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:25.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:25.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1417ms +2024-05-23 22:01:26.222 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:26.223 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:26.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:26.253 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8132ms +2024-05-23 22:01:28.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:28.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:28.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:28.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9834ms +2024-05-23 22:01:37.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:37.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:37.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:37.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.631ms +2024-05-23 22:01:40.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:40.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:40.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:40.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.757ms +2024-05-23 22:01:41.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:41.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:41.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:41.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3352ms +2024-05-23 22:01:43.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:43.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:43.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:43.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3913ms +2024-05-23 22:01:52.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:52.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:52.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:52.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4655ms +2024-05-23 22:01:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:55.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:55.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7538ms +2024-05-23 22:01:56.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:56.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:56.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:56.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0849ms +2024-05-23 22:01:58.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:01:58.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:58.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:01:58.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6556ms +2024-05-23 22:02:07.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:07.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:07.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:07.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0776ms +2024-05-23 22:02:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:10.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:10.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7146ms +2024-05-23 22:02:11.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:11.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:11.242 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:11.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1712ms +2024-05-23 22:02:13.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:13.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:13.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:13.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9633ms +2024-05-23 22:02:22.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:22.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:22.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:22.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5378ms +2024-05-23 22:02:25.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:25.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:25.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:25.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1924ms +2024-05-23 22:02:26.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:26.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:26.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:26.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.359ms +2024-05-23 22:02:28.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:28.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:28.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:28.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0627ms +2024-05-23 22:02:37.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:37.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:37.130 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:37.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5553ms +2024-05-23 22:02:40.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:40.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:40.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:40.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7939ms +2024-05-23 22:02:41.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:41.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:41.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:41.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.019ms +2024-05-23 22:02:43.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:43.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:43.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:43.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5454ms +2024-05-23 22:02:52.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:52.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:52.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:52.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 49.5689ms +2024-05-23 22:02:56.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:56.154 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:56.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:56.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 202.3007ms +2024-05-23 22:02:57.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:02:57.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:58.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:02:58.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 1185.9138ms +2024-05-23 22:03:00.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:00.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:01.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:01.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 183.9256ms +2024-05-23 22:03:09.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:09.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:09.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:09.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 200.6933ms +2024-05-23 22:03:10.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:10.773 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:10.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:10.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 102.2128ms +2024-05-23 22:03:11.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:11.378 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:11.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:11.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 58.777ms +2024-05-23 22:03:13.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:13.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:13.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:13.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5373ms +2024-05-23 22:03:22.119 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:22.120 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:22.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:22.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7251ms +2024-05-23 22:03:25.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:25.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:25.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:25.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5064ms +2024-05-23 22:03:26.215 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:26.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:26.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:26.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0032ms +2024-05-23 22:03:28.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:28.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:28.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:28.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3251ms +2024-05-23 22:03:37.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:37.105 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:37.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:37.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6088ms +2024-05-23 22:03:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:40.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:40.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:40.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4458ms +2024-05-23 22:03:41.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:41.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:41.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:41.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6751ms +2024-05-23 22:03:43.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:43.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:43.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:43.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.5697ms +2024-05-23 22:03:52.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:52.108 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:52.151 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:52.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.1267ms +2024-05-23 22:03:55.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:55.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:55.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:55.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7214ms +2024-05-23 22:03:56.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:56.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:56.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:56.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2697ms +2024-05-23 22:03:58.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:03:58.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:58.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:03:58.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3324ms +2024-05-23 22:04:07.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:07.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:07.143 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:07.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8058ms +2024-05-23 22:04:10.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:10.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:10.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:10.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7706ms +2024-05-23 22:04:11.227 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:11.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:11.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:11.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4953ms +2024-05-23 22:04:13.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:13.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:13.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:13.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7634ms +2024-05-23 22:04:22.113 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:22.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:22.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:22.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6771ms +2024-05-23 22:04:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:25.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0826ms +2024-05-23 22:04:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:26.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:26.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:26.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4508ms +2024-05-23 22:04:28.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:28.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:28.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:28.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2785ms +2024-05-23 22:04:37.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:37.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:37.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:37.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1448ms +2024-05-23 22:04:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:40.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:40.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:40.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0627ms +2024-05-23 22:04:41.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:41.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:41.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:41.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7676ms +2024-05-23 22:04:43.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:43.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:43.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:43.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7811ms +2024-05-23 22:04:52.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:52.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:52.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:52.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1728ms +2024-05-23 22:04:55.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:55.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:55.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:55.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9414ms +2024-05-23 22:04:56.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:56.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:56.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:56.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5229ms +2024-05-23 22:04:58.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:04:58.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:58.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:04:58.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7951ms +2024-05-23 22:05:07.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:07.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:07.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:07.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3893ms +2024-05-23 22:05:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:10.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:10.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1965ms +2024-05-23 22:05:11.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:11.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:11.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:11.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7768ms +2024-05-23 22:05:13.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:13.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:13.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:13.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5996ms +2024-05-23 22:05:22.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:22.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:22.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:22.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4186ms +2024-05-23 22:05:25.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:25.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:25.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:25.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4379ms +2024-05-23 22:05:26.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:26.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:26.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:26.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6065ms +2024-05-23 22:05:28.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:28.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:28.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:28.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2423ms +2024-05-23 22:05:37.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:37.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:37.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:37.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6375ms +2024-05-23 22:05:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:40.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:40.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:40.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2347ms +2024-05-23 22:05:41.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:41.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:41.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:41.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0038ms +2024-05-23 22:05:43.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:43.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:43.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:43.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6151ms +2024-05-23 22:05:52.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:52.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:52.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:52.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2331ms +2024-05-23 22:05:55.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:55.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:55.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:55.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1185ms +2024-05-23 22:05:56.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:56.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:56.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:56.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2952ms +2024-05-23 22:05:58.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:05:58.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:58.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:05:58.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6519ms +2024-05-23 22:06:07.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:07.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:07.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:07.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.951ms +2024-05-23 22:06:10.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:10.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:10.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4306ms +2024-05-23 22:06:11.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:11.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:11.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:11.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1127ms +2024-05-23 22:06:13.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:13.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:13.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:13.334 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7721ms +2024-05-23 22:06:22.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:22.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:22.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:22.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0726ms +2024-05-23 22:06:25.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:25.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:25.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:25.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.506ms +2024-05-23 22:06:26.216 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:26.217 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:26.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:26.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9192ms +2024-05-23 22:06:28.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:28.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:28.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:28.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6348ms +2024-05-23 22:06:37.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:37.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:37.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:37.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2945ms +2024-05-23 22:06:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:40.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:40.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:40.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2336ms +2024-05-23 22:06:41.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:41.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:41.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:41.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0006ms +2024-05-23 22:06:43.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:43.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:43.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:43.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0292ms +2024-05-23 22:06:55.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:06:55.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:55.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:06:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.481ms +2024-05-23 22:07:10.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:07:10.433 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:10.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:10.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3544ms +2024-05-23 22:07:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:07:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:25.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:25.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2297ms +2024-05-23 22:07:40.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:07:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:40.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:40.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.6307ms +2024-05-23 22:07:55.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:07:55.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:55.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:07:55.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1375ms +2024-05-23 22:08:10.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:08:10.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:10.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:10.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5315ms +2024-05-23 22:08:25.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:08:25.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:25.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:25.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8891ms +2024-05-23 22:08:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:08:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:40.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:40.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4372ms +2024-05-23 22:08:55.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:08:55.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:55.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:08:55.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5258ms +2024-05-23 22:09:10.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:09:10.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:10.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:10.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6261ms +2024-05-23 22:09:25.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:09:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:25.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0719ms +2024-05-23 22:09:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:09:40.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:40.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:40.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.234ms +2024-05-23 22:09:55.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:09:55.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:55.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:09:55.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0982ms +2024-05-23 22:10:10.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:10.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:10.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:10.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7437ms +2024-05-23 22:10:25.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:25.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:25.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:25.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4208ms +2024-05-23 22:10:40.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:40.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.763ms +2024-05-23 22:10:40.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:40.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9528ms +2024-05-23 22:10:40.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:40.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:40.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3992ms +2024-05-23 22:10:42.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:42.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:42.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:42.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7768ms +2024-05-23 22:10:42.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:42.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:42.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:42.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3704ms +2024-05-23 22:10:47.618 +02:00 [INF] Received a message with ID: '94b281bc6c334a7caa8d8293fd9193ea', Correlation ID: 'fff62606c32f44d1a58171b427b281ce', timestamp: 1716495047, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 22:10:47.618 +02:00 [INF] Received a message with ID: '74f1a6150bfd4ac581ae6e1575d2cbbc', Correlation ID: 'e9ae6baf76aa4745838a83823df499d5', timestamp: 1716495047, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 22:10:47.619 +02:00 [INF] Handling a message: friend_invited with ID: 94b281bc6c334a7caa8d8293fd9193ea, Correlation ID: fff62606c32f44d1a58171b427b281ce, retry: 0 +2024-05-23 22:10:47.619 +02:00 [INF] Handling a message: friend_request_sent with ID: 74f1a6150bfd4ac581ae6e1575d2cbbc, Correlation ID: e9ae6baf76aa4745838a83823df499d5, retry: 0 +2024-05-23 22:10:47.751 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:10:47.751 +02:00 [INF] Handled a message: friend_request_sent with ID: 74f1a6150bfd4ac581ae6e1575d2cbbc, Correlation ID: e9ae6baf76aa4745838a83823df499d5, retry: 0 +2024-05-23 22:10:47.993 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 22:10:47.993 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:10:47.993 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:10:48.024 +02:00 [INF] Received HTTP response headers after 31.4027ms - 200 +2024-05-23 22:10:48.024 +02:00 [INF] End processing HTTP request after 31.7329ms - 200 +2024-05-23 22:10:48.025 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:10:48.174 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:10:48.175 +02:00 [INF] Handled a message: friend_invited with ID: 94b281bc6c334a7caa8d8293fd9193ea, Correlation ID: fff62606c32f44d1a58171b427b281ce, retry: 0 +2024-05-23 22:10:55.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:55.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:55.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3208ms +2024-05-23 22:10:55.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:55.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:55.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:55.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3138ms +2024-05-23 22:10:57.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:10:57.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:57.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:10:57.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1995ms +2024-05-23 22:11:00.777 +02:00 [INF] Received a message with ID: '939741c042c94b2d8fea62754644df20', Correlation ID: '546a40ede7c5428c925d34ca8ad0bdab', timestamp: 1716495060, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 22:11:00.778 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 939741c042c94b2d8fea62754644df20, Correlation ID: 546a40ede7c5428c925d34ca8ad0bdab, retry: 0 +2024-05-23 22:11:00.807 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 22:11:00.807 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:00.807 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:00.836 +02:00 [INF] Received HTTP response headers after 28.7974ms - 200 +2024-05-23 22:11:00.840 +02:00 [INF] End processing HTTP request after 32.6446ms - 200 +2024-05-23 22:11:00.840 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:11:00.840 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 22:11:00.840 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:11:00.840 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:11:00.872 +02:00 [INF] Received HTTP response headers after 31.8925ms - 200 +2024-05-23 22:11:00.872 +02:00 [INF] End processing HTTP request after 32.3339ms - 200 +2024-05-23 22:11:00.872 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:11:00.900 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:00.931 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:00.974 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 939741c042c94b2d8fea62754644df20, Correlation ID: 546a40ede7c5428c925d34ca8ad0bdab, retry: 0 +2024-05-23 22:11:10.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:10.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:10.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:10.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5379ms +2024-05-23 22:11:10.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:10.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:10.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:10.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0987ms +2024-05-23 22:11:12.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:12.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:12.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:12.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7688ms +2024-05-23 22:11:25.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:25.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:25.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:25.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 363.1393ms +2024-05-23 22:11:25.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:25.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:25.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:25.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.3658ms +2024-05-23 22:11:27.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:27.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:27.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:27.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9091ms +2024-05-23 22:11:28.433 +02:00 [INF] Received a message with ID: '5705a66404d74ee38103f0e037406875', Correlation ID: 'ba32d71178c6488c87625fd103f8fb6b', timestamp: 1716495088, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 22:11:28.433 +02:00 [INF] Received a message with ID: 'a9c062b930364d9eb5409adb044d9064', Correlation ID: '426bf71644044250811fa5d9e899fa72', timestamp: 1716495088, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 22:11:28.434 +02:00 [INF] Handling a message: friend_invited with ID: 5705a66404d74ee38103f0e037406875, Correlation ID: ba32d71178c6488c87625fd103f8fb6b, retry: 0 +2024-05-23 22:11:28.434 +02:00 [INF] Handling a message: friend_request_sent with ID: a9c062b930364d9eb5409adb044d9064, Correlation ID: 426bf71644044250811fa5d9e899fa72, retry: 0 +2024-05-23 22:11:28.461 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 22:11:28.461 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:28.461 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:28.491 +02:00 [INF] Received HTTP response headers after 29.8428ms - 200 +2024-05-23 22:11:28.492 +02:00 [INF] End processing HTTP request after 30.4656ms - 200 +2024-05-23 22:11:28.492 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:11:28.567 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:11:28.567 +02:00 [INF] Handled a message: friend_request_sent with ID: a9c062b930364d9eb5409adb044d9064, Correlation ID: 426bf71644044250811fa5d9e899fa72, retry: 0 +2024-05-23 22:11:28.650 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:11:28.650 +02:00 [INF] Handled a message: friend_invited with ID: 5705a66404d74ee38103f0e037406875, Correlation ID: ba32d71178c6488c87625fd103f8fb6b, retry: 0 +2024-05-23 22:11:40.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:40.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:40.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:40.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2445ms +2024-05-23 22:11:40.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:40.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:40.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:40.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2713ms +2024-05-23 22:11:42.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:42.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:42.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:42.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0574ms +2024-05-23 22:11:45.119 +02:00 [INF] Received a message with ID: '7897156b93bc4d1f886546b1bbec31c2', Correlation ID: '4dcd9f2cd60b4c0b98fd8b05224f49a3', timestamp: 1716495105, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 22:11:45.120 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 7897156b93bc4d1f886546b1bbec31c2, Correlation ID: 4dcd9f2cd60b4c0b98fd8b05224f49a3, retry: 0 +2024-05-23 22:11:45.146 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-23 22:11:45.146 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:45.146 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:45.174 +02:00 [INF] Received HTTP response headers after 27.2717ms - 200 +2024-05-23 22:11:45.174 +02:00 [INF] End processing HTTP request after 27.5609ms - 200 +2024-05-23 22:11:45.175 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:11:45.175 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 22:11:45.175 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:11:45.175 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:11:45.206 +02:00 [INF] Received HTTP response headers after 30.5619ms - 200 +2024-05-23 22:11:45.206 +02:00 [INF] End processing HTTP request after 30.9108ms - 200 +2024-05-23 22:11:45.206 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:11:45.232 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:45.264 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-23 22:11:45.295 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 7897156b93bc4d1f886546b1bbec31c2, Correlation ID: 4dcd9f2cd60b4c0b98fd8b05224f49a3, retry: 0 +2024-05-23 22:11:55.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:55.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:55.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:55.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.183ms +2024-05-23 22:11:55.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:55.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:55.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:55.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5568ms +2024-05-23 22:11:57.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:11:57.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:57.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:11:57.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0562ms +2024-05-23 22:12:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:10.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:10.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:10.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6689ms +2024-05-23 22:12:10.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:10.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:10.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:10.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0449ms +2024-05-23 22:12:12.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:12.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:12.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:12.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8693ms +2024-05-23 22:12:25.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:25.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:25.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:25.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2299ms +2024-05-23 22:12:25.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:25.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:25.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:25.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7517ms +2024-05-23 22:12:27.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:27.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:27.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:27.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5631ms +2024-05-23 22:12:35.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:35.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:35.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:35.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3282ms +2024-05-23 22:12:40.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:40.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:40.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:40.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1031ms +2024-05-23 22:12:40.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:40.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:40.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:40.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5443ms +2024-05-23 22:12:42.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:42.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:42.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:42.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4406ms +2024-05-23 22:12:55.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:55.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:55.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:55.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.161ms +2024-05-23 22:12:55.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:55.819 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:55.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:55.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6037ms +2024-05-23 22:12:57.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:12:57.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:57.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:12:57.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6945ms +2024-05-23 22:13:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:10.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:10.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6121ms +2024-05-23 22:13:10.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:10.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:10.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:10.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3184ms +2024-05-23 22:13:12.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:12.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:12.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:12.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6676ms +2024-05-23 22:13:25.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:25.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:25.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:25.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1382ms +2024-05-23 22:13:25.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:25.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:25.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:25.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.965ms +2024-05-23 22:13:27.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:27.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:27.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:27.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.5492ms +2024-05-23 22:13:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:40.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:40.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:40.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2667ms +2024-05-23 22:13:40.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:40.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:40.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:40.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1553ms +2024-05-23 22:13:42.456 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:42.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:42.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:42.484 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7962ms +2024-05-23 22:13:55.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:55.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:55.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:55.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7641ms +2024-05-23 22:13:55.818 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:55.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:55.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:55.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7167ms +2024-05-23 22:13:57.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:13:57.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:57.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:13:57.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.891ms +2024-05-23 22:14:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:10.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:10.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0234ms +2024-05-23 22:14:10.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:10.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:10.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:10.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.674ms +2024-05-23 22:14:12.225 +02:00 [INF] Received a message with ID: 'da667111d92242e7b2299705d70c61cb', Correlation ID: '848292fef83f4ef9bff0a771aac49915', timestamp: 1716495252, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 22:14:12.225 +02:00 [INF] Handling a message: friend_invited with ID: da667111d92242e7b2299705d70c61cb, Correlation ID: 848292fef83f4ef9bff0a771aac49915, retry: 0 +2024-05-23 22:14:12.226 +02:00 [INF] Received a message with ID: '97c03883f32a48dbb03defd4ed548e60', Correlation ID: '875ce6c6e3db4fb091312ed5256ed7c2', timestamp: 1716495252, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 22:14:12.226 +02:00 [INF] Handling a message: friend_request_sent with ID: 97c03883f32a48dbb03defd4ed548e60, Correlation ID: 875ce6c6e3db4fb091312ed5256ed7c2, retry: 0 +2024-05-23 22:14:12.254 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 22:14:12.254 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:12.256 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:12.285 +02:00 [INF] Received HTTP response headers after 29.1458ms - 200 +2024-05-23 22:14:12.285 +02:00 [INF] End processing HTTP request after 30.6145ms - 200 +2024-05-23 22:14:12.285 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:12.347 +02:00 [INF] Processed friend request sent from af98ceda-1483-4c51-a602-89e5537ec89e to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 22:14:12.347 +02:00 [INF] Handled a message: friend_request_sent with ID: 97c03883f32a48dbb03defd4ed548e60, Correlation ID: 875ce6c6e3db4fb091312ed5256ed7c2, retry: 0 +2024-05-23 22:14:12.438 +02:00 [INF] Handled invitation sent by af98ceda-1483-4c51-a602-89e5537ec89e to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-23 22:14:12.438 +02:00 [INF] Handled a message: friend_invited with ID: da667111d92242e7b2299705d70c61cb, Correlation ID: 848292fef83f4ef9bff0a771aac49915, retry: 0 +2024-05-23 22:14:12.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:12.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:12.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:12.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7488ms +2024-05-23 22:14:17.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:17.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:17.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:17.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2223ms +2024-05-23 22:14:17.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:17.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:17.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:17.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5774ms +2024-05-23 22:14:25.312 +02:00 [INF] Received a message with ID: '0d863b6c8307454bbda7de4a9cd5213f', Correlation ID: 'd8844e29b06f4673a667792aec84177a', timestamp: 1716495265, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 22:14:25.312 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 0d863b6c8307454bbda7de4a9cd5213f, Correlation ID: d8844e29b06f4673a667792aec84177a, retry: 0 +2024-05-23 22:14:25.339 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 22:14:25.340 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:25.340 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:25.373 +02:00 [INF] Received HTTP response headers after 32.9417ms - 200 +2024-05-23 22:14:25.373 +02:00 [INF] End processing HTTP request after 33.6096ms - 200 +2024-05-23 22:14:25.373 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:25.374 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 22:14:25.374 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:25.374 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:25.401 +02:00 [INF] Received HTTP response headers after 26.7968ms - 200 +2024-05-23 22:14:25.401 +02:00 [INF] End processing HTTP request after 27.1515ms - 200 +2024-05-23 22:14:25.401 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:25.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:25.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:25.427 +02:00 [INF] Adding notification to StudentNotifications for UserId=af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:25.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:25.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4246ms +2024-05-23 22:14:25.461 +02:00 [INF] Updated StudentNotifications for UserId=af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:25.492 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 0d863b6c8307454bbda7de4a9cd5213f, Correlation ID: d8844e29b06f4673a667792aec84177a, retry: 0 +2024-05-23 22:14:32.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:32.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:32.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:32.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7252ms +2024-05-23 22:14:35.970 +02:00 [INF] Received a message with ID: 'fbb79422b39f4fd286f12623dc6f5c41', Correlation ID: '0519d4cd10324c67947f5b9548181323', timestamp: 1716495275, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-23 22:14:35.971 +02:00 [INF] Received a message with ID: 'bfb10d196e184ce495f7ec445b22e6ab', Correlation ID: '3471ccd27e114f61b3b3733d15ceeba9', timestamp: 1716495275, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-23 22:14:35.972 +02:00 [INF] Handling a message: friend_request_sent with ID: bfb10d196e184ce495f7ec445b22e6ab, Correlation ID: 3471ccd27e114f61b3b3733d15ceeba9, retry: 0 +2024-05-23 22:14:35.976 +02:00 [INF] Handling a message: friend_invited with ID: fbb79422b39f4fd286f12623dc6f5c41, Correlation ID: 0519d4cd10324c67947f5b9548181323, retry: 0 +2024-05-23 22:14:36.008 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 22:14:36.008 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:36.008 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:36.041 +02:00 [INF] Received HTTP response headers after 32.5281ms - 200 +2024-05-23 22:14:36.041 +02:00 [INF] End processing HTTP request after 33.5332ms - 200 +2024-05-23 22:14:36.042 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:36.100 +02:00 [INF] Processed friend request sent from f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:14:36.100 +02:00 [INF] Handled a message: friend_request_sent with ID: bfb10d196e184ce495f7ec445b22e6ab, Correlation ID: 3471ccd27e114f61b3b3733d15ceeba9, retry: 0 +2024-05-23 22:14:36.193 +02:00 [INF] Handled invitation sent by f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-23 22:14:36.193 +02:00 [INF] Handled a message: friend_invited with ID: fbb79422b39f4fd286f12623dc6f5c41, Correlation ID: 0519d4cd10324c67947f5b9548181323, retry: 0 +2024-05-23 22:14:40.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:40.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:40.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:40.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.1927ms +2024-05-23 22:14:47.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:47.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:47.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:47.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4908ms +2024-05-23 22:14:49.514 +02:00 [INF] Received a message with ID: '450b6295ce724405ada6bb017e560593', Correlation ID: '6e53242d9fd7477496cea013a43d6fd0', timestamp: 1716495289, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-23 22:14:49.514 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 450b6295ce724405ada6bb017e560593, Correlation ID: 6e53242d9fd7477496cea013a43d6fd0, retry: 0 +2024-05-23 22:14:49.539 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-23 22:14:49.540 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:49.540 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:49.569 +02:00 [INF] Received HTTP response headers after 29.2694ms - 200 +2024-05-23 22:14:49.569 +02:00 [INF] End processing HTTP request after 29.84ms - 200 +2024-05-23 22:14:49.569 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:49.570 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-23 22:14:49.570 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:49.570 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-23 22:14:49.600 +02:00 [INF] Received HTTP response headers after 30.0155ms - 200 +2024-05-23 22:14:49.600 +02:00 [INF] End processing HTTP request after 30.3314ms - 200 +2024-05-23 22:14:49.600 +02:00 [INF] End processing HTTP request - "OK" +2024-05-23 22:14:49.628 +02:00 [INF] Adding notification to StudentNotifications for UserId=f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:49.661 +02:00 [INF] Updated StudentNotifications for UserId=f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-23 22:14:49.689 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 450b6295ce724405ada6bb017e560593, Correlation ID: 6e53242d9fd7477496cea013a43d6fd0, retry: 0 +2024-05-23 22:14:55.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:14:55.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:55.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:14:55.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6282ms +2024-05-23 22:15:02.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:02.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:02.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:02.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3445ms +2024-05-23 22:15:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:10.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:10.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6359ms +2024-05-23 22:15:17.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:17.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:17.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:17.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6636ms +2024-05-23 22:15:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:25.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4475ms +2024-05-23 22:15:32.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:32.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:32.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:32.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2634ms +2024-05-23 22:15:40.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:40.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:40.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:40.459 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9024ms +2024-05-23 22:15:47.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:47.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:47.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:47.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9322ms +2024-05-23 22:15:55.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:15:55.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:55.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:15:55.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8974ms +2024-05-23 22:16:02.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:02.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:02.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:02.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1425ms +2024-05-23 22:16:10.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:10.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:10.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:10.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.999ms +2024-05-23 22:16:17.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:17.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:17.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:17.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4697ms +2024-05-23 22:16:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:25.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.813ms +2024-05-23 22:16:32.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:32.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 274.6054ms +2024-05-23 22:16:40.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:40.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:40.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8968ms +2024-05-23 22:16:47.408 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:47.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:47.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:47.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7756ms +2024-05-23 22:16:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:16:55.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:16:55.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.166ms +2024-05-23 22:17:02.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:02.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:02.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:02.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.0287ms +2024-05-23 22:17:10.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:10.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:10.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:10.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8079ms +2024-05-23 22:17:17.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:17.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:17.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:17.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1084ms +2024-05-23 22:17:25.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:25.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:25.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1118ms +2024-05-23 22:17:32.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:32.410 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:32.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:32.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.228ms +2024-05-23 22:17:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:40.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:40.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:40.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8106ms +2024-05-23 22:17:47.406 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:47.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:47.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:47.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6729ms +2024-05-23 22:17:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:17:55.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:17:55.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2743ms +2024-05-23 22:18:02.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:02.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:02.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:02.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1528ms +2024-05-23 22:18:10.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:10.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:10.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:10.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3773ms +2024-05-23 22:18:17.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:17.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:17.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:17.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3118ms +2024-05-23 22:18:25.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:25.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:25.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:25.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7893ms +2024-05-23 22:18:32.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:32.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:32.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:32.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2136ms +2024-05-23 22:18:40.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:40.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:40.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:40.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5296ms +2024-05-23 22:18:47.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:47.407 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:47.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:47.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0539ms +2024-05-23 22:18:55.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:55.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:55.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:55.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4739ms +2024-05-23 22:18:59.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:18:59.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:59.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:18:59.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9875ms +2024-05-23 22:19:02.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:02.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:02.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:02.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4826ms +2024-05-23 22:19:10.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:10.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:10.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8224ms +2024-05-23 22:19:17.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:17.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:17.436 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:17.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0866ms +2024-05-23 22:19:25.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:25.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:25.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:25.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 49.8112ms +2024-05-23 22:19:32.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:32.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:32.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:32.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.6118ms +2024-05-23 22:19:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:40.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:40.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6158ms +2024-05-23 22:19:47.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:47.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:47.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:47.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1464ms +2024-05-23 22:19:55.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:19:55.427 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:55.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:19:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2835ms +2024-05-23 22:20:02.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:02.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:02.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:02.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3269ms +2024-05-23 22:20:10.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:10.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:10.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:10.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1184ms +2024-05-23 22:20:17.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:17.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:17.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:17.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9741ms +2024-05-23 22:20:25.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:25.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:25.459 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:25.460 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8524ms +2024-05-23 22:20:32.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:32.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:32.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:32.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9822ms +2024-05-23 22:20:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:40.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:40.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0475ms +2024-05-23 22:20:47.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:47.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:47.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:47.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4999ms +2024-05-23 22:20:55.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:20:55.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:55.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:20:55.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0519ms +2024-05-23 22:21:02.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:02.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:02.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:02.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6704ms +2024-05-23 22:21:10.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:10.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:10.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:10.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9735ms +2024-05-23 22:21:17.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:17.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:17.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:17.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3056ms +2024-05-23 22:21:25.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:25.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:25.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:25.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1718ms +2024-05-23 22:21:32.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:32.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:32.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:32.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4404ms +2024-05-23 22:21:40.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:40.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:40.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:40.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2754ms +2024-05-23 22:21:47.407 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:47.408 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:47.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:47.436 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8421ms +2024-05-23 22:21:55.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:21:55.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:55.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:21:55.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6204ms +2024-05-23 22:22:02.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:22:02.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:02.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:02.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.85ms +2024-05-23 22:22:10.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:22:10.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:10.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:10.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0292ms +2024-05-23 22:22:17.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:22:17.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:17.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:17.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8142ms +2024-05-23 22:22:52.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:22:52.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:52.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:52.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4182ms +2024-05-23 22:22:52.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:22:52.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:52.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:22:52.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4613ms +2024-05-23 22:23:07.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:23:07.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:07.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:07.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2239ms +2024-05-23 22:23:22.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:23:22.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:22.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:22.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.076ms +2024-05-23 22:23:37.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:23:37.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:37.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:37.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8525ms +2024-05-23 22:23:52.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:23:52.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:52.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:23:52.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1721ms +2024-05-23 22:24:07.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:07.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:07.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:07.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0026ms +2024-05-23 22:24:22.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:22.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:22.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:22.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.123ms +2024-05-23 22:24:35.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:35.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:35.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:35.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0826ms +2024-05-23 22:24:35.409 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:35.409 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:35.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:35.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0693ms +2024-05-23 22:24:37.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:37.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:37.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:37.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8568ms +2024-05-23 22:24:50.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:50.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:50.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:50.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1155ms +2024-05-23 22:24:52.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:24:52.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:52.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:24:52.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6833ms +2024-05-23 22:25:05.405 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:25:05.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:05.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:05.434 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6158ms +2024-05-23 22:25:07.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:25:07.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:07.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:07.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4157ms +2024-05-23 22:25:17.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:25:17.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:17.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:17.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8642ms +2024-05-23 22:25:17.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:25:17.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:17.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:25:17.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1232ms +2024-05-23 22:27:20.180 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:27:20.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:20.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:20.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3883ms +2024-05-23 22:27:20.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:27:20.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:20.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:20.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6751ms +2024-05-23 22:27:32.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:27:32.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:32.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:32.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0645ms +2024-05-23 22:27:32.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:27:32.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:32.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:27:32.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9951ms +2024-05-23 22:28:36.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:28:36.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:36.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:36.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1092ms +2024-05-23 22:28:36.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:28:36.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:36.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:36.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3601ms +2024-05-23 22:28:51.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:28:51.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:51.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:51.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6461ms +2024-05-23 22:28:58.364 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:28:58.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:58.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:58.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8779ms +2024-05-23 22:28:58.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:28:58.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:58.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:28:58.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.605ms +2024-05-23 22:29:00.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:00.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0199ms +2024-05-23 22:29:00.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:00.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2599ms +2024-05-23 22:29:00.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:00.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:00.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3744ms +2024-05-23 22:29:06.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:06.692 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:06.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:06.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6533ms +2024-05-23 22:29:13.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:13.402 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:13.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:13.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3828ms +2024-05-23 22:29:15.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:15.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:15.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:15.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4247ms +2024-05-23 22:29:21.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:21.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:21.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7361ms +2024-05-23 22:29:21.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8478ms +2024-05-23 22:29:21.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:21.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8367ms +2024-05-23 22:29:21.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:21.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:21.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.52ms +2024-05-23 22:29:28.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:28.006 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:28.006 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:29:28.007 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:28.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:28.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3056ms +2024-05-23 22:29:28.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:29:28.037 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0174ms +2024-05-23 22:30:19.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:30:19.723 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:19.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:19.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.4243ms +2024-05-23 22:30:19.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:30:19.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:19.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:19.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2169ms +2024-05-23 22:30:34.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:30:34.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:35.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:35.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9585ms +2024-05-23 22:30:49.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:30:49.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:49.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:30:49.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3328ms +2024-05-23 22:31:04.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:31:04.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:04.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:04.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4135ms +2024-05-23 22:31:19.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:31:19.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:19.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:19.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4715ms +2024-05-23 22:31:34.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:31:34.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:34.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:34.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 154.8278ms +2024-05-23 22:31:49.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:31:49.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:49.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:31:49.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4589ms +2024-05-23 22:32:04.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:32:04.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:04.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:04.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3483ms +2024-05-23 22:32:19.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:32:19.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:19.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:19.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4614ms +2024-05-23 22:32:34.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:32:34.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:34.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:34.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6618ms +2024-05-23 22:32:49.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:32:49.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:49.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:32:49.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.812ms +2024-05-23 22:33:04.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:04.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:04.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:04.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0884ms +2024-05-23 22:33:11.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:11.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:11.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:11.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.31ms +2024-05-23 22:33:11.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:11.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:11.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:11.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0346ms +2024-05-23 22:33:19.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:19.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:19.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:19.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7947ms +2024-05-23 22:33:30.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:30.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:30.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:30.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1488ms +2024-05-23 22:33:30.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:30.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:30.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:30.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5262ms +2024-05-23 22:33:42.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:42.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:42.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:42.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0082ms +2024-05-23 22:33:42.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:42.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:42.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:42.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4182ms +2024-05-23 22:33:45.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:45.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:45.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:45.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3705ms +2024-05-23 22:33:57.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:33:57.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:57.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:33:57.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6789ms +2024-05-23 22:34:00.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:00.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:00.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:00.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4382ms +2024-05-23 22:34:12.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:12.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:12.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:12.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4559ms +2024-05-23 22:34:15.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:15.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:15.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:15.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5589ms +2024-05-23 22:34:27.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:27.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:27.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:27.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3745ms +2024-05-23 22:34:30.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:30.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:30.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:30.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1147ms +2024-05-23 22:34:42.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:42.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:42.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:42.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.466ms +2024-05-23 22:34:45.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:45.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:45.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:45.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8341ms +2024-05-23 22:34:50.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:50.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:50.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:50.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4203ms +2024-05-23 22:34:50.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:50.759 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:50.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:50.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.365ms +2024-05-23 22:34:57.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:34:57.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:57.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:34:57.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0229ms +2024-05-23 22:35:00.395 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:00.396 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:00.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:00.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0749ms +2024-05-23 22:35:00.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:00.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:00.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:00.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2785ms +2024-05-23 22:35:11.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:11.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:11.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:11.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0924ms +2024-05-23 22:35:11.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:11.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:11.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:11.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0791ms +2024-05-23 22:35:26.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:26.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:26.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:26.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7084ms +2024-05-23 22:35:41.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:41.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:41.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:41.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.92ms +2024-05-23 22:35:56.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:35:56.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:56.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:35:56.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.2954ms +2024-05-23 22:36:11.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:36:11.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:11.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:11.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3306ms +2024-05-23 22:36:26.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:36:26.693 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:26.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:26.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.167ms +2024-05-23 22:36:41.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:36:41.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:41.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:41.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6156ms +2024-05-23 22:36:56.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:36:56.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:56.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:36:56.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3713ms +2024-05-23 22:37:11.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:37:11.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:11.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:11.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9364ms +2024-05-23 22:37:26.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:37:26.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:26.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:26.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3058ms +2024-05-23 22:37:41.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:37:41.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:41.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:41.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0372ms +2024-05-23 22:37:56.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:37:56.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:56.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:37:56.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5225ms +2024-05-23 22:38:02.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:02.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:02.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:02.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3821ms +2024-05-23 22:38:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:02.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.629ms +2024-05-23 22:38:04.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:04.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:04.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:04.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8159ms +2024-05-23 22:38:04.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:04.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:04.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:04.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6061ms +2024-05-23 22:38:13.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:13.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:13.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:13.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5579ms +2024-05-23 22:38:17.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:17.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:17.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:17.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6306ms +2024-05-23 22:38:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:19.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:19.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0634ms +2024-05-23 22:38:32.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:32.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:32.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9453ms +2024-05-23 22:38:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:34.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:34.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:34.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5179ms +2024-05-23 22:38:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:47.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:47.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2718ms +2024-05-23 22:38:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:38:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:49.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:38:49.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4785ms +2024-05-23 22:39:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4552ms +2024-05-23 22:39:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:04.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:04.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:04.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6361ms +2024-05-23 22:39:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:17.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:17.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5123ms +2024-05-23 22:39:19.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:19.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:19.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:19.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8764ms +2024-05-23 22:39:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:32.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:32.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0251ms +2024-05-23 22:39:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:34.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:34.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2474ms +2024-05-23 22:39:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:47.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:47.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:47.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.596ms +2024-05-23 22:39:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:39:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:49.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:39:49.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3347ms +2024-05-23 22:40:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:02.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:02.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3868ms +2024-05-23 22:40:04.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:04.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:04.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:04.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8107ms +2024-05-23 22:40:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:17.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:17.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.164ms +2024-05-23 22:40:19.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:19.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:19.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9874ms +2024-05-23 22:40:32.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:32.854 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:32.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:32.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6282ms +2024-05-23 22:40:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:34.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:34.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:34.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9615ms +2024-05-23 22:40:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:47.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:47.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.0724ms +2024-05-23 22:40:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4624ms +2024-05-23 22:40:55.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:55.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:55.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:55.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3037ms +2024-05-23 22:40:56.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:56.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:56.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:56.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5368ms +2024-05-23 22:40:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:40:56.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:56.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:40:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.192ms +2024-05-23 22:41:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:02.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4175ms +2024-05-23 22:41:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:04.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:04.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6387ms +2024-05-23 22:41:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:11.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:11.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6608ms +2024-05-23 22:41:17.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:17.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:17.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:17.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3865ms +2024-05-23 22:41:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:19.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:19.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6081ms +2024-05-23 22:41:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:26.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7141ms +2024-05-23 22:41:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:32.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:32.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:32.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9616ms +2024-05-23 22:41:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:34.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:34.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7708ms +2024-05-23 22:41:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:41.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:41.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8094ms +2024-05-23 22:41:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4927ms +2024-05-23 22:41:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:49.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1425ms +2024-05-23 22:41:56.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:41:56.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:56.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:41:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5196ms +2024-05-23 22:42:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:02.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0088ms +2024-05-23 22:42:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:04.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:04.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:04.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7213ms +2024-05-23 22:42:06.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:06.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:06.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:06.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0198ms +2024-05-23 22:42:06.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:06.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:06.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:06.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3113ms +2024-05-23 22:42:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:11.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:11.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6321ms +2024-05-23 22:42:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:17.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:17.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5733ms +2024-05-23 22:42:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:19.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:19.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1849ms +2024-05-23 22:42:21.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:21.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:21.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0868ms +2024-05-23 22:42:26.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:26.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3504ms +2024-05-23 22:42:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.479ms +2024-05-23 22:42:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:34.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:34.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.752ms +2024-05-23 22:42:36.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:36.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:36.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:36.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9066ms +2024-05-23 22:42:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:41.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:41.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5413ms +2024-05-23 22:42:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:47.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:47.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2608ms +2024-05-23 22:42:49.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:49.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:49.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6449ms +2024-05-23 22:42:51.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:51.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:51.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:51.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.561ms +2024-05-23 22:42:56.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:42:56.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:56.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:42:56.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0289ms +2024-05-23 22:43:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:02.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:02.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8853ms +2024-05-23 22:43:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:04.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:04.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:04.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3824ms +2024-05-23 22:43:06.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:06.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.427ms +2024-05-23 22:43:11.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:11.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:11.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:11.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8875ms +2024-05-23 22:43:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:17.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8303ms +2024-05-23 22:43:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:19.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:19.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:19.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1517ms +2024-05-23 22:43:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:21.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:21.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 49.6322ms +2024-05-23 22:43:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:26.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:26.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5435ms +2024-05-23 22:43:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4316ms +2024-05-23 22:43:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:34.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:34.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.656ms +2024-05-23 22:43:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:36.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2477ms +2024-05-23 22:43:41.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:41.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9449ms +2024-05-23 22:43:41.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:41.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.946 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:41.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8192ms +2024-05-23 22:43:41.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:41.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4743ms +2024-05-23 22:43:42.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:42.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 374.89ms +2024-05-23 22:43:43.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:43.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3939ms +2024-05-23 22:43:43.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:43.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1218ms +2024-05-23 22:43:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:43.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1865ms +2024-05-23 22:43:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:47.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:47.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3357ms +2024-05-23 22:43:49.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:49.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:49.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:49.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9609ms +2024-05-23 22:43:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:51.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.923ms +2024-05-23 22:43:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:56.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:56.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:56.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:56.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:56.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8862ms +2024-05-23 22:43:56.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:56.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1148ms +2024-05-23 22:43:58.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:43:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:43:58.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2981ms +2024-05-23 22:44:02.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:02.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:02.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6586ms +2024-05-23 22:44:04.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:04.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:04.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6146ms +2024-05-23 22:44:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:06.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2583ms +2024-05-23 22:44:11.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:11.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:11.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:11.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:11.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:11.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.703ms +2024-05-23 22:44:11.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:11.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1828ms +2024-05-23 22:44:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:13.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:13.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.6881ms +2024-05-23 22:44:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:17.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:17.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.2202ms +2024-05-23 22:44:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4673ms +2024-05-23 22:44:21.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:21.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:21.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4199ms +2024-05-23 22:44:26.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:26.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:26.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:26.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:26.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:26.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4285ms +2024-05-23 22:44:26.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:26.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5647ms +2024-05-23 22:44:28.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:28.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:28.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8621ms +2024-05-23 22:44:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:32.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:32.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9718ms +2024-05-23 22:44:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:34.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2116ms +2024-05-23 22:44:36.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:36.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6063ms +2024-05-23 22:44:41.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:41.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:41.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:41.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:41.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:41.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2789ms +2024-05-23 22:44:42.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:42.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 50.5178ms +2024-05-23 22:44:43.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:43.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:43.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9754ms +2024-05-23 22:44:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:47.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:47.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7831ms +2024-05-23 22:44:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:49.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.917ms +2024-05-23 22:44:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:51.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:51.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5318ms +2024-05-23 22:44:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:56.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:56.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:56.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:56.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7442ms +2024-05-23 22:44:56.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:56.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2735ms +2024-05-23 22:44:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:44:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:58.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:44:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6425ms +2024-05-23 22:45:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7132ms +2024-05-23 22:45:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6262ms +2024-05-23 22:45:06.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:06.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:06.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:06.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.7562ms +2024-05-23 22:45:11.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:11.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:11.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0091ms +2024-05-23 22:45:11.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:11.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.2833ms +2024-05-23 22:45:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.231ms +2024-05-23 22:45:17.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:17.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:17.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6396ms +2024-05-23 22:45:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:19.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:19.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6293ms +2024-05-23 22:45:21.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:21.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:21.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3833ms +2024-05-23 22:45:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:26.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:26.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3228ms +2024-05-23 22:45:26.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:26.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0856ms +2024-05-23 22:45:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:28.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:28.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3625ms +2024-05-23 22:45:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1594ms +2024-05-23 22:45:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:34.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2899ms +2024-05-23 22:45:36.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:36.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:36.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:36.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6665ms +2024-05-23 22:45:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:41.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:41.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5745ms +2024-05-23 22:45:41.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:41.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9481ms +2024-05-23 22:45:43.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:43.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:43.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:43.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2611ms +2024-05-23 22:45:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:47.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:47.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5643ms +2024-05-23 22:45:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:49.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5107ms +2024-05-23 22:45:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:51.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:51.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:51.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.414ms +2024-05-23 22:45:56.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:56.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:56.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:56.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:56.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:56.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2653ms +2024-05-23 22:45:56.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:56.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.6926ms +2024-05-23 22:45:58.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:45:58.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:58.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:45:58.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.2321ms +2024-05-23 22:46:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:02.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:02.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:02.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8087ms +2024-05-23 22:46:04.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:04.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:04.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:04.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9156ms +2024-05-23 22:46:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:06.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:06.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0944ms +2024-05-23 22:46:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:11.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:11.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:11.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:11.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.2753ms +2024-05-23 22:46:11.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:11.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5059ms +2024-05-23 22:46:13.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:13.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:13.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:13.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3804ms +2024-05-23 22:46:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:17.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:17.886 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.517ms +2024-05-23 22:46:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:19.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:19.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5285ms +2024-05-23 22:46:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:21.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:21.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0858ms +2024-05-23 22:46:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:26.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:26.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:26.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:26.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7598ms +2024-05-23 22:46:26.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:26.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.393ms +2024-05-23 22:46:28.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:28.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9243ms +2024-05-23 22:46:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:32.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:32.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 60.6278ms +2024-05-23 22:46:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:34.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:34.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.492ms +2024-05-23 22:46:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:36.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:36.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:36.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7677ms +2024-05-23 22:46:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:41.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:41.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:41.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2079ms +2024-05-23 22:46:41.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:41.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.7255ms +2024-05-23 22:46:43.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:43.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:43.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5672ms +2024-05-23 22:46:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:47.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:47.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.186ms +2024-05-23 22:46:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:49.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:49.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:49.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0742ms +2024-05-23 22:46:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:51.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1375ms +2024-05-23 22:46:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:56.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:56.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:56.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:56.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:56.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8399ms +2024-05-23 22:46:56.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:56.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5335ms +2024-05-23 22:46:58.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:46:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:46:58.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8849ms +2024-05-23 22:47:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0609ms +2024-05-23 22:47:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:04.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0558ms +2024-05-23 22:47:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:06.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:06.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8433ms +2024-05-23 22:47:11.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:11.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:11.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:11.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9412ms +2024-05-23 22:47:11.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:11.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.0691ms +2024-05-23 22:47:13.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:13.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:13.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:13.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3601ms +2024-05-23 22:47:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:17.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:17.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2165ms +2024-05-23 22:47:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8438ms +2024-05-23 22:47:21.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:21.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:21.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:21.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5319ms +2024-05-23 22:47:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:26.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:26.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1842ms +2024-05-23 22:47:26.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:26.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7851ms +2024-05-23 22:47:28.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:28.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:28.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1369ms +2024-05-23 22:47:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6108ms +2024-05-23 22:47:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:34.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:34.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.47ms +2024-05-23 22:47:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:36.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:36.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9013ms +2024-05-23 22:47:41.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:41.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:41.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:41.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:41.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:41.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4602ms +2024-05-23 22:47:41.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:41.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0875ms +2024-05-23 22:47:43.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:43.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:43.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4971ms +2024-05-23 22:47:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:47.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:47.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7486ms +2024-05-23 22:47:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0657ms +2024-05-23 22:47:51.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:51.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0018ms +2024-05-23 22:47:56.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:56.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:56.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:56.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:56.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:56.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0476ms +2024-05-23 22:47:56.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:56.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1852ms +2024-05-23 22:47:58.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:47:58.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:58.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:47:58.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1313ms +2024-05-23 22:48:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:02.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7401ms +2024-05-23 22:48:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:04.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:04.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4149ms +2024-05-23 22:48:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:06.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:06.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4142ms +2024-05-23 22:48:11.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:11.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:11.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:11.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:11.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:11.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4478ms +2024-05-23 22:48:11.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:11.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6576ms +2024-05-23 22:48:13.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:13.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:13.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0141ms +2024-05-23 22:48:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:17.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:17.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.4607ms +2024-05-23 22:48:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:19.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.761ms +2024-05-23 22:48:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:21.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:21.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8455ms +2024-05-23 22:48:26.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:26.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:26.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:26.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:26.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:26.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2602ms +2024-05-23 22:48:26.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:26.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.404ms +2024-05-23 22:48:28.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:28.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:28.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8056ms +2024-05-23 22:48:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:32.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:32.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7117ms +2024-05-23 22:48:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:34.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8467ms +2024-05-23 22:48:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:36.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:36.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.86ms +2024-05-23 22:48:41.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:41.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:41.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:41.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:41.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:41.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8844ms +2024-05-23 22:48:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2849ms +2024-05-23 22:48:43.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:43.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:43.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7715ms +2024-05-23 22:48:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6563ms +2024-05-23 22:48:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:49.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:49.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.573ms +2024-05-23 22:48:51.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:51.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:51.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3528ms +2024-05-23 22:48:56.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:56.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:56.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:56.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:56.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:56.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5376ms +2024-05-23 22:48:56.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:56.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3861ms +2024-05-23 22:48:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:48:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:58.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:48:58.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0775ms +2024-05-23 22:49:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3571ms +2024-05-23 22:49:04.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:04.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:04.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1357ms +2024-05-23 22:49:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:06.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4739ms +2024-05-23 22:49:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:11.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:11.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:11.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3059ms +2024-05-23 22:49:11.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:11.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4058ms +2024-05-23 22:49:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5459ms +2024-05-23 22:49:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:17.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7748ms +2024-05-23 22:49:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2218ms +2024-05-23 22:49:21.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:21.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:21.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9196ms +2024-05-23 22:49:26.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:26.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:26.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:26.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:26.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3881ms +2024-05-23 22:49:26.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:26.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2624ms +2024-05-23 22:49:28.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:28.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:28.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:28.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6877ms +2024-05-23 22:49:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:32.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.75ms +2024-05-23 22:49:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:34.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:34.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:34.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3549ms +2024-05-23 22:49:36.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:36.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1346ms +2024-05-23 22:49:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:41.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:41.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:41.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:41.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:41.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8143ms +2024-05-23 22:49:42.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:42.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.2244ms +2024-05-23 22:49:43.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:43.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:43.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:43.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2731ms +2024-05-23 22:49:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:47.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:47.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8218ms +2024-05-23 22:49:49.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:49.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:49.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:49.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6856ms +2024-05-23 22:49:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6657ms +2024-05-23 22:49:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:56.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:56.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:56.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:56.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:56.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2648ms +2024-05-23 22:49:56.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:56.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3551ms +2024-05-23 22:49:58.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:49:58.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:49:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0119ms +2024-05-23 22:50:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:02.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:02.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5415ms +2024-05-23 22:50:04.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:04.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4772ms +2024-05-23 22:50:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:06.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:06.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6574ms +2024-05-23 22:50:11.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:11.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:11.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:11.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4775ms +2024-05-23 22:50:11.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:11.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2981ms +2024-05-23 22:50:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:13.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:13.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9352ms +2024-05-23 22:50:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:17.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:17.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2185ms +2024-05-23 22:50:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9743ms +2024-05-23 22:50:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:21.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8353ms +2024-05-23 22:50:26.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:26.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:26.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:26.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7778ms +2024-05-23 22:50:26.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:26.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6546ms +2024-05-23 22:50:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:28.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:28.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:28.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5748ms +2024-05-23 22:50:31.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:31.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:31.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:31.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3938ms +2024-05-23 22:50:32.603 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:32.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8004ms +2024-05-23 22:50:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3833ms +2024-05-23 22:50:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:32.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4879ms +2024-05-23 22:50:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6548ms +2024-05-23 22:50:34.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:34.560 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2093ms +2024-05-23 22:50:34.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:34.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8248ms +2024-05-23 22:50:34.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:34.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:34.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9304ms +2024-05-23 22:50:36.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:36.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8021ms +2024-05-23 22:50:41.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:41.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:41.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:41.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:41.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:41.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5346ms +2024-05-23 22:50:41.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:41.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3971ms +2024-05-23 22:50:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:43.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:43.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:43.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2961ms +2024-05-23 22:50:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:47.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:47.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6443ms +2024-05-23 22:50:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:47.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7496ms +2024-05-23 22:50:49.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:49.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:49.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:49.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1254ms +2024-05-23 22:50:49.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:49.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:49.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:49.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9015ms +2024-05-23 22:50:51.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:51.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:51.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:51.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6274ms +2024-05-23 22:50:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:56.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:56.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:56.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:56.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1243ms +2024-05-23 22:50:56.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:56.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8481ms +2024-05-23 22:50:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:50:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:58.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:50:58.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5392ms +2024-05-23 22:51:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 47.8281ms +2024-05-23 22:51:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3905ms +2024-05-23 22:51:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:04.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:04.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:04.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9627ms +2024-05-23 22:51:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:04.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:04.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6664ms +2024-05-23 22:51:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:06.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:06.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:06.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6996ms +2024-05-23 22:51:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:11.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:11.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:11.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:11.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6712ms +2024-05-23 22:51:12.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:12.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.9269ms +2024-05-23 22:51:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1136ms +2024-05-23 22:51:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:17.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:17.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5194ms +2024-05-23 22:51:17.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:17.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:17.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:17.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8944ms +2024-05-23 22:51:19.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:19.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:19.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:19.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6798ms +2024-05-23 22:51:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:19.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:19.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:19.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.274ms +2024-05-23 22:51:21.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:21.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:21.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:21.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4356ms +2024-05-23 22:51:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:26.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:26.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:26.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:26.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7773ms +2024-05-23 22:51:26.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:26.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6723ms +2024-05-23 22:51:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:28.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:28.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:28.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5183ms +2024-05-23 22:51:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:32.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:32.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2383ms +2024-05-23 22:51:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:32.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:32.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8543ms +2024-05-23 22:51:34.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:34.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:34.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:34.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5158ms +2024-05-23 22:51:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:34.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:34.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:34.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4976ms +2024-05-23 22:51:36.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:36.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:36.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:36.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.666ms +2024-05-23 22:51:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:41.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:41.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:41.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:41.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:41.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7141ms +2024-05-23 22:51:41.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:41.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2881ms +2024-05-23 22:51:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:43.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:43.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:43.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8382ms +2024-05-23 22:51:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:47.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:47.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8404ms +2024-05-23 22:51:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:47.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:47.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4427ms +2024-05-23 22:51:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:49.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:49.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:49.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1241ms +2024-05-23 22:51:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:49.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7799ms +2024-05-23 22:51:51.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:51.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:51.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6515ms +2024-05-23 22:51:56.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:56.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:56.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:56.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:56.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0503ms +2024-05-23 22:51:56.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:56.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8814ms +2024-05-23 22:51:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:51:58.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:58.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:51:58.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0261ms +2024-05-23 22:52:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:02.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:02.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:02.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4711ms +2024-05-23 22:52:02.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:02.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:02.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5065ms +2024-05-23 22:52:04.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:04.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:04.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:04.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9063ms +2024-05-23 22:52:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:04.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:04.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:04.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.152ms +2024-05-23 22:52:06.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:06.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:06.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:06.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0192ms +2024-05-23 22:52:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:11.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:11.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:11.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0547ms +2024-05-23 22:52:11.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:11.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.2097ms +2024-05-23 22:52:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:13.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:13.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0864ms +2024-05-23 22:52:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:17.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1691ms +2024-05-23 22:52:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:17.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:17.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3254ms +2024-05-23 22:52:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7286ms +2024-05-23 22:52:19.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:19.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:19.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:19.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1651ms +2024-05-23 22:52:21.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:21.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:21.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:21.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6923ms +2024-05-23 22:52:26.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:26.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:26.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:26.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:26.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:26.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1177ms +2024-05-23 22:52:26.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:26.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8737ms +2024-05-23 22:52:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:28.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:28.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:28.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1014ms +2024-05-23 22:52:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:32.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:32.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2718ms +2024-05-23 22:52:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:32.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:32.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:32.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2234ms +2024-05-23 22:52:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.927ms +2024-05-23 22:52:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7943ms +2024-05-23 22:52:36.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:36.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:36.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3065ms +2024-05-23 22:52:41.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:41.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:41.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:41.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:41.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:41.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4559ms +2024-05-23 22:52:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:41.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7485ms +2024-05-23 22:52:43.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:43.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:43.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:43.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9188ms +2024-05-23 22:52:47.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:47.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:47.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0783ms +2024-05-23 22:52:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:47.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4474ms +2024-05-23 22:52:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:49.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:49.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8805ms +2024-05-23 22:52:49.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:49.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3637ms +2024-05-23 22:52:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:51.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:51.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1177ms +2024-05-23 22:52:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:56.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:56.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:56.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:56.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:56.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9069ms +2024-05-23 22:52:56.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:56.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4604ms +2024-05-23 22:52:58.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:52:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:58.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:52:58.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8792ms +2024-05-23 22:53:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:02.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:02.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8392ms +2024-05-23 22:53:02.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6272ms +2024-05-23 22:53:04.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:04.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:04.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:04.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8768ms +2024-05-23 22:53:04.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:04.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:04.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:04.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2578ms +2024-05-23 22:53:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:06.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4343ms +2024-05-23 22:53:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:11.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:11.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:11.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0438ms +2024-05-23 22:53:11.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1982ms +2024-05-23 22:53:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:13.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7548ms +2024-05-23 22:53:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:17.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:17.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7883ms +2024-05-23 22:53:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:17.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:17.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2552ms +2024-05-23 22:53:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:19.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:19.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1515ms +2024-05-23 22:53:19.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:19.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:19.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:19.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9699ms +2024-05-23 22:53:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3664ms +2024-05-23 22:53:26.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:26.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:26.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:26.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:26.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:26.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8869ms +2024-05-23 22:53:26.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:26.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1572ms +2024-05-23 22:53:28.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:28.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:28.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.474ms +2024-05-23 22:53:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:32.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:32.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0969ms +2024-05-23 22:53:32.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8787ms +2024-05-23 22:53:34.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1184ms +2024-05-23 22:53:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6863ms +2024-05-23 22:53:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:36.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:36.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:36.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2745ms +2024-05-23 22:53:39.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:39.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:39.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:39.190 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6295ms +2024-05-23 22:53:40.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:40.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:40.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:40.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.055ms +2024-05-23 22:53:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:40.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:40.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5735ms +2024-05-23 22:53:41.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:41.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:41.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:41.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:41.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7692ms +2024-05-23 22:53:41.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:41.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2796ms +2024-05-23 22:53:42.712 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:42.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6968ms +2024-05-23 22:53:42.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:42.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2026ms +2024-05-23 22:53:42.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:42.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:42.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6017ms +2024-05-23 22:53:43.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:43.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:43.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3644ms +2024-05-23 22:53:44.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:44.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:44.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:44.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1397ms +2024-05-23 22:53:44.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:44.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5704ms +2024-05-23 22:53:45.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:45.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.415 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.221ms +2024-05-23 22:53:45.453 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:45.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.480 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1591ms +2024-05-23 22:53:45.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:45.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:45.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2642ms +2024-05-23 22:53:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:47.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:47.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:47.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.596ms +2024-05-23 22:53:47.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:47.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:47.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:47.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5051ms +2024-05-23 22:53:49.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:49.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:49.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:49.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6484ms +2024-05-23 22:53:49.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:49.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:49.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:49.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.28ms +2024-05-23 22:53:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:51.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1477ms +2024-05-23 22:53:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:55.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0874ms +2024-05-23 22:53:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:56.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:56.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:56.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:56.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1522ms +2024-05-23 22:53:56.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:56.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6974ms +2024-05-23 22:53:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:57.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:57.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5001ms +2024-05-23 22:53:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:58.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:58.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8953ms +2024-05-23 22:53:59.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:53:59.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:59.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:53:59.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1616ms +2024-05-23 22:54:00.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:00.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:00.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:00.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7609ms +2024-05-23 22:54:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:02.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2153ms +2024-05-23 22:54:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:02.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:02.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8509ms +2024-05-23 22:54:04.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:04.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:04.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1442ms +2024-05-23 22:54:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:04.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:04.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6412ms +2024-05-23 22:54:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:06.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:06.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:06.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5498ms +2024-05-23 22:54:10.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:10.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:10.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:10.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5647ms +2024-05-23 22:54:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:11.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:11.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:11.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:11.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7265ms +2024-05-23 22:54:11.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1668ms +2024-05-23 22:54:12.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:12.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:12.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:12.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2942ms +2024-05-23 22:54:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:13.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:13.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9512ms +2024-05-23 22:54:14.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:14.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:14.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:14.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8622ms +2024-05-23 22:54:15.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:15.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:15.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:15.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8838ms +2024-05-23 22:54:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:17.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:17.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5875ms +2024-05-23 22:54:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:17.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:17.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3242ms +2024-05-23 22:54:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5325ms +2024-05-23 22:54:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:19.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:19.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2603ms +2024-05-23 22:54:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:21.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:21.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7138ms +2024-05-23 22:54:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:25.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:25.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4841ms +2024-05-23 22:54:26.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:26.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:26.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:26.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:26.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:26.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0204ms +2024-05-23 22:54:26.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:26.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1379ms +2024-05-23 22:54:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:27.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:27.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1623ms +2024-05-23 22:54:28.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:28.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:28.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:28.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3101ms +2024-05-23 22:54:29.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:29.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:29.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:29.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2195ms +2024-05-23 22:54:30.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:30.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:30.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:30.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3104ms +2024-05-23 22:54:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:32.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5031ms +2024-05-23 22:54:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0651ms +2024-05-23 22:54:34.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:34.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:34.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:34.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8917ms +2024-05-23 22:54:34.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:34.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5102ms +2024-05-23 22:54:36.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:36.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:36.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:36.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6497ms +2024-05-23 22:54:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:40.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:40.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:40.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7217ms +2024-05-23 22:54:41.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:41.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:41.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:41.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:41.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9033ms +2024-05-23 22:54:41.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:41.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8999ms +2024-05-23 22:54:42.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:42.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:42.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:42.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9391ms +2024-05-23 22:54:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:43.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:43.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:43.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4309ms +2024-05-23 22:54:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:44.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3289ms +2024-05-23 22:54:45.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:45.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:45.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:45.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8056ms +2024-05-23 22:54:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:47.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:47.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4309ms +2024-05-23 22:54:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:47.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:47.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:47.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1903ms +2024-05-23 22:54:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:49.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1391ms +2024-05-23 22:54:49.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:49.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:49.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2874ms +2024-05-23 22:54:51.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:51.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:51.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:51.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7022ms +2024-05-23 22:54:55.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:55.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:55.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:55.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7369ms +2024-05-23 22:54:56.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:56.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:56.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:56.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:56.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0246ms +2024-05-23 22:54:56.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:56.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4331ms +2024-05-23 22:54:57.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:57.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:57.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:57.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1221ms +2024-05-23 22:54:58.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2239ms +2024-05-23 22:54:59.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:54:59.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:54:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0238ms +2024-05-23 22:55:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:00.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7771ms +2024-05-23 22:55:02.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:02.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:02.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:02.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0187ms +2024-05-23 22:55:02.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:02.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:02.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:02.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.323ms +2024-05-23 22:55:04.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:04.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:04.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:04.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8115ms +2024-05-23 22:55:04.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:04.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:04.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:04.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7464ms +2024-05-23 22:55:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:06.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:06.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:06.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6549ms +2024-05-23 22:55:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:10.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:10.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:10.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8844ms +2024-05-23 22:55:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:11.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:11.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:11.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:11.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2364ms +2024-05-23 22:55:11.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2023ms +2024-05-23 22:55:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7538ms +2024-05-23 22:55:13.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:13.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:13.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4146ms +2024-05-23 22:55:14.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:14.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:14.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:14.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2416ms +2024-05-23 22:55:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:15.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:15.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:15.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7897ms +2024-05-23 22:55:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:17.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9922ms +2024-05-23 22:55:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:17.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:17.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.2326ms +2024-05-23 22:55:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:19.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:19.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6154ms +2024-05-23 22:55:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5318ms +2024-05-23 22:55:21.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:21.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:21.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:21.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1186ms +2024-05-23 22:55:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:25.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:25.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3333ms +2024-05-23 22:55:26.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:26.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:26.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:26.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:26.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.793ms +2024-05-23 22:55:26.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:26.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2649ms +2024-05-23 22:55:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:27.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:27.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2864ms +2024-05-23 22:55:28.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:28.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:28.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:28.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8162ms +2024-05-23 22:55:29.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:29.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:29.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:29.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5583ms +2024-05-23 22:55:30.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:30.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:30.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:30.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6613ms +2024-05-23 22:55:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:32.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:32.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:32.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1085ms +2024-05-23 22:55:32.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1313ms +2024-05-23 22:55:34.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:34.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:34.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:34.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3878ms +2024-05-23 22:55:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3836ms +2024-05-23 22:55:36.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:36.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:36.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:36.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9241ms +2024-05-23 22:55:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:40.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:40.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7522ms +2024-05-23 22:55:41.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:41.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:41.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:41.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:41.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1268ms +2024-05-23 22:55:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:41.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.745ms +2024-05-23 22:55:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:42.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:42.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8104ms +2024-05-23 22:55:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:43.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:43.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3932ms +2024-05-23 22:55:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:44.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:44.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:44.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8159ms +2024-05-23 22:55:45.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:45.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:45.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8804ms +2024-05-23 22:55:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:47.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8973ms +2024-05-23 22:55:47.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:47.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:47.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:47.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1683ms +2024-05-23 22:55:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:49.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:49.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9267ms +2024-05-23 22:55:49.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:49.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:49.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2506ms +2024-05-23 22:55:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:51.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9991ms +2024-05-23 22:55:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:55.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:55.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7464ms +2024-05-23 22:55:56.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:56.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:56.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:56.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:56.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:56.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.718ms +2024-05-23 22:55:56.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:56.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0058ms +2024-05-23 22:55:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:57.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:57.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8656ms +2024-05-23 22:55:58.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:58.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:58.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5447ms +2024-05-23 22:55:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:55:59.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:59.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:55:59.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9606ms +2024-05-23 22:56:00.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:00.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:00.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:00.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7041ms +2024-05-23 22:56:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:02.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:02.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6006ms +2024-05-23 22:56:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4186ms +2024-05-23 22:56:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:04.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:04.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0993ms +2024-05-23 22:56:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:04.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:04.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.758ms +2024-05-23 22:56:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:06.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:06.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:06.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4893ms +2024-05-23 22:56:10.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:10.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:10.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:10.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8745ms +2024-05-23 22:56:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:11.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:11.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7052ms +2024-05-23 22:56:11.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:11.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0627ms +2024-05-23 22:56:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:12.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:12.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2703ms +2024-05-23 22:56:13.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2968ms +2024-05-23 22:56:14.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:14.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:14.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:14.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9139ms +2024-05-23 22:56:15.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:15.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:15.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:15.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1021ms +2024-05-23 22:56:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:17.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:17.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0629ms +2024-05-23 22:56:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:17.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:17.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 53.2896ms +2024-05-23 22:56:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:19.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8565ms +2024-05-23 22:56:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:19.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:19.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8078ms +2024-05-23 22:56:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:21.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6846ms +2024-05-23 22:56:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:25.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:25.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9284ms +2024-05-23 22:56:26.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:26.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:26.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:26.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:26.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1181ms +2024-05-23 22:56:26.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:26.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6069ms +2024-05-23 22:56:27.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:27.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:27.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:27.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3732ms +2024-05-23 22:56:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:28.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:28.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4043ms +2024-05-23 22:56:29.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:29.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:29.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:29.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1324ms +2024-05-23 22:56:30.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:30.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:30.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:30.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.401ms +2024-05-23 22:56:32.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:32.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:32.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:32.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6444ms +2024-05-23 22:56:32.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:32.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:32.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:32.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8096ms +2024-05-23 22:56:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1069ms +2024-05-23 22:56:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:34.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:34.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0484ms +2024-05-23 22:56:36.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:36.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:36.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3169ms +2024-05-23 22:56:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:40.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:40.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7375ms +2024-05-23 22:56:41.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:41.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:41.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:41.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:41.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:41.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6174ms +2024-05-23 22:56:41.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2019ms +2024-05-23 22:56:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:42.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:42.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0923ms +2024-05-23 22:56:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:43.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:43.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:43.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7548ms +2024-05-23 22:56:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:44.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1636ms +2024-05-23 22:56:45.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:45.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:45.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:45.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6528ms +2024-05-23 22:56:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:47.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:47.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6309ms +2024-05-23 22:56:47.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:47.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:47.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:47.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3252ms +2024-05-23 22:56:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:49.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1293ms +2024-05-23 22:56:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:49.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:49.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:49.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5683ms +2024-05-23 22:56:51.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:51.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:51.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:51.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0276ms +2024-05-23 22:56:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:55.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:55.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4786ms +2024-05-23 22:56:56.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:56.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:56.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:56.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:56.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:56.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.909ms +2024-05-23 22:56:56.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:56.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4349ms +2024-05-23 22:56:57.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:57.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:57.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:57.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5631ms +2024-05-23 22:56:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3824ms +2024-05-23 22:56:59.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:56:59.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:59.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:56:59.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4369ms +2024-05-23 22:57:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:00.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9172ms +2024-05-23 22:57:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:02.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:02.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:02.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6423ms +2024-05-23 22:57:02.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:02.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:02.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:02.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3971ms +2024-05-23 22:57:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:04.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:04.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2421ms +2024-05-23 22:57:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:04.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:04.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:04.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.056ms +2024-05-23 22:57:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:06.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:06.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0378ms +2024-05-23 22:57:10.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:10.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:10.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:10.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1558ms +2024-05-23 22:57:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:11.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:11.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:11.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8112ms +2024-05-23 22:57:11.999 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:11.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.2893ms +2024-05-23 22:57:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1245ms +2024-05-23 22:57:13.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:13.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:13.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8658ms +2024-05-23 22:57:14.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:14.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:14.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:14.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3969ms +2024-05-23 22:57:15.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:15.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:15.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6374ms +2024-05-23 22:57:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:17.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:17.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3608ms +2024-05-23 22:57:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:17.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:17.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 47.1713ms +2024-05-23 22:57:19.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:19.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:19.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2487ms +2024-05-23 22:57:19.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:19.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:19.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:19.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4225ms +2024-05-23 22:57:21.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:21.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0791ms +2024-05-23 22:57:25.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:25.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:25.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:25.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9966ms +2024-05-23 22:57:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:26.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:26.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:26.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:26.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4725ms +2024-05-23 22:57:26.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:26.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2987ms +2024-05-23 22:57:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:27.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:27.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.1442ms +2024-05-23 22:57:28.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:28.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:28.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9289ms +2024-05-23 22:57:29.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:29.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:29.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:29.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9153ms +2024-05-23 22:57:30.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:30.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:30.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:30.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8172ms +2024-05-23 22:57:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:32.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8671ms +2024-05-23 22:57:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:32.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:32.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8815ms +2024-05-23 22:57:34.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:34.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:34.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:34.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2406ms +2024-05-23 22:57:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3644ms +2024-05-23 22:57:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:36.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:36.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9513ms +2024-05-23 22:57:40.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:40.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:40.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:40.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 497.712ms +2024-05-23 22:57:41.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:41.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:41.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:41.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8371ms +2024-05-23 22:57:41.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:41.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0059ms +2024-05-23 22:57:42.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:42.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:42.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:42.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1742ms +2024-05-23 22:57:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:43.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:43.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7736ms +2024-05-23 22:57:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:44.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2167ms +2024-05-23 22:57:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.921ms +2024-05-23 22:57:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:47.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0186ms +2024-05-23 22:57:47.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:47.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:47.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:47.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1635ms +2024-05-23 22:57:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:49.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1252ms +2024-05-23 22:57:49.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:49.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2255ms +2024-05-23 22:57:51.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:51.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:51.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:51.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0532ms +2024-05-23 22:57:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:55.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:55.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1063ms +2024-05-23 22:57:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:56.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:56.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:56.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:56.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2906ms +2024-05-23 22:57:56.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:56.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8168ms +2024-05-23 22:57:57.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:57.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:57.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0689ms +2024-05-23 22:57:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4829ms +2024-05-23 22:57:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:57:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:59.333 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:57:59.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0772ms +2024-05-23 22:58:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1201ms +2024-05-23 22:58:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:02.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:02.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8149ms +2024-05-23 22:58:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4114ms +2024-05-23 22:58:04.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:04.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:04.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2547ms +2024-05-23 22:58:04.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:04.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:04.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:04.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8537ms +2024-05-23 22:58:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6366ms +2024-05-23 22:58:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:10.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:10.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.241ms +2024-05-23 22:58:11.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:11.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:11.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9006ms +2024-05-23 22:58:11.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:11.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.451ms +2024-05-23 22:58:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0961ms +2024-05-23 22:58:13.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:13.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:13.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5978ms +2024-05-23 22:58:14.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:14.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:14.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:14.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3704ms +2024-05-23 22:58:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:15.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:15.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:15.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1566ms +2024-05-23 22:58:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:17.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5043ms +2024-05-23 22:58:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:17.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:17.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3359ms +2024-05-23 22:58:19.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:19.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5532ms +2024-05-23 22:58:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4134ms +2024-05-23 22:58:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:21.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5973ms +2024-05-23 22:58:25.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:25.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:25.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:25.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8158ms +2024-05-23 22:58:26.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:26.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:26.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:26.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:26.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4904ms +2024-05-23 22:58:26.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:26.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9341ms +2024-05-23 22:58:27.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:27.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:27.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:27.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5097ms +2024-05-23 22:58:28.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:28.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4745ms +2024-05-23 22:58:29.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:29.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:29.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:29.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1534ms +2024-05-23 22:58:30.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:30.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:30.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1119ms +2024-05-23 22:58:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:32.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:32.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8512ms +2024-05-23 22:58:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0807ms +2024-05-23 22:58:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:34.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3461ms +2024-05-23 22:58:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1373ms +2024-05-23 22:58:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:36.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:36.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6991ms +2024-05-23 22:58:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:40.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:40.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6581ms +2024-05-23 22:58:41.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:41.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:41.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:41.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:41.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:41.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8786ms +2024-05-23 22:58:41.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:41.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9264ms +2024-05-23 22:58:42.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:42.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:42.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:42.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3318ms +2024-05-23 22:58:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:43.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:43.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:43.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.511ms +2024-05-23 22:58:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:44.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:44.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:44.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5026ms +2024-05-23 22:58:45.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:45.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3614ms +2024-05-23 22:58:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:47.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0087ms +2024-05-23 22:58:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:47.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:47.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.5843ms +2024-05-23 22:58:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.091ms +2024-05-23 22:58:49.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:49.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6026ms +2024-05-23 22:58:51.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:51.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:51.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:51.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2821ms +2024-05-23 22:58:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:55.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:55.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6274ms +2024-05-23 22:58:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:56.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:56.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:56.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:56.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:56.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9314ms +2024-05-23 22:58:56.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:56.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2602ms +2024-05-23 22:58:57.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:57.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:57.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:57.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0062ms +2024-05-23 22:58:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:58.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:58.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0681ms +2024-05-23 22:58:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:58:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:59.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:58:59.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1889ms +2024-05-23 22:59:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:00.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4709ms +2024-05-23 22:59:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:02.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:02.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0658ms +2024-05-23 22:59:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3786ms +2024-05-23 22:59:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5093ms +2024-05-23 22:59:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:04.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:04.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2169ms +2024-05-23 22:59:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6871ms +2024-05-23 22:59:10.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:10.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:10.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:10.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2093ms +2024-05-23 22:59:11.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:11.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:11.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:11.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:11.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8212ms +2024-05-23 22:59:11.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:11.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5037ms +2024-05-23 22:59:12.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:12.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:12.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:12.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8157ms +2024-05-23 22:59:13.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:13.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3174ms +2024-05-23 22:59:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:14.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:14.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4883ms +2024-05-23 22:59:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:15.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:15.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:15.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.818ms +2024-05-23 22:59:17.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:17.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:17.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8745ms +2024-05-23 22:59:17.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:17.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:17.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:17.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3248ms +2024-05-23 22:59:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:19.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:19.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:19.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9871ms +2024-05-23 22:59:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:19.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:19.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:19.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3381ms +2024-05-23 22:59:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:21.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.389ms +2024-05-23 22:59:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:25.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:25.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5923ms +2024-05-23 22:59:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:26.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:26.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:26.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:26.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:26.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.666ms +2024-05-23 22:59:26.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:26.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0289ms +2024-05-23 22:59:27.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:27.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:27.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:27.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5751ms +2024-05-23 22:59:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:28.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:28.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:28.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.436ms +2024-05-23 22:59:29.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:29.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:29.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6251ms +2024-05-23 22:59:30.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:30.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:30.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3435ms +2024-05-23 22:59:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:32.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:32.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3965ms +2024-05-23 22:59:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8895ms +2024-05-23 22:59:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:34.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1081ms +2024-05-23 22:59:34.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:34.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3985ms +2024-05-23 22:59:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:36.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:36.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:36.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.558ms +2024-05-23 22:59:40.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:40.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:40.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:40.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2595ms +2024-05-23 22:59:41.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:41.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:41.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:41.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5236ms +2024-05-23 22:59:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5092ms +2024-05-23 22:59:42.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:42.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:42.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:42.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5338ms +2024-05-23 22:59:43.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:43.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:43.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:43.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5899ms +2024-05-23 22:59:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:44.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:44.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:44.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.709ms +2024-05-23 22:59:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:45.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:45.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.4219ms +2024-05-23 22:59:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:47.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:47.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8955ms +2024-05-23 22:59:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:47.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3184ms +2024-05-23 22:59:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:49.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:49.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:49.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1718ms +2024-05-23 22:59:49.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:49.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:49.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:49.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.571ms +2024-05-23 22:59:51.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:51.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:51.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:51.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8532ms +2024-05-23 22:59:55.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:55.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:55.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4038ms +2024-05-23 22:59:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:56.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:56.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:56.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:56.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:56.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4614ms +2024-05-23 22:59:56.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:56.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8589ms +2024-05-23 22:59:57.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:57.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:57.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:57.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9834ms +2024-05-23 22:59:58.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:58.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:58.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4707ms +2024-05-23 22:59:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 22:59:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:59.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 22:59:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9569ms +2024-05-23 23:00:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:00.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:00.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 106.9359ms +2024-05-23 23:00:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:02.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:02.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 52.028ms +2024-05-23 23:00:02.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:02.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:02.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:02.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.4862ms +2024-05-23 23:00:04.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:04.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:04.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0314ms +2024-05-23 23:00:04.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:04.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:04.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:04.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3022ms +2024-05-23 23:00:06.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:06.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6052ms +2024-05-23 23:00:10.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:10.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:10.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:10.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.2692ms +2024-05-23 23:00:11.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:11.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:11.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:11.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:11.997 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.201ms +2024-05-23 23:00:11.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:11.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 63.4149ms +2024-05-23 23:00:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:12.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:12.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1359ms +2024-05-23 23:00:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:13.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:13.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:13.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.0494ms +2024-05-23 23:00:14.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:14.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:14.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:14.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1984ms +2024-05-23 23:00:15.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:15.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:15.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:15.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6656ms +2024-05-23 23:00:17.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:17.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:17.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:17.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4527ms +2024-05-23 23:00:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:17.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:17.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.7457ms +2024-05-23 23:00:19.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:19.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:19.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3238ms +2024-05-23 23:00:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:19.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:19.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 51.2355ms +2024-05-23 23:00:21.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:21.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:21.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8808ms +2024-05-23 23:00:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:25.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:25.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7166ms +2024-05-23 23:00:26.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:26.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:26.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:26.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:26.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.1694ms +2024-05-23 23:00:26.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:26.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.317ms +2024-05-23 23:00:27.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:27.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:27.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:27.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4672ms +2024-05-23 23:00:28.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:28.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:28.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.6903ms +2024-05-23 23:00:29.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:29.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:29.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.2482ms +2024-05-23 23:00:30.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:30.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:30.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5136ms +2024-05-23 23:00:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2895ms +2024-05-23 23:00:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2084ms +2024-05-23 23:00:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1886ms +2024-05-23 23:00:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:34.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3903ms +2024-05-23 23:00:36.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:36.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.46ms +2024-05-23 23:00:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:40.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:40.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0974ms +2024-05-23 23:00:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:41.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:41.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:41.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5353ms +2024-05-23 23:00:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:42.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 60.786ms +2024-05-23 23:00:42.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:42.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:42.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:42.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1871ms +2024-05-23 23:00:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:43.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:43.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.846ms +2024-05-23 23:00:44.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:44.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:44.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:44.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2321ms +2024-05-23 23:00:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:45.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:45.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3312ms +2024-05-23 23:00:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:47.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2543ms +2024-05-23 23:00:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:47.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:47.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1352ms +2024-05-23 23:00:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:49.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:49.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:49.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6881ms +2024-05-23 23:00:49.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:49.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3681ms +2024-05-23 23:00:51.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:51.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:51.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:51.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6863ms +2024-05-23 23:00:55.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:55.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8948ms +2024-05-23 23:00:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:56.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:56.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:56.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:56.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:56.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7463ms +2024-05-23 23:00:56.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:56.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8839ms +2024-05-23 23:00:57.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:57.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:57.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:57.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9901ms +2024-05-23 23:00:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:58.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:58.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6332ms +2024-05-23 23:00:59.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:00:59.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:59.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:00:59.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8788ms +2024-05-23 23:01:00.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:00.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:00.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:00.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4033ms +2024-05-23 23:01:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:02.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.995ms +2024-05-23 23:01:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2804ms +2024-05-23 23:01:04.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:04.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:04.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:04.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3422ms +2024-05-23 23:01:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:04.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:04.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6985ms +2024-05-23 23:01:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8231ms +2024-05-23 23:01:10.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:10.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:10.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:10.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3243ms +2024-05-23 23:01:11.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:11.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:11.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6314ms +2024-05-23 23:01:11.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4351ms +2024-05-23 23:01:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4943ms +2024-05-23 23:01:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:13.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0273ms +2024-05-23 23:01:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:14.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:14.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2496ms +2024-05-23 23:01:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:15.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:15.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:15.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8327ms +2024-05-23 23:01:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:17.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:17.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1856ms +2024-05-23 23:01:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:17.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:17.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0733ms +2024-05-23 23:01:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:19.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:19.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1381ms +2024-05-23 23:01:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:19.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6148ms +2024-05-23 23:01:21.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:21.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:21.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5751ms +2024-05-23 23:01:25.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:25.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:25.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:25.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8622ms +2024-05-23 23:01:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:26.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:26.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:26.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:26.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:26.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1669ms +2024-05-23 23:01:26.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:26.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1904ms +2024-05-23 23:01:27.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:27.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:27.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:27.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8214ms +2024-05-23 23:01:28.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:28.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:28.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:28.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7767ms +2024-05-23 23:01:29.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:29.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:29.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:29.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2782ms +2024-05-23 23:01:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:30.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:30.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5096ms +2024-05-23 23:01:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:32.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:32.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4832ms +2024-05-23 23:01:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:32.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:32.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0148ms +2024-05-23 23:01:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:34.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.529ms +2024-05-23 23:01:34.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:34.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:34.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2614ms +2024-05-23 23:01:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:36.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7148ms +2024-05-23 23:01:40.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:40.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:40.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:40.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6224ms +2024-05-23 23:01:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:41.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:41.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:41.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:41.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5013ms +2024-05-23 23:01:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8857ms +2024-05-23 23:01:42.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:42.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:42.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:42.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2958ms +2024-05-23 23:01:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:43.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:43.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5652ms +2024-05-23 23:01:44.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:44.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:44.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:44.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2943ms +2024-05-23 23:01:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:45.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:45.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4311ms +2024-05-23 23:01:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:47.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:47.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1833ms +2024-05-23 23:01:47.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:47.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:47.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:47.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.467ms +2024-05-23 23:01:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8534ms +2024-05-23 23:01:49.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:49.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:49.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:49.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7038ms +2024-05-23 23:01:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:51.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9781ms +2024-05-23 23:01:55.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:55.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:55.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:55.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9625ms +2024-05-23 23:01:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:56.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:56.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:56.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:56.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:56.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.121ms +2024-05-23 23:01:56.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:56.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2579ms +2024-05-23 23:01:57.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:57.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:57.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:57.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7169ms +2024-05-23 23:01:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:58.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:58.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:58.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1772ms +2024-05-23 23:01:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:01:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:01:59.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2644ms +2024-05-23 23:02:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:00.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0018ms +2024-05-23 23:02:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:02.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.48ms +2024-05-23 23:02:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:02.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.421ms +2024-05-23 23:02:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:04.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2831ms +2024-05-23 23:02:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:04.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:04.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7975ms +2024-05-23 23:02:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:06.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6951ms +2024-05-23 23:02:10.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:10.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:10.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:10.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2698ms +2024-05-23 23:02:11.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:11.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2052ms +2024-05-23 23:02:11.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:11.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3353ms +2024-05-23 23:02:12.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:12.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:12.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:12.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8689ms +2024-05-23 23:02:13.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:13.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:13.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:13.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4737ms +2024-05-23 23:02:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:14.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:14.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:14.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7427ms +2024-05-23 23:02:15.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:15.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:15.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:15.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5139ms +2024-05-23 23:02:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:17.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:17.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8745ms +2024-05-23 23:02:17.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:17.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:17.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7219ms +2024-05-23 23:02:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2361ms +2024-05-23 23:02:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:19.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1572ms +2024-05-23 23:02:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:21.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:21.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:21.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0872ms +2024-05-23 23:02:25.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:25.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:25.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:25.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1924ms +2024-05-23 23:02:26.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:26.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:26.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:26.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:26.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:26.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9367ms +2024-05-23 23:02:26.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:26.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8286ms +2024-05-23 23:02:27.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:27.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:27.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:27.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9548ms +2024-05-23 23:02:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:28.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:28.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4998ms +2024-05-23 23:02:29.300 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:29.301 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:29.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:29.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5186ms +2024-05-23 23:02:30.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:30.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:30.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5412ms +2024-05-23 23:02:32.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:32.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7353ms +2024-05-23 23:02:32.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.303ms +2024-05-23 23:02:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:34.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2022ms +2024-05-23 23:02:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:34.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1014ms +2024-05-23 23:02:36.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:36.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:36.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:36.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3666ms +2024-05-23 23:02:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:40.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:40.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1158ms +2024-05-23 23:02:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:41.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:41.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:41.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:41.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0759ms +2024-05-23 23:02:41.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:41.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3542ms +2024-05-23 23:02:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:42.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:42.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:42.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8895ms +2024-05-23 23:02:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:43.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:43.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9174ms +2024-05-23 23:02:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:44.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:44.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:44.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9509ms +2024-05-23 23:02:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:45.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:45.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9284ms +2024-05-23 23:02:47.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:47.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:47.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5407ms +2024-05-23 23:02:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:47.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:47.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7345ms +2024-05-23 23:02:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:49.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:49.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:49.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3624ms +2024-05-23 23:02:49.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:49.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:49.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:49.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5641ms +2024-05-23 23:02:51.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:51.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:51.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:51.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.903ms +2024-05-23 23:02:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:55.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0077ms +2024-05-23 23:02:56.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:56.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:56.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:56.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:56.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:56.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4981ms +2024-05-23 23:02:56.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:56.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6615ms +2024-05-23 23:02:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:57.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:57.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7213ms +2024-05-23 23:02:58.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:58.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:58.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3914ms +2024-05-23 23:02:59.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:02:59.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:59.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:02:59.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0067ms +2024-05-23 23:03:00.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:00.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:00.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:00.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4472ms +2024-05-23 23:03:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:02.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:02.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:02.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1112ms +2024-05-23 23:03:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4007ms +2024-05-23 23:03:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8102ms +2024-05-23 23:03:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:04.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:04.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9882ms +2024-05-23 23:03:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:06.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7247ms +2024-05-23 23:03:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:10.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:10.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0649ms +2024-05-23 23:03:11.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:11.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:11.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:11.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:11.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:11.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2803ms +2024-05-23 23:03:11.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:11.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.634ms +2024-05-23 23:03:12.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:12.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:12.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:12.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3117ms +2024-05-23 23:03:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:13.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:13.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7415ms +2024-05-23 23:03:14.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:14.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:14.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:14.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5322ms +2024-05-23 23:03:15.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:15.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:15.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:15.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.78ms +2024-05-23 23:03:17.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:17.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:17.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:17.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7777ms +2024-05-23 23:03:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:17.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:17.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3831ms +2024-05-23 23:03:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:19.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:19.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7922ms +2024-05-23 23:03:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3157ms +2024-05-23 23:03:21.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:21.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:21.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7244ms +2024-05-23 23:03:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:25.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:25.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5879ms +2024-05-23 23:03:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:26.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:26.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:26.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:26.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6817ms +2024-05-23 23:03:26.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:26.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0531ms +2024-05-23 23:03:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:27.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:27.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:27.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5631ms +2024-05-23 23:03:28.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:28.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:28.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4068ms +2024-05-23 23:03:29.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:29.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:29.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:29.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5445ms +2024-05-23 23:03:30.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:30.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:30.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:30.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.258ms +2024-05-23 23:03:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:32.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:32.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:32.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6533ms +2024-05-23 23:03:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:32.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:32.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0977ms +2024-05-23 23:03:34.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:34.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:34.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:34.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5307ms +2024-05-23 23:03:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:34.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3752ms +2024-05-23 23:03:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:36.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8144ms +2024-05-23 23:03:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:40.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:40.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.1081ms +2024-05-23 23:03:41.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:41.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:41.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:41.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:41.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:41.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1294ms +2024-05-23 23:03:41.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2795ms +2024-05-23 23:03:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:42.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:42.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4568ms +2024-05-23 23:03:43.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:43.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:43.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:43.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6633ms +2024-05-23 23:03:44.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:44.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:44.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:44.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1478ms +2024-05-23 23:03:45.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:45.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:45.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:45.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.4353ms +2024-05-23 23:03:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:47.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:47.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6783ms +2024-05-23 23:03:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:47.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.63ms +2024-05-23 23:03:49.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7857ms +2024-05-23 23:03:49.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:49.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:49.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:49.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0569ms +2024-05-23 23:03:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:51.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:51.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8989ms +2024-05-23 23:03:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:55.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:55.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.1234ms +2024-05-23 23:03:56.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:56.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:56.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:56.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:56.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:56.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8385ms +2024-05-23 23:03:56.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:56.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2639ms +2024-05-23 23:03:57.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:57.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:57.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4702ms +2024-05-23 23:03:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:58.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:58.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6692ms +2024-05-23 23:03:59.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:03:59.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:59.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:03:59.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2942ms +2024-05-23 23:04:00.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:00.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:00.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6206ms +2024-05-23 23:04:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:02.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:02.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4358ms +2024-05-23 23:04:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:02.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7769ms +2024-05-23 23:04:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:04.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1146ms +2024-05-23 23:04:04.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:04.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:04.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:04.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0523ms +2024-05-23 23:04:06.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:06.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:06.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:06.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1106ms +2024-05-23 23:04:10.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:10.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:10.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:10.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7804ms +2024-05-23 23:04:11.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:11.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:11.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5098ms +2024-05-23 23:04:11.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:11.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1252ms +2024-05-23 23:04:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:12.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:12.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.589ms +2024-05-23 23:04:13.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:13.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:13.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:13.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5638ms +2024-05-23 23:04:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:14.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:14.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:14.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0097ms +2024-05-23 23:04:15.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:15.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:15.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:15.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8517ms +2024-05-23 23:04:17.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:17.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:17.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:17.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9506ms +2024-05-23 23:04:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:17.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7456ms +2024-05-23 23:04:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:19.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:19.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5579ms +2024-05-23 23:04:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:19.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:19.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7213ms +2024-05-23 23:04:21.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:21.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:21.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3424ms +2024-05-23 23:04:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:25.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:25.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2106ms +2024-05-23 23:04:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:26.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:26.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2588ms +2024-05-23 23:04:26.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:26.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9852ms +2024-05-23 23:04:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:27.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:27.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.059ms +2024-05-23 23:04:28.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:28.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:28.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:28.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2022ms +2024-05-23 23:04:29.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:29.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:29.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2674ms +2024-05-23 23:04:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:30.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:30.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:30.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3959ms +2024-05-23 23:04:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4411ms +2024-05-23 23:04:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4726ms +2024-05-23 23:04:34.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:34.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3419ms +2024-05-23 23:04:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:34.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7777ms +2024-05-23 23:04:36.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:36.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:36.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:36.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1427ms +2024-05-23 23:04:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:40.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:40.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:40.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3221ms +2024-05-23 23:04:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:41.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:41.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:41.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:41.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:41.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9692ms +2024-05-23 23:04:41.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:41.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5474ms +2024-05-23 23:04:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:42.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:42.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5841ms +2024-05-23 23:04:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:43.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:43.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1196ms +2024-05-23 23:04:44.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:44.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:44.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:44.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9166ms +2024-05-23 23:04:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:45.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5264ms +2024-05-23 23:04:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:47.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:47.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.581ms +2024-05-23 23:04:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:47.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:47.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.0148ms +2024-05-23 23:04:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1086ms +2024-05-23 23:04:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:49.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:49.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:49.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3237ms +2024-05-23 23:04:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:51.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:51.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0089ms +2024-05-23 23:04:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:55.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8353ms +2024-05-23 23:04:56.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:56.934 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:56.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:56.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:56.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:56.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4579ms +2024-05-23 23:04:56.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:56.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7611ms +2024-05-23 23:04:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:57.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:57.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1409ms +2024-05-23 23:04:58.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:58.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:58.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2342ms +2024-05-23 23:04:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:04:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:59.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:04:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4315ms +2024-05-23 23:05:00.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:00.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:00.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8966ms +2024-05-23 23:05:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:02.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:02.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:02.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3197ms +2024-05-23 23:05:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:02.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1472ms +2024-05-23 23:05:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:04.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6724ms +2024-05-23 23:05:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:04.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:04.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0991ms +2024-05-23 23:05:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:06.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:06.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8576ms +2024-05-23 23:05:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:10.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:10.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3414ms +2024-05-23 23:05:11.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:11.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:11.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:11.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:11.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:11.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3353ms +2024-05-23 23:05:11.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:11.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6282ms +2024-05-23 23:05:12.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:12.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:12.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:12.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.713ms +2024-05-23 23:05:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:13.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:13.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0531ms +2024-05-23 23:05:14.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:14.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:14.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:14.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.046ms +2024-05-23 23:05:15.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:15.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:15.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:15.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6056ms +2024-05-23 23:05:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:17.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:17.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1433ms +2024-05-23 23:05:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:17.887 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:17.888 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.6592ms +2024-05-23 23:05:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:19.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:19.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3846ms +2024-05-23 23:05:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:19.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:19.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.093ms +2024-05-23 23:05:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:21.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:21.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7131ms +2024-05-23 23:05:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:25.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:25.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0259ms +2024-05-23 23:05:26.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:26.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:26.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:26.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:26.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:26.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7132ms +2024-05-23 23:05:26.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:26.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.809ms +2024-05-23 23:05:27.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:27.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:27.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:27.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1373ms +2024-05-23 23:05:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:28.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:28.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:28.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6985ms +2024-05-23 23:05:29.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:29.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:29.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:29.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1838ms +2024-05-23 23:05:30.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:30.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:30.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:30.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3926ms +2024-05-23 23:05:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:32.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6149ms +2024-05-23 23:05:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:32.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3465ms +2024-05-23 23:05:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:34.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:34.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3176ms +2024-05-23 23:05:34.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:34.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:34.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:34.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3186ms +2024-05-23 23:05:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:36.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5213ms +2024-05-23 23:05:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:40.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:40.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0546ms +2024-05-23 23:05:41.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:41.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:41.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:41.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:41.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:41.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9085ms +2024-05-23 23:05:41.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:41.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4087ms +2024-05-23 23:05:42.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:42.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:42.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:42.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6709ms +2024-05-23 23:05:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:43.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:43.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6404ms +2024-05-23 23:05:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:44.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:44.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2499ms +2024-05-23 23:05:45.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:45.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:45.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:45.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0925ms +2024-05-23 23:05:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:47.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1389ms +2024-05-23 23:05:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:47.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9818ms +2024-05-23 23:05:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5028ms +2024-05-23 23:05:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:49.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3863ms +2024-05-23 23:05:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:51.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:51.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3606ms +2024-05-23 23:05:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:55.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:55.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2434ms +2024-05-23 23:05:56.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:56.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:56.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:56.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:56.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:56.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5538ms +2024-05-23 23:05:56.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:56.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3982ms +2024-05-23 23:05:57.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:57.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:57.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1938ms +2024-05-23 23:05:58.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:58.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:58.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.1653ms +2024-05-23 23:05:59.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:05:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:05:59.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.393ms +2024-05-23 23:06:00.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:00.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0769ms +2024-05-23 23:06:02.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:02.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:02.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.474ms +2024-05-23 23:06:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:02.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3779ms +2024-05-23 23:06:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:04.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:04.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8913ms +2024-05-23 23:06:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:04.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:04.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8912ms +2024-05-23 23:06:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:06.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4569ms +2024-05-23 23:06:10.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:10.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:10.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:10.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.317ms +2024-05-23 23:06:11.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:11.938 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:11.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:11.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:11.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7942ms +2024-05-23 23:06:11.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:11.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5123ms +2024-05-23 23:06:12.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6615ms +2024-05-23 23:06:13.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:13.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:13.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:13.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5444ms +2024-05-23 23:06:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:14.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:14.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:14.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2985ms +2024-05-23 23:06:15.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:15.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:15.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3881ms +2024-05-23 23:06:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:17.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:17.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0378ms +2024-05-23 23:06:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:17.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:17.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.8664ms +2024-05-23 23:06:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:19.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:19.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9432ms +2024-05-23 23:06:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:19.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:19.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6536ms +2024-05-23 23:06:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:21.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4892ms +2024-05-23 23:06:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:25.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:25.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9266ms +2024-05-23 23:06:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:26.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:26.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:26.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:26.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6124ms +2024-05-23 23:06:26.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:26.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7322ms +2024-05-23 23:06:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:27.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:27.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:27.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2682ms +2024-05-23 23:06:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:28.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:28.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7219ms +2024-05-23 23:06:29.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:29.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:29.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:29.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5653ms +2024-05-23 23:06:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:30.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:30.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:30.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7177ms +2024-05-23 23:06:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.136ms +2024-05-23 23:06:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:32.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:32.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4144ms +2024-05-23 23:06:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:34.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8913ms +2024-05-23 23:06:34.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0482ms +2024-05-23 23:06:36.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:36.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:36.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:36.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6852ms +2024-05-23 23:06:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:40.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:40.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6979ms +2024-05-23 23:06:41.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:41.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:41.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:41.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:41.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:41.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.202ms +2024-05-23 23:06:41.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:41.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4995ms +2024-05-23 23:06:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:42.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:42.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9311ms +2024-05-23 23:06:43.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:43.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:43.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:43.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4929ms +2024-05-23 23:06:44.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:44.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:44.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:44.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4069ms +2024-05-23 23:06:45.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:45.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:45.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7708ms +2024-05-23 23:06:47.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:47.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:47.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:47.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6135ms +2024-05-23 23:06:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:47.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:47.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1046ms +2024-05-23 23:06:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:49.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:49.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1506ms +2024-05-23 23:06:49.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:49.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:49.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.883ms +2024-05-23 23:06:51.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:51.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:51.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:51.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3024ms +2024-05-23 23:06:55.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:55.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:55.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8303ms +2024-05-23 23:06:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:56.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:56.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:56.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:56.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:56.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4743ms +2024-05-23 23:06:56.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:56.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2424ms +2024-05-23 23:06:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:57.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:57.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6948ms +2024-05-23 23:06:58.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:58.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:58.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:58.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8268ms +2024-05-23 23:06:59.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:06:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:06:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1701ms +2024-05-23 23:07:00.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:00.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:00.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2603ms +2024-05-23 23:07:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:02.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:02.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:02.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.0097ms +2024-05-23 23:07:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3062ms +2024-05-23 23:07:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:04.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:04.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2399ms +2024-05-23 23:07:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:04.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:04.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8764ms +2024-05-23 23:07:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:06.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5339ms +2024-05-23 23:07:10.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:10.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:10.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:10.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3852ms +2024-05-23 23:07:11.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:11.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:11.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:11.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4884ms +2024-05-23 23:07:11.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:11.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8589ms +2024-05-23 23:07:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:12.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7972ms +2024-05-23 23:07:13.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:13.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:13.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:13.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9462ms +2024-05-23 23:07:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:14.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:14.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.2936ms +2024-05-23 23:07:15.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:15.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:15.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9671ms +2024-05-23 23:07:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:17.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9484ms +2024-05-23 23:07:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:17.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:17.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8702ms +2024-05-23 23:07:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:19.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2115ms +2024-05-23 23:07:19.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8759ms +2024-05-23 23:07:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:21.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:21.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9898ms +2024-05-23 23:07:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:25.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:25.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5991ms +2024-05-23 23:07:26.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:26.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:26.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3858ms +2024-05-23 23:07:26.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:26.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0703ms +2024-05-23 23:07:27.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:27.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:27.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5663ms +2024-05-23 23:07:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:28.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9779ms +2024-05-23 23:07:29.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:29.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:29.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7235ms +2024-05-23 23:07:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:30.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:30.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5394ms +2024-05-23 23:07:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:32.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:32.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:32.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0822ms +2024-05-23 23:07:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:32.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.298ms +2024-05-23 23:07:34.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:34.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:34.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:34.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4738ms +2024-05-23 23:07:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:34.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:34.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5523ms +2024-05-23 23:07:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:36.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:36.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.187ms +2024-05-23 23:07:40.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:40.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:40.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:40.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0974ms +2024-05-23 23:07:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:41.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:41.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:41.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:41.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7407ms +2024-05-23 23:07:41.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:41.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7119ms +2024-05-23 23:07:42.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:42.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:42.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:42.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4593ms +2024-05-23 23:07:43.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:43.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:43.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:43.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1985ms +2024-05-23 23:07:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:44.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:44.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5005ms +2024-05-23 23:07:45.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:45.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:45.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:45.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3349ms +2024-05-23 23:07:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:47.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:47.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6646ms +2024-05-23 23:07:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:47.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:47.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5262ms +2024-05-23 23:07:49.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:49.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:49.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:49.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5999ms +2024-05-23 23:07:49.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:49.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5568ms +2024-05-23 23:07:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:51.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:51.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9074ms +2024-05-23 23:07:55.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:55.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:55.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:55.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8109ms +2024-05-23 23:07:56.937 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:56.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:56.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:56.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:56.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:56.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2132ms +2024-05-23 23:07:56.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:56.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3843ms +2024-05-23 23:07:57.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:57.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:57.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:57.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2235ms +2024-05-23 23:07:58.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:58.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:58.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:58.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0018ms +2024-05-23 23:07:59.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:07:59.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:59.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:07:59.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9581ms +2024-05-23 23:08:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:00.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:00.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3184ms +2024-05-23 23:08:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:02.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3676ms +2024-05-23 23:08:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:02.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:02.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2735ms +2024-05-23 23:08:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:04.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:04.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2338ms +2024-05-23 23:08:04.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:04.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:04.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:04.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7755ms +2024-05-23 23:08:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:06.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:06.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:06.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.724ms +2024-05-23 23:08:10.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:10.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:10.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:10.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8812ms +2024-05-23 23:08:11.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:11.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:11.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8996ms +2024-05-23 23:08:11.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:11.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9467ms +2024-05-23 23:08:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:12.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4854ms +2024-05-23 23:08:13.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:13.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:13.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:13.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0751ms +2024-05-23 23:08:14.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:14.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:14.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:14.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7708ms +2024-05-23 23:08:15.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:15.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:15.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6167ms +2024-05-23 23:08:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:17.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:17.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0355ms +2024-05-23 23:08:17.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:17.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:17.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0093ms +2024-05-23 23:08:19.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:19.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:19.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8505ms +2024-05-23 23:08:19.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:19.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:19.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:19.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8862ms +2024-05-23 23:08:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:21.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:21.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:21.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9434ms +2024-05-23 23:08:25.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:25.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:25.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:25.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3113ms +2024-05-23 23:08:26.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:26.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:26.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:26.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9885ms +2024-05-23 23:08:26.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:26.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2975ms +2024-05-23 23:08:27.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:27.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:27.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:27.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.9346ms +2024-05-23 23:08:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:28.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:28.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7876ms +2024-05-23 23:08:29.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:29.296 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:29.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:29.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3661ms +2024-05-23 23:08:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:30.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:30.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:30.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5488ms +2024-05-23 23:08:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:32.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:32.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4637ms +2024-05-23 23:08:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:32.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3123ms +2024-05-23 23:08:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:34.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:34.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:34.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3385ms +2024-05-23 23:08:34.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:34.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:34.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:34.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8086ms +2024-05-23 23:08:36.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:36.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2015ms +2024-05-23 23:08:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:40.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:40.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1452ms +2024-05-23 23:08:41.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:41.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:41.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:41.953 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:41.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:41.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4611ms +2024-05-23 23:08:41.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:41.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.5189ms +2024-05-23 23:08:42.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:42.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:42.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:42.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5013ms +2024-05-23 23:08:43.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:43.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:43.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4673ms +2024-05-23 23:08:44.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:44.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:44.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:44.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7871ms +2024-05-23 23:08:45.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:45.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:45.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:45.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.8471ms +2024-05-23 23:08:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:47.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:47.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:47.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5076ms +2024-05-23 23:08:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:47.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:47.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3637ms +2024-05-23 23:08:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.368ms +2024-05-23 23:08:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:49.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:49.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8217ms +2024-05-23 23:08:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:51.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:51.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1615ms +2024-05-23 23:08:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:55.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0308ms +2024-05-23 23:08:56.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:56.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:56.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:56.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:56.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:56.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2397ms +2024-05-23 23:08:56.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:56.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4672ms +2024-05-23 23:08:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:57.848 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:57.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8328ms +2024-05-23 23:08:58.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:58.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:58.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:58.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8912ms +2024-05-23 23:08:59.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:08:59.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:59.323 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:08:59.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6382ms +2024-05-23 23:09:00.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:00.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:00.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:00.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0212ms +2024-05-23 23:09:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:02.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:02.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0966ms +2024-05-23 23:09:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:02.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:02.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:02.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8572ms +2024-05-23 23:09:04.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:04.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:04.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:04.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9679ms +2024-05-23 23:09:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:04.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:04.674 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:04.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3806ms +2024-05-23 23:09:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:06.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:06.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2389ms +2024-05-23 23:09:10.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:10.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:10.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:10.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.6262ms +2024-05-23 23:09:11.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:11.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:11.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:11.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:11.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:11.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6635ms +2024-05-23 23:09:11.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:11.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0351ms +2024-05-23 23:09:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:12.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:12.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2436ms +2024-05-23 23:09:13.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:13.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:13.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:13.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.3861ms +2024-05-23 23:09:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:14.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:14.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:14.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3068ms +2024-05-23 23:09:15.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:15.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:15.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:15.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4986ms +2024-05-23 23:09:17.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:17.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:17.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:17.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.8459ms +2024-05-23 23:09:17.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:17.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:17.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3028ms +2024-05-23 23:09:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:19.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8078ms +2024-05-23 23:09:19.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:19.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:19.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:19.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5565ms +2024-05-23 23:09:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:21.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:21.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.502ms +2024-05-23 23:09:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:25.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:25.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5165ms +2024-05-23 23:09:26.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:26.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:26.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:26.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7088ms +2024-05-23 23:09:26.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:26.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0874ms +2024-05-23 23:09:27.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:27.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:27.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:27.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8166ms +2024-05-23 23:09:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:28.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:28.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6955ms +2024-05-23 23:09:29.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:29.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:29.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9318ms +2024-05-23 23:09:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:30.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:30.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:30.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9121ms +2024-05-23 23:09:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:32.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:32.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0124ms +2024-05-23 23:09:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:32.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5385ms +2024-05-23 23:09:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:34.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:34.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5587ms +2024-05-23 23:09:34.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:34.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:34.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:34.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3283ms +2024-05-23 23:09:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:36.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:36.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:36.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7475ms +2024-05-23 23:09:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:40.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:40.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6818ms +2024-05-23 23:09:41.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:41.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:41.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:41.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:41.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:41.965 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.148ms +2024-05-23 23:09:41.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:41.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1225ms +2024-05-23 23:09:42.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:42.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:42.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:42.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9925ms +2024-05-23 23:09:43.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:43.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:43.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:43.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4374ms +2024-05-23 23:09:44.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:44.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:44.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6943ms +2024-05-23 23:09:45.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:45.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:45.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0784ms +2024-05-23 23:09:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:47.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:47.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:47.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6057ms +2024-05-23 23:09:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5331ms +2024-05-23 23:09:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8736ms +2024-05-23 23:09:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:49.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7084ms +2024-05-23 23:09:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:51.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:51.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9719ms +2024-05-23 23:09:55.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:55.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:55.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:55.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8021ms +2024-05-23 23:09:56.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:56.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:56.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:56.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:56.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:56.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3605ms +2024-05-23 23:09:56.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:56.984 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5369ms +2024-05-23 23:09:57.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:57.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:57.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:57.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2841ms +2024-05-23 23:09:58.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:58.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5428ms +2024-05-23 23:09:59.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:09:59.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:59.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:09:59.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5178ms +2024-05-23 23:10:00.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:00.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:00.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:00.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5689ms +2024-05-23 23:10:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:02.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:02.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.4028ms +2024-05-23 23:10:02.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:02.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:02.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.2673ms +2024-05-23 23:10:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:04.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:04.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:04.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1913ms +2024-05-23 23:10:04.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:04.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:04.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:04.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6007ms +2024-05-23 23:10:06.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:06.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:06.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:06.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7516ms +2024-05-23 23:10:10.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:10.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:10.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:10.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2423ms +2024-05-23 23:10:11.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:11.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:11.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:11.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:11.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8895ms +2024-05-23 23:10:11.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:11.986 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5849ms +2024-05-23 23:10:12.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:12.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:12.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:12.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4905ms +2024-05-23 23:10:13.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:13.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:13.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:13.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9919ms +2024-05-23 23:10:14.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:14.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:14.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:14.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7209ms +2024-05-23 23:10:15.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:15.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:15.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9908ms +2024-05-23 23:10:17.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:17.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:17.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:17.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0452ms +2024-05-23 23:10:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:17.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:17.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3554ms +2024-05-23 23:10:19.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:19.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:19.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:19.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1312ms +2024-05-23 23:10:19.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:19.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:19.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8228ms +2024-05-23 23:10:21.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:21.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:21.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.742ms +2024-05-23 23:10:25.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:25.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:25.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:25.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6094ms +2024-05-23 23:10:26.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:26.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:26.954 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:26.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:26.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5354ms +2024-05-23 23:10:26.982 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:26.982 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0475ms +2024-05-23 23:10:27.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:27.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:27.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:27.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4703ms +2024-05-23 23:10:28.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:28.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:28.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:28.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5481ms +2024-05-23 23:10:29.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:29.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:29.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0396ms +2024-05-23 23:10:30.483 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:30.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:30.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:30.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.054ms +2024-05-23 23:10:32.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:32.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:32.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:32.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9995ms +2024-05-23 23:10:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:32.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3228ms +2024-05-23 23:10:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:34.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:34.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5504ms +2024-05-23 23:10:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:34.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:34.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:34.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3839ms +2024-05-23 23:10:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:36.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:36.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4731ms +2024-05-23 23:10:40.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:40.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:40.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8624ms +2024-05-23 23:10:41.933 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:41.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:41.952 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:41.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:41.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:41.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3804ms +2024-05-23 23:10:41.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:41.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5015ms +2024-05-23 23:10:42.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:42.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:42.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:42.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1915ms +2024-05-23 23:10:43.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:43.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:43.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:43.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0929ms +2024-05-23 23:10:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:44.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:44.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.099ms +2024-05-23 23:10:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:45.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:45.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6562ms +2024-05-23 23:10:47.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:47.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:47.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:47.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5338ms +2024-05-23 23:10:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:47.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:47.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0301ms +2024-05-23 23:10:49.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:49.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:49.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3003ms +2024-05-23 23:10:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:49.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.558ms +2024-05-23 23:10:51.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:51.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:51.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3712ms +2024-05-23 23:10:55.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:55.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:55.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:55.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0915ms +2024-05-23 23:10:56.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:56.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:56.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:56.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:56.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:56.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5806ms +2024-05-23 23:10:56.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:56.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.3744ms +2024-05-23 23:10:57.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:57.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:57.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7974ms +2024-05-23 23:10:58.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:58.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:58.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:58.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2443ms +2024-05-23 23:10:59.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:10:59.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:59.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:10:59.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2744ms +2024-05-23 23:11:00.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:00.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:00.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:00.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9183ms +2024-05-23 23:11:02.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:02.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:02.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:02.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8063ms +2024-05-23 23:11:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5681ms +2024-05-23 23:11:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:04.496 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:04.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0071ms +2024-05-23 23:11:04.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:04.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:04.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:04.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3699ms +2024-05-23 23:11:06.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:06.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:06.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5688ms +2024-05-23 23:11:10.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:10.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:10.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:10.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2275ms +2024-05-23 23:11:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:11.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:11.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7888ms +2024-05-23 23:11:11.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:11.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8141ms +2024-05-23 23:11:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:12.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:12.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0527ms +2024-05-23 23:11:13.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:13.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:13.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.157ms +2024-05-23 23:11:14.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:14.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:14.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:14.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1005ms +2024-05-23 23:11:15.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:15.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:15.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:15.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0434ms +2024-05-23 23:11:17.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:17.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:17.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:17.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6192ms +2024-05-23 23:11:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:17.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:17.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.195ms +2024-05-23 23:11:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:19.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:19.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:19.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9336ms +2024-05-23 23:11:19.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:19.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:19.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:19.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6744ms +2024-05-23 23:11:21.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:21.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:21.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6338ms +2024-05-23 23:11:25.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:25.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:25.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:25.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3169ms +2024-05-23 23:11:26.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:26.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:26.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:26.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:26.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:26.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1245ms +2024-05-23 23:11:26.981 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:26.981 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2105ms +2024-05-23 23:11:27.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:27.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:27.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:27.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0203ms +2024-05-23 23:11:28.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:28.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:28.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:28.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3518ms +2024-05-23 23:11:29.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:29.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:29.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:29.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0431ms +2024-05-23 23:11:30.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:30.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:30.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:30.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5524ms +2024-05-23 23:11:32.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:32.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:32.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:32.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.0445ms +2024-05-23 23:11:32.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:32.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:32.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0463ms +2024-05-23 23:11:34.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:34.469 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:34.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:34.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2659ms +2024-05-23 23:11:34.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:34.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:34.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:34.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6437ms +2024-05-23 23:11:36.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:36.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:36.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:36.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4601ms +2024-05-23 23:11:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:40.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:40.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:40.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2255ms +2024-05-23 23:11:41.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:41.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:41.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:41.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:41.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0704ms +2024-05-23 23:11:41.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:41.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0917ms +2024-05-23 23:11:42.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:42.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:42.845 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7798ms +2024-05-23 23:11:43.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:43.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:43.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:43.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6478ms +2024-05-23 23:11:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:44.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:44.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6244ms +2024-05-23 23:11:45.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:45.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:45.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:45.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7274ms +2024-05-23 23:11:47.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:47.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:47.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0865ms +2024-05-23 23:11:47.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:47.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:47.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:47.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8841ms +2024-05-23 23:11:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:49.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:49.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6931ms +2024-05-23 23:11:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:49.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:49.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:49.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0885ms +2024-05-23 23:11:51.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:51.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:51.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:51.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3617ms +2024-05-23 23:11:55.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:55.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:55.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:55.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3905ms +2024-05-23 23:11:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:56.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:56.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:56.967 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:56.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.146ms +2024-05-23 23:11:56.983 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:56.983 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.817ms +2024-05-23 23:11:57.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:57.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:57.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:57.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.392ms +2024-05-23 23:11:58.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:58.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5682ms +2024-05-23 23:11:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:11:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:59.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:11:59.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8173ms +2024-05-23 23:12:00.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:00.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:00.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:00.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8136ms +2024-05-23 23:12:02.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:02.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:02.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:02.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7322ms +2024-05-23 23:12:02.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:02.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:02.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6343ms +2024-05-23 23:12:04.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:04.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:04.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:04.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8842ms +2024-05-23 23:12:04.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:04.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:04.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:04.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2819ms +2024-05-23 23:12:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:06.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:06.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:06.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2419ms +2024-05-23 23:12:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:10.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:10.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8964ms +2024-05-23 23:12:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:11.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:11.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:11.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7269ms +2024-05-23 23:12:11.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:11.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2095ms +2024-05-23 23:12:12.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:12.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:12.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5425ms +2024-05-23 23:12:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:13.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:13.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:13.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9012ms +2024-05-23 23:12:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:14.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:14.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5486ms +2024-05-23 23:12:15.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:15.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:15.514 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:15.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0541ms +2024-05-23 23:12:17.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:17.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:17.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:17.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8872ms +2024-05-23 23:12:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:17.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:17.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:17.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3679ms +2024-05-23 23:12:19.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:19.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:19.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:19.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6565ms +2024-05-23 23:12:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:19.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:19.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9666ms +2024-05-23 23:12:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:21.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:21.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6311ms +2024-05-23 23:12:25.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:25.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:25.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:25.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0699ms +2024-05-23 23:12:26.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:26.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:26.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:26.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:26.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:26.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1398ms +2024-05-23 23:12:26.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:26.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.045ms +2024-05-23 23:12:27.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:27.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:27.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:27.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0802ms +2024-05-23 23:12:28.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:28.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:28.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:28.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8901ms +2024-05-23 23:12:29.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:29.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:29.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:29.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6148ms +2024-05-23 23:12:30.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:30.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:30.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:30.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4637ms +2024-05-23 23:12:32.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:32.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:32.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:32.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7723ms +2024-05-23 23:12:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:32.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:32.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1723ms +2024-05-23 23:12:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:34.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:34.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7392ms +2024-05-23 23:12:34.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:34.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:34.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:34.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4895ms +2024-05-23 23:12:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:36.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:36.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:36.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1518ms +2024-05-23 23:12:40.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:40.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:40.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:40.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.575ms +2024-05-23 23:12:41.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:41.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:41.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:41.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:41.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:41.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4609ms +2024-05-23 23:12:41.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:41.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0572ms +2024-05-23 23:12:42.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:42.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:42.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3254ms +2024-05-23 23:12:43.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:43.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:43.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:43.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8111ms +2024-05-23 23:12:44.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:44.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:44.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:44.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9157ms +2024-05-23 23:12:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:45.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:45.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:45.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3981ms +2024-05-23 23:12:47.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:47.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:47.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:47.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4234ms +2024-05-23 23:12:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:47.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:47.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9925ms +2024-05-23 23:12:49.465 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:49.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:49.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:49.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0685ms +2024-05-23 23:12:49.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:49.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:49.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4406ms +2024-05-23 23:12:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:51.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:51.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:51.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5892ms +2024-05-23 23:12:55.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:55.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:55.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:55.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.075ms +2024-05-23 23:12:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:56.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:56.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:56.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:56.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5369ms +2024-05-23 23:12:56.988 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:56.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5534ms +2024-05-23 23:12:57.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:57.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:57.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:57.848 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.641ms +2024-05-23 23:12:58.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:58.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:58.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:58.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.266ms +2024-05-23 23:12:59.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:12:59.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:59.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:12:59.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1131ms +2024-05-23 23:13:00.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:00.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:00.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:00.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2702ms +2024-05-23 23:13:02.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:02.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:02.659 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:02.659 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5672ms +2024-05-23 23:13:02.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:02.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:02.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9858ms +2024-05-23 23:13:04.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:04.466 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:04.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:04.493 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7397ms +2024-05-23 23:13:04.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:04.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:04.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:04.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2449ms +2024-05-23 23:13:06.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:06.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:06.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:06.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.215ms +2024-05-23 23:13:10.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:10.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:10.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:10.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0786ms +2024-05-23 23:13:11.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:11.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:11.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:11.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:11.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:11.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0555ms +2024-05-23 23:13:11.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:11.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7167ms +2024-05-23 23:13:12.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:12.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5133ms +2024-05-23 23:13:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:13.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:13.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:13.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.4057ms +2024-05-23 23:13:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:14.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:14.328 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0644ms +2024-05-23 23:13:15.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:15.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:15.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3547ms +2024-05-23 23:13:17.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:17.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:17.660 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:17.660 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0216ms +2024-05-23 23:13:17.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:17.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:17.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4157ms +2024-05-23 23:13:19.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:19.464 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:19.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:19.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3217ms +2024-05-23 23:13:19.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:19.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:19.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:19.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7405ms +2024-05-23 23:13:21.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:21.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:21.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:21.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8617ms +2024-05-23 23:13:25.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:25.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:25.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:25.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0801ms +2024-05-23 23:13:26.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:26.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:26.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:26.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:26.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:26.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6435ms +2024-05-23 23:13:26.986 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:26.987 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1379ms +2024-05-23 23:13:27.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:27.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:27.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:27.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3908ms +2024-05-23 23:13:28.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:28.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:28.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:28.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.792ms +2024-05-23 23:13:29.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:29.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:29.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:29.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3514ms +2024-05-23 23:13:30.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:30.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:30.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:30.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1691ms +2024-05-23 23:13:32.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:32.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:32.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:32.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1169ms +2024-05-23 23:13:32.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:32.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:32.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:32.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3421ms +2024-05-23 23:13:34.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:34.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:34.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:34.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.486ms +2024-05-23 23:13:34.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:34.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:34.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:34.674 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4979ms +2024-05-23 23:13:36.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:36.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:36.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:36.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0221ms +2024-05-23 23:13:40.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:40.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:40.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:40.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.8744ms +2024-05-23 23:13:41.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:41.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:41.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:41.960 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:41.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:41.968 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8448ms +2024-05-23 23:13:41.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:41.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6017ms +2024-05-23 23:13:42.816 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:42.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:42.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:42.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6038ms +2024-05-23 23:13:43.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:43.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:43.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:43.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4912ms +2024-05-23 23:13:44.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:44.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:44.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:44.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5044ms +2024-05-23 23:13:45.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:45.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:45.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:45.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8018ms +2024-05-23 23:13:47.634 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:47.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:47.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:47.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9703ms +2024-05-23 23:13:47.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:47.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:47.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:47.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5741ms +2024-05-23 23:13:49.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:49.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:49.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:49.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4933ms +2024-05-23 23:13:49.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:49.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:49.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:49.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9542ms +2024-05-23 23:13:51.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:51.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:51.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:51.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6491ms +2024-05-23 23:13:55.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:55.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:55.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:55.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1939ms +2024-05-23 23:13:56.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:56.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:56.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:56.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:56.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:56.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9374ms +2024-05-23 23:13:57.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:57.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 379.4564ms +2024-05-23 23:13:57.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:57.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:57.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:57.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0878ms +2024-05-23 23:13:58.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:58.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:58.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:58.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1583ms +2024-05-23 23:13:59.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:13:59.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:59.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:13:59.329 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1032ms +2024-05-23 23:14:00.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:00.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:00.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:00.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.307ms +2024-05-23 23:14:02.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:02.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:02.658 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:02.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9869ms +2024-05-23 23:14:02.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:02.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:02.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:02.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0313ms +2024-05-23 23:14:04.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:04.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:04.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:04.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2551ms +2024-05-23 23:14:04.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:04.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:04.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:04.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2645ms +2024-05-23 23:14:06.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:06.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:06.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:06.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2986ms +2024-05-23 23:14:10.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:10.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:10.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:10.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5998ms +2024-05-23 23:14:11.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:11.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:11.955 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:11.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:11.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:11.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3518ms +2024-05-23 23:14:11.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:11.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3964ms +2024-05-23 23:14:12.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:12.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:12.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:12.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2944ms +2024-05-23 23:14:13.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:13.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:13.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:13.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7145ms +2024-05-23 23:14:14.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:14.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:14.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:14.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6926ms +2024-05-23 23:14:15.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - null null +2024-05-23 23:14:15.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:15.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-23 23:14:15.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.1534ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240524.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240524.txt new file mode 100644 index 000000000..b87da1d57 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240524.txt @@ -0,0 +1,27859 @@ +2024-05-24 14:24:24.425 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:24:24.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:24.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:24.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8844ms +2024-05-24 14:24:24.461 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:24:24.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:24.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:24.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7675ms +2024-05-24 14:24:39.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:24:39.461 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:39.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:39.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3648ms +2024-05-24 14:24:45.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:24:45.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:45.279 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:45.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5676ms +2024-05-24 14:24:54.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:24:54.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:54.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:24:54.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6157ms +2024-05-24 14:25:09.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:25:09.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:09.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:09.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5165ms +2024-05-24 14:25:24.464 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:25:24.465 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:24.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:24.492 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7658ms +2024-05-24 14:25:39.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:25:39.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:39.488 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:39.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5597ms +2024-05-24 14:25:54.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:25:54.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:54.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:25:54.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1907ms +2024-05-24 14:26:09.485 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:26:09.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:09.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:09.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2013ms +2024-05-24 14:26:24.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:26:24.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:24.491 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:24.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7705ms +2024-05-24 14:26:39.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:26:39.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:39.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:39.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.827ms +2024-05-24 14:26:54.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:26:54.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:54.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:26:54.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5359ms +2024-05-24 14:27:09.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:27:09.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:09.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:09.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7372ms +2024-05-24 14:27:24.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:27:24.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:24.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:24.488 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6063ms +2024-05-24 14:27:39.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:27:39.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:39.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:39.490 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3705ms +2024-05-24 14:27:54.460 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:27:54.460 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:54.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:27:54.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2345ms +2024-05-24 14:28:09.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:28:09.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:09.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:09.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2085ms +2024-05-24 14:28:48.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:28:48.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:48.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:48.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.402ms +2024-05-24 14:28:48.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:28:48.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:48.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:48.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5454ms +2024-05-24 14:28:50.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:28:50.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:50.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:28:50.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.378ms +2024-05-24 14:28:52.223 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:28:52.224 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:28:52.287 +02:00 [ERR] There was an error when processing a message with id: '2f668fe4f1834ed3a5561585ed14647d'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:28:52.289 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:28:52.291 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:28:52.295 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 71.7384ms +2024-05-24 14:28:52.930 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:28:52.930 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:28:52.994 +02:00 [ERR] There was an error when processing a message with id: '4358c331b4444adbb59d0e0636b560aa'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:28:52.996 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:28:52.997 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:28:52.999 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 69.6716ms +2024-05-24 14:29:27.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:27.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:27.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:27.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7255ms +2024-05-24 14:29:28.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:28.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:28.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:28.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5256ms +2024-05-24 14:29:29.924 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:29.924 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:29.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:29.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7177ms +2024-05-24 14:29:31.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:31.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:31.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:31.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5295ms +2024-05-24 14:29:31.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:31.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:31.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:31.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6804ms +2024-05-24 14:29:32.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:32.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5182ms +2024-05-24 14:29:32.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:32.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6674ms +2024-05-24 14:29:32.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:32.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:32.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6288ms +2024-05-24 14:29:34.266 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:29:34.266 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:34.322 +02:00 [ERR] There was an error when processing a message with id: 'bb3b6f2843d74c2d8ee8b58368c258d2'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:29:34.322 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:34.323 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:29:34.324 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 57.8219ms +2024-05-24 14:29:34.707 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:29:34.708 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:34.769 +02:00 [ERR] There was an error when processing a message with id: 'dfacb38ce4914b569238c435ecd51451'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:29:34.771 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:34.772 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:29:34.774 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 67.0666ms +2024-05-24 14:29:35.160 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:29:35.161 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:35.232 +02:00 [ERR] There was an error when processing a message with id: '54c1ef15362a4add87bfb10d777a7b89'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:29:35.233 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:35.234 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:29:35.237 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 76.2847ms +2024-05-24 14:29:36.174 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:29:36.174 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:36.229 +02:00 [ERR] There was an error when processing a message with id: 'cc54c030b4e74d7e8683604611ad9c30'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:29:36.230 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:29:36.232 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:29:36.234 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 60.4302ms +2024-05-24 14:29:42.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:42.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:42.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:42.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6323ms +2024-05-24 14:29:46.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:46.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:46.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:46.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0149ms +2024-05-24 14:29:47.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:47.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:47.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:47.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7612ms +2024-05-24 14:29:57.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:29:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:57.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:29:57.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5072ms +2024-05-24 14:30:01.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:01.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:01.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:01.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.738ms +2024-05-24 14:30:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:02.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:02.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:02.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6719ms +2024-05-24 14:30:12.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:12.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:12.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:12.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9033ms +2024-05-24 14:30:16.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:16.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3421ms +2024-05-24 14:30:17.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:17.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:17.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:17.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4477ms +2024-05-24 14:30:27.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:27.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:27.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:27.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0072ms +2024-05-24 14:30:31.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:31.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:31.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:31.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.8424ms +2024-05-24 14:30:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:32.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:32.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2556ms +2024-05-24 14:30:38.996 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:30:38.997 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.058 +02:00 [ERR] There was an error when processing a message with id: '1897b4e294364768ac777970fa3fe5ee'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:39.059 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.059 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:39.060 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 63.6114ms +2024-05-24 14:30:39.465 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:30:39.466 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.525 +02:00 [ERR] There was an error when processing a message with id: '2732a5ef928e40fca1a1434a4347e6fc'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:39.526 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.526 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:39.527 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 61.649ms +2024-05-24 14:30:39.841 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:30:39.842 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.899 +02:00 [ERR] There was an error when processing a message with id: '75c236ce0ccd4e52a3065806095eb4c1'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:39.899 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:39.900 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:39.900 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 59.0064ms +2024-05-24 14:30:40.732 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:30:40.733 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:40.793 +02:00 [ERR] There was an error when processing a message with id: '87ab1b749b8d458083837ac4610c790a'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:40.793 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:40.794 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:40.794 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 62.5612ms +2024-05-24 14:30:41.089 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:30:41.090 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:41.151 +02:00 [ERR] There was an error when processing a message with id: '9c27de9678d6409bb23b09636befa718'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:41.153 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:41.154 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:41.157 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 67.8867ms +2024-05-24 14:30:41.514 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:30:41.514 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:41.571 +02:00 [ERR] There was an error when processing a message with id: '48a42ba0666543388ba95ee50e82048f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:41.573 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:41.574 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:41.577 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 62.9223ms +2024-05-24 14:30:41.981 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:30:41.982 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:42.043 +02:00 [ERR] There was an error when processing a message with id: '34acc79b11f1487cb7d5e91caba502aa'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:42.045 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:42.046 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:42.049 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 68.0304ms +2024-05-24 14:30:42.381 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:30:42.382 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:42.441 +02:00 [ERR] There was an error when processing a message with id: 'db46f2cde20f4bc5920121e7f9b0e0f8'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:42.441 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:42.442 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:42.443 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 62.3952ms +2024-05-24 14:30:42.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:42.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:42.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:42.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1749ms +2024-05-24 14:30:43.146 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 14:30:43.147 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:43.204 +02:00 [ERR] There was an error when processing a message with id: 'dc8c1a34fece47c38afcd4a1fb4e1cb6'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:30:43.204 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:30:43.205 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:30:43.205 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 58.8575ms +2024-05-24 14:30:46.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:46.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:46.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6663ms +2024-05-24 14:30:47.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:47.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:47.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:47.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.508ms +2024-05-24 14:30:57.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:30:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:57.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:30:57.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6963ms +2024-05-24 14:31:01.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:01.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:01.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2097ms +2024-05-24 14:31:02.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:02.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:02.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:02.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8523ms +2024-05-24 14:31:12.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:12.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:12.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6855ms +2024-05-24 14:31:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:16.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:16.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:16.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2805ms +2024-05-24 14:31:17.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:17.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:17.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:17.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 69.0561ms +2024-05-24 14:31:20.281 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:31:20.282 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:20.340 +02:00 [ERR] There was an error when processing a message with id: 'e26add9927af43cb8eeeb43db4eec9e9'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:31:20.340 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:20.340 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:31:20.341 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 60.3813ms +2024-05-24 14:31:21.089 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:31:21.089 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.147 +02:00 [ERR] There was an error when processing a message with id: 'b4f6dd84cc0a4c128bafeca9394feb2f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:31:21.148 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.148 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:31:21.149 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 59.4054ms +2024-05-24 14:31:21.407 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:31:21.407 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.466 +02:00 [ERR] There was an error when processing a message with id: '9b55ce3160af4eb0aca61858a9b29acf'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:31:21.466 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.467 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:31:21.467 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 60.0943ms +2024-05-24 14:31:21.792 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:31:21.792 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.852 +02:00 [ERR] There was an error when processing a message with id: '1a07bbb9797b4661b8a0d484deeba78a'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:31:21.854 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:31:21.855 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:31:21.856 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 64.4932ms +2024-05-24 14:31:26.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:26.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:26.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:26.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3946ms +2024-05-24 14:31:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:26.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:26.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.391ms +2024-05-24 14:31:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:27.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:27.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3072ms +2024-05-24 14:31:28.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:28.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5559ms +2024-05-24 14:31:28.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:28.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8459ms +2024-05-24 14:31:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:28.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:28.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9014ms +2024-05-24 14:31:31.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:31.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:31.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:31.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7047ms +2024-05-24 14:31:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:32.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:32.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:32.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.0569ms +2024-05-24 14:31:41.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:41.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:41.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:41.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6873ms +2024-05-24 14:31:42.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:42.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:42.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:42.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3191ms +2024-05-24 14:31:43.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:43.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:43.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:43.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8503ms +2024-05-24 14:31:46.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:46.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:46.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.801ms +2024-05-24 14:31:47.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:47.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:47.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:47.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3337ms +2024-05-24 14:31:56.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:56.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:56.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:56.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 339.2993ms +2024-05-24 14:31:57.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:57.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:57.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1435ms +2024-05-24 14:31:58.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:31:58.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:58.443 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:31:58.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5897ms +2024-05-24 14:32:01.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:01.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:01.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9795ms +2024-05-24 14:32:02.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:02.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:02.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:02.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7822ms +2024-05-24 14:32:06.455 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:32:06.456 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:06.514 +02:00 [ERR] There was an error when processing a message with id: 'd85cc1f76c874dacba44b9134c0663a5'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:06.516 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:06.517 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:06.519 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 63.4965ms +2024-05-24 14:32:06.875 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:32:06.875 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:06.932 +02:00 [ERR] There was an error when processing a message with id: 'ab73b7accb6c4417975b5f46f1daf3d1'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:06.933 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:06.934 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:06.936 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 61.2584ms +2024-05-24 14:32:07.268 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:32:07.268 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.325 +02:00 [ERR] There was an error when processing a message with id: '836407bd43544af6833e3c3a567ed742'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:07.326 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.326 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:07.327 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 59.713ms +2024-05-24 14:32:07.506 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:32:07.506 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.566 +02:00 [ERR] There was an error when processing a message with id: 'b86c7fca5b2244d7bd3d8c71defb3371'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:07.567 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.568 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:07.571 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 65.0513ms +2024-05-24 14:32:07.904 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:32:07.905 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.959 +02:00 [ERR] There was an error when processing a message with id: 'e4468121587541aa899a69a0650bb86e'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:07.960 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:07.960 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:07.961 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 56.3573ms +2024-05-24 14:32:08.312 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 14:32:08.313 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:08.369 +02:00 [ERR] There was an error when processing a message with id: '7d6cc12d9d514e959fb8e444e0aeb6b9'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:08.370 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:08.370 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:08.372 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 60.2525ms +2024-05-24 14:32:11.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:11.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:11.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:11.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5599ms +2024-05-24 14:32:12.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:12.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:12.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:12.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0409ms +2024-05-24 14:32:13.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:13.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:13.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.6513ms +2024-05-24 14:32:16.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:16.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:16.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:16.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2811ms +2024-05-24 14:32:17.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:17.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:17.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:17.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.4212ms +2024-05-24 14:32:24.788 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:32:24.789 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:24.848 +02:00 [ERR] There was an error when processing a message with id: '054411cbd2f648edb342c47176ac956c'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:24.849 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:24.851 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:24.853 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 64.3912ms +2024-05-24 14:32:25.324 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:32:25.325 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:25.382 +02:00 [ERR] There was an error when processing a message with id: 'e883fce4adb142eaa92515b4e7db4df9'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:25.383 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:25.384 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:25.386 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 62.5568ms +2024-05-24 14:32:25.959 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:32:25.960 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:26.020 +02:00 [ERR] There was an error when processing a message with id: '7c464010610b4f88be095325125f9411'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:26.021 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:26.021 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:26.022 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 62.5804ms +2024-05-24 14:32:26.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:26.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:26.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:26.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7817ms +2024-05-24 14:32:26.462 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:32:26.463 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:26.522 +02:00 [ERR] There was an error when processing a message with id: 'c6d5dba2d5a54114b96a87e081c4628b'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:26.523 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:26.524 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:26.527 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 65.0047ms +2024-05-24 14:32:26.963 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 14:32:26.964 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:27.022 +02:00 [ERR] There was an error when processing a message with id: '80f4788d98db4139a8138fd065e21eef'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:27.024 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:27.024 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:27.025 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 62.1119ms +2024-05-24 14:32:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:27.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:27.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.959ms +2024-05-24 14:32:27.857 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:32:27.858 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:27.914 +02:00 [ERR] There was an error when processing a message with id: 'ebad7a9afd3d43bcbb568ff5836919f5'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:27.915 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:27.916 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:27.918 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 61.0647ms +2024-05-24 14:32:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:28.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:28.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:28.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.079ms +2024-05-24 14:32:31.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:31.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:31.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:31.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5311ms +2024-05-24 14:32:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:32.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:32.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:32.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1032ms +2024-05-24 14:32:35.230 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:32:35.231 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:35.292 +02:00 [ERR] There was an error when processing a message with id: '5231bab57be84a96886279d7ecbc25a1'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:35.293 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:35.294 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:35.297 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 66.1731ms +2024-05-24 14:32:35.777 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:32:35.778 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:35.838 +02:00 [ERR] There was an error when processing a message with id: '48641d314ef6427dbc5b08a07a0a4235'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:35.839 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:35.839 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:35.840 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 62.7003ms +2024-05-24 14:32:36.199 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:32:36.199 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:36.259 +02:00 [ERR] There was an error when processing a message with id: '1f3b3d914a454d8f82cfa7fd72fdd1cf'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:32:36.260 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:32:36.262 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:32:36.264 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 65.3405ms +2024-05-24 14:32:41.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:41.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:41.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:41.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0835ms +2024-05-24 14:32:42.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:42.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:42.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:42.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2398ms +2024-05-24 14:32:43.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:43.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:43.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:43.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7195ms +2024-05-24 14:32:46.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:46.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:46.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:46.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.139ms +2024-05-24 14:32:47.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:47.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:47.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:47.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7531ms +2024-05-24 14:32:56.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:56.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:56.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:56.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0799ms +2024-05-24 14:32:57.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:57.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:57.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:57.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4011ms +2024-05-24 14:32:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:32:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:58.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:32:58.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.854ms +2024-05-24 14:33:01.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:01.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:01.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:01.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5189ms +2024-05-24 14:33:02.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:02.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:02.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:02.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5619ms +2024-05-24 14:33:11.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:11.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:11.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:11.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8239ms +2024-05-24 14:33:12.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:12.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:12.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6343ms +2024-05-24 14:33:13.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:13.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:13.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3733ms +2024-05-24 14:33:16.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:16.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:16.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:16.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7132ms +2024-05-24 14:33:17.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:17.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:17.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:17.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5196ms +2024-05-24 14:33:21.287 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:21.287 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:21.348 +02:00 [ERR] There was an error when processing a message with id: '5c8bf14200b744d3a58b0da4199721f6'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:21.349 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:21.349 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:21.350 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 63.572ms +2024-05-24 14:33:21.823 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:21.824 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:21.885 +02:00 [ERR] There was an error when processing a message with id: 'cc518c915d5c471195357533d22d8555'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:21.887 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:21.888 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:21.890 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 67.904ms +2024-05-24 14:33:22.298 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:33:22.299 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:22.368 +02:00 [ERR] There was an error when processing a message with id: 'e73f48f28c994ad3b58e04dd952c9b9e'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:22.368 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:22.369 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:22.369 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 71.5781ms +2024-05-24 14:33:23.081 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:23.082 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:23.138 +02:00 [ERR] There was an error when processing a message with id: '5ef1be1c695a4a7ab80d7df271e6c1b0'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:23.139 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:23.139 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:23.140 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 58.5536ms +2024-05-24 14:33:23.692 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:33:23.693 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:23.751 +02:00 [ERR] There was an error when processing a message with id: '9f997d66bf2d4fc6972e75ccaed0b059'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:23.752 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:23.753 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:23.756 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 63.2428ms +2024-05-24 14:33:26.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:26.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:26.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:26.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5706ms +2024-05-24 14:33:26.822 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:26.822 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:26.880 +02:00 [ERR] There was an error when processing a message with id: '2c0d6fa1917647a889985866fd13687f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:26.881 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:26.882 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:26.884 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 62.3298ms +2024-05-24 14:33:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:27.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:27.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:27.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9893ms +2024-05-24 14:33:28.019 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:33:28.019 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:28.077 +02:00 [ERR] There was an error when processing a message with id: '9cb030bd5dad4372bc6cdc7aafb376f2'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:28.078 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:28.080 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:28.082 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 63.783ms +2024-05-24 14:33:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6978ms +2024-05-24 14:33:31.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:31.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:31.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:31.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2992ms +2024-05-24 14:33:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:32.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:32.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8239ms +2024-05-24 14:33:41.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:41.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:41.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:41.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8858ms +2024-05-24 14:33:42.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:42.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:42.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:42.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1715ms +2024-05-24 14:33:43.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:43.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:43.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:43.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7277ms +2024-05-24 14:33:45.260 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:33:45.260 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:45.316 +02:00 [ERR] There was an error when processing a message with id: '341a95916cfd40eead5415cc79de8255'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:45.316 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:45.317 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:45.317 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 57.5694ms +2024-05-24 14:33:46.004 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:46.004 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:46.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:46.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:46.062 +02:00 [ERR] There was an error when processing a message with id: '0472190f279749c1bc331707eefc267e'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:46.063 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:46.063 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:46.064 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 59.8217ms +2024-05-24 14:33:46.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:46.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3837ms +2024-05-24 14:33:46.548 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:33:46.549 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:46.615 +02:00 [ERR] There was an error when processing a message with id: 'd39a4763715645a6a33339fe68903f24'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:46.616 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:46.617 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:46.620 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 71.8527ms +2024-05-24 14:33:47.055 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 14:33:47.055 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:47.111 +02:00 [ERR] There was an error when processing a message with id: '2aa27db28b2e4d649c672b4e7b7065f2'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:47.112 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:47.112 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:47.113 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/88be150d-6111-470e-9159-b36b5ed2c813/status - 400 null application/json 58.5998ms +2024-05-24 14:33:47.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:47.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:47.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:47.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8434ms +2024-05-24 14:33:47.975 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:33:47.976 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:48.033 +02:00 [ERR] There was an error when processing a message with id: '848a816bc88e403bb9f5fdafb9ea6084'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:48.035 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:48.036 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:48.038 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 62.1846ms +2024-05-24 14:33:48.826 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 14:33:48.827 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:48.889 +02:00 [ERR] There was an error when processing a message with id: '2449ec84fbb549bc935997ff0be6ac63'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:48.890 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:48.891 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:48.894 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/12e290ed-60d0-463b-a765-13948167e4d8/status - 400 null application/json 68.0184ms +2024-05-24 14:33:49.283 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 14:33:49.283 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:49.339 +02:00 [ERR] There was an error when processing a message with id: '7858f84d4ba641c689da61347a284e45'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:49.340 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:49.341 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:49.344 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/221d04bf-5aea-4e42-932c-83e09fe20507/status - 400 null application/json 60.667ms +2024-05-24 14:33:49.907 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 14:33:49.907 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:49.965 +02:00 [ERR] There was an error when processing a message with id: 'a3765163fbd34dd4a87e8f39c5409f0d'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:49.966 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:49.967 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:49.970 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 400 null application/json 62.7554ms +2024-05-24 14:33:50.613 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 14:33:50.614 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:50.685 +02:00 [ERR] There was an error when processing a message with id: '3fdd38089f6442e1902abc2389155c0c'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:50.686 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:50.687 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:50.689 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 76.1493ms +2024-05-24 14:33:51.052 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 14:33:51.052 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:51.114 +02:00 [ERR] There was an error when processing a message with id: '271e167d587d4f57924c8a794fcc46d6'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 14:33:51.116 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{notificationId}/status' +2024-05-24 14:33:51.117 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:33:51.120 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 400 null application/json 68.4864ms +2024-05-24 14:33:56.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:56.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:56.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:56.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6534ms +2024-05-24 14:33:57.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:57.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:57.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:57.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8019ms +2024-05-24 14:33:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:33:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:58.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:33:58.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0665ms +2024-05-24 14:34:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:01.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:01.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3734ms +2024-05-24 14:34:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:02.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:02.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:02.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6375ms +2024-05-24 14:34:11.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:11.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:11.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:11.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6538ms +2024-05-24 14:34:12.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:12.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:12.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:12.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 52.3938ms +2024-05-24 14:34:13.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:13.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:13.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4684ms +2024-05-24 14:34:16.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:16.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5297ms +2024-05-24 14:34:17.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:17.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:17.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:17.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7473ms +2024-05-24 14:34:26.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:26.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:26.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:26.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7998ms +2024-05-24 14:34:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:27.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:27.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7813ms +2024-05-24 14:34:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:28.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:28.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:28.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3283ms +2024-05-24 14:34:31.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:31.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:31.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:31.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8539ms +2024-05-24 14:34:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:32.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:32.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5393ms +2024-05-24 14:34:41.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:41.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:41.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1219ms +2024-05-24 14:34:42.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:42.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:42.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:42.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8603ms +2024-05-24 14:34:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:43.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5176ms +2024-05-24 14:34:46.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:46.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:46.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:46.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3907ms +2024-05-24 14:34:47.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:47.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:47.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:47.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7123ms +2024-05-24 14:34:56.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:56.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:56.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:56.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9504ms +2024-05-24 14:34:57.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:57.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:57.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:57.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4136ms +2024-05-24 14:34:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:34:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:58.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:34:58.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6501ms +2024-05-24 14:35:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:01.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:01.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5861ms +2024-05-24 14:35:02.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:02.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:02.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:02.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6422ms +2024-05-24 14:35:11.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:11.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:11.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:11.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.683ms +2024-05-24 14:35:12.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:12.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:12.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:12.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9544ms +2024-05-24 14:35:13.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:13.452 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:13.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:13.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0871ms +2024-05-24 14:35:16.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:16.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:16.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4153ms +2024-05-24 14:35:17.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:17.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:17.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:17.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9841ms +2024-05-24 14:35:26.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:26.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:26.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:26.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.237ms +2024-05-24 14:35:27.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:27.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:27.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:27.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1278ms +2024-05-24 14:35:28.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:28.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:28.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:28.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2522ms +2024-05-24 14:35:31.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:31.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:31.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:31.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4901ms +2024-05-24 14:35:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:32.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:32.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:32.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7884ms +2024-05-24 14:35:41.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:41.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:41.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:41.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6687ms +2024-05-24 14:35:42.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:42.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:42.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:42.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4257ms +2024-05-24 14:35:43.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:43.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:43.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:43.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.9969ms +2024-05-24 14:35:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:46.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:46.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:46.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2255ms +2024-05-24 14:35:47.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:47.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:47.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:47.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3777ms +2024-05-24 14:35:56.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:56.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:56.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:56.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4101ms +2024-05-24 14:35:57.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:57.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:57.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4949ms +2024-05-24 14:35:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:35:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:58.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:35:58.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9448ms +2024-05-24 14:36:01.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:01.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:01.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1432ms +2024-05-24 14:36:02.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:02.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:02.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:02.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.764ms +2024-05-24 14:36:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:11.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:11.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:11.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6025ms +2024-05-24 14:36:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:12.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:12.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2818ms +2024-05-24 14:36:13.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:13.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:13.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:13.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9333ms +2024-05-24 14:36:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:16.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:16.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:16.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2977ms +2024-05-24 14:36:17.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:17.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:17.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:17.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.961ms +2024-05-24 14:36:26.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:26.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:26.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:26.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9374ms +2024-05-24 14:36:27.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:27.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:27.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:27.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6339ms +2024-05-24 14:36:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:28.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:28.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.013ms +2024-05-24 14:36:31.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:31.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:31.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:31.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.478ms +2024-05-24 14:36:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:32.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:32.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.306ms +2024-05-24 14:36:41.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:41.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:41.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:41.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3146ms +2024-05-24 14:36:42.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:42.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:42.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:42.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8393ms +2024-05-24 14:36:43.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:43.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:43.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:43.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4088ms +2024-05-24 14:36:46.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:46.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:46.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:46.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9052ms +2024-05-24 14:36:47.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:47.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:47.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:47.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4199ms +2024-05-24 14:36:56.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:56.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:56.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:56.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3278ms +2024-05-24 14:36:57.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:57.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:57.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3118ms +2024-05-24 14:36:58.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:36:58.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:58.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:36:58.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8701ms +2024-05-24 14:37:01.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:01.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:01.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:01.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9297ms +2024-05-24 14:37:02.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:02.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:02.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:02.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9442ms +2024-05-24 14:37:11.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:11.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:11.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:11.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6695ms +2024-05-24 14:37:12.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:12.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:12.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3487ms +2024-05-24 14:37:13.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:13.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:13.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:13.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4101ms +2024-05-24 14:37:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:16.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:16.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.594ms +2024-05-24 14:37:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:17.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:17.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0256ms +2024-05-24 14:37:26.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:26.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:26.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:26.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7567ms +2024-05-24 14:37:27.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:27.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:27.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:27.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2272ms +2024-05-24 14:37:28.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:28.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:28.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7723ms +2024-05-24 14:37:31.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:31.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:31.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:31.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0698ms +2024-05-24 14:37:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:32.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:32.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4127ms +2024-05-24 14:37:41.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:41.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:41.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:41.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.819ms +2024-05-24 14:37:42.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:42.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:42.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:42.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8613ms +2024-05-24 14:37:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:43.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:43.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:43.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.609ms +2024-05-24 14:37:46.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:46.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:46.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:46.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8305ms +2024-05-24 14:37:47.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:47.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:47.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:47.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3711ms +2024-05-24 14:37:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:56.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:56.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:56.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1531ms +2024-05-24 14:37:57.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:57.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:57.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:57.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5429ms +2024-05-24 14:37:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:37:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:58.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:37:58.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3735ms +2024-05-24 14:38:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:01.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:01.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:01.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4874ms +2024-05-24 14:38:02.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:02.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:02.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:02.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.8281ms +2024-05-24 14:38:11.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:11.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:11.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:11.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8573ms +2024-05-24 14:38:12.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:12.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:12.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9378ms +2024-05-24 14:38:13.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:13.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:13.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:13.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5504ms +2024-05-24 14:38:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:16.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:16.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:16.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2267ms +2024-05-24 14:38:17.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:17.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:17.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:17.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.657ms +2024-05-24 14:38:26.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:26.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:26.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:26.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3491ms +2024-05-24 14:38:27.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:27.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:27.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:27.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.861ms +2024-05-24 14:38:28.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:28.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4598ms +2024-05-24 14:38:31.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:31.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:31.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:31.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0453ms +2024-05-24 14:38:32.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:32.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:32.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:32.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5317ms +2024-05-24 14:38:41.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:41.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:41.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:41.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1349ms +2024-05-24 14:38:42.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:42.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:42.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:42.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4086ms +2024-05-24 14:38:43.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:43.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:43.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0965ms +2024-05-24 14:38:46.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:46.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:46.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:46.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2254ms +2024-05-24 14:38:47.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:47.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:47.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:47.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3381ms +2024-05-24 14:38:56.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:56.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:56.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7493ms +2024-05-24 14:38:57.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:57.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:57.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:57.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.7406ms +2024-05-24 14:38:58.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:38:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:58.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:38:58.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7186ms +2024-05-24 14:39:01.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:01.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:01.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:01.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3011ms +2024-05-24 14:39:02.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:02.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:02.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:02.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7724ms +2024-05-24 14:39:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:11.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:11.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:11.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5933ms +2024-05-24 14:39:12.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:12.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:12.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4154ms +2024-05-24 14:39:13.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:13.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:13.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5844ms +2024-05-24 14:39:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:16.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:16.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.908ms +2024-05-24 14:39:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:17.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:17.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.043ms +2024-05-24 14:39:26.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:26.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:26.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:26.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6582ms +2024-05-24 14:39:27.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:27.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:27.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:27.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2615ms +2024-05-24 14:39:28.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:28.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:28.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5114ms +2024-05-24 14:39:31.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:31.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:31.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:31.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0839ms +2024-05-24 14:39:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:32.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:32.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:32.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1194ms +2024-05-24 14:39:41.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:41.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:41.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:41.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.115ms +2024-05-24 14:39:42.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:42.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:42.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:42.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4559ms +2024-05-24 14:39:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:43.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:43.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7759ms +2024-05-24 14:39:46.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:46.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:46.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:46.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9704ms +2024-05-24 14:39:47.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:47.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:47.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:47.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2364ms +2024-05-24 14:39:56.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:56.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:56.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1147ms +2024-05-24 14:39:57.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:57.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:57.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9837ms +2024-05-24 14:39:58.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:39:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:58.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:39:58.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.101ms +2024-05-24 14:40:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:01.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:01.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:01.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4375ms +2024-05-24 14:40:02.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:02.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:02.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:02.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.8589ms +2024-05-24 14:40:11.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:11.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:11.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:11.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8305ms +2024-05-24 14:40:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:12.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:12.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1359ms +2024-05-24 14:40:13.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:13.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:13.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.75ms +2024-05-24 14:40:16.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:16.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:16.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:16.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.9535ms +2024-05-24 14:40:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:17.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:17.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3254ms +2024-05-24 14:40:26.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:26.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:26.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:26.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0923ms +2024-05-24 14:40:27.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:27.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:27.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:27.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9015ms +2024-05-24 14:40:28.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:28.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:28.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:28.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2123ms +2024-05-24 14:40:31.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:31.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:31.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:31.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5762ms +2024-05-24 14:40:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:32.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:32.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:32.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5695ms +2024-05-24 14:40:41.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:41.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:41.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:41.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5163ms +2024-05-24 14:40:42.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:42.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:42.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:42.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5841ms +2024-05-24 14:40:43.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:43.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:43.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.84ms +2024-05-24 14:40:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:46.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:46.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:46.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8831ms +2024-05-24 14:40:47.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:47.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:47.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:47.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4499ms +2024-05-24 14:40:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:56.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:56.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:56.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6176ms +2024-05-24 14:40:57.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:57.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:57.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:57.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2774ms +2024-05-24 14:40:58.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:40:58.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:58.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:40:58.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.153ms +2024-05-24 14:41:01.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:01.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:01.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:01.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4512ms +2024-05-24 14:41:02.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:02.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:02.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:02.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7611ms +2024-05-24 14:41:11.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:11.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:11.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:11.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2433ms +2024-05-24 14:41:12.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:12.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:12.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7729ms +2024-05-24 14:41:13.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:13.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:13.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:13.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5705ms +2024-05-24 14:41:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:16.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:16.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:16.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2513ms +2024-05-24 14:41:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:17.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:17.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5988ms +2024-05-24 14:41:26.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:26.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:26.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:26.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7597ms +2024-05-24 14:41:27.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:27.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:27.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:27.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4499ms +2024-05-24 14:41:28.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:28.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:28.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3518ms +2024-05-24 14:41:31.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:31.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:31.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:31.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6625ms +2024-05-24 14:41:32.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:32.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:32.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:32.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1254ms +2024-05-24 14:41:41.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:41.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:41.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:41.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.8078ms +2024-05-24 14:41:42.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:42.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:42.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:42.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6197ms +2024-05-24 14:41:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:43.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:43.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:43.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4261ms +2024-05-24 14:41:46.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:46.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:46.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6303ms +2024-05-24 14:41:47.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:47.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:47.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:47.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7046ms +2024-05-24 14:41:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:56.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:56.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:56.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7841ms +2024-05-24 14:41:57.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:57.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:57.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:57.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.466ms +2024-05-24 14:41:58.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:41:58.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:58.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:41:58.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7063ms +2024-05-24 14:42:01.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:01.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:01.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:01.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4102ms +2024-05-24 14:42:02.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:02.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:02.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:02.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5809ms +2024-05-24 14:42:11.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:11.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:11.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:11.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7622ms +2024-05-24 14:42:12.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:12.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:12.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:12.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2403ms +2024-05-24 14:42:13.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:13.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:13.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:13.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8824ms +2024-05-24 14:42:16.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:16.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:16.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4505ms +2024-05-24 14:42:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:17.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:17.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:17.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0426ms +2024-05-24 14:42:26.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:26.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:26.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:26.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0467ms +2024-05-24 14:42:27.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:27.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:27.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:27.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4124ms +2024-05-24 14:42:28.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:28.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:28.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:28.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.404ms +2024-05-24 14:42:31.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:31.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:31.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:31.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0894ms +2024-05-24 14:42:32.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:32.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:32.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:32.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7118ms +2024-05-24 14:42:41.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:41.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:41.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:41.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.279ms +2024-05-24 14:42:42.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:42.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:42.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:42.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7068ms +2024-05-24 14:42:43.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:43.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:43.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:43.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9478ms +2024-05-24 14:42:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:46.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:46.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:46.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0146ms +2024-05-24 14:42:47.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:47.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:47.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:47.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8627ms +2024-05-24 14:42:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:56.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:56.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:56.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4379ms +2024-05-24 14:42:57.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:57.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:57.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:57.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9793ms +2024-05-24 14:42:58.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:42:58.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:58.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:42:58.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8101ms +2024-05-24 14:43:01.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:01.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:01.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:01.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4897ms +2024-05-24 14:43:02.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:02.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:02.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:02.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8651ms +2024-05-24 14:43:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:11.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:11.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:11.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9491ms +2024-05-24 14:43:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:12.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:12.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4909ms +2024-05-24 14:43:13.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:13.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:13.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4625ms +2024-05-24 14:43:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:16.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:16.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3104ms +2024-05-24 14:43:17.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:17.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:17.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:17.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2147ms +2024-05-24 14:43:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:26.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:26.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8225ms +2024-05-24 14:43:27.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:27.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:27.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:27.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1676ms +2024-05-24 14:43:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:28.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:28.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8031ms +2024-05-24 14:43:31.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:31.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:31.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:31.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0256ms +2024-05-24 14:43:32.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:32.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:32.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:32.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.8066ms +2024-05-24 14:43:41.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:41.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:41.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4613ms +2024-05-24 14:43:42.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:42.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:42.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:42.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6763ms +2024-05-24 14:43:43.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:43.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8662ms +2024-05-24 14:43:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:46.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:46.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:46.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2835ms +2024-05-24 14:43:47.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:47.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:47.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:47.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3265ms +2024-05-24 14:43:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:56.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:56.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:56.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4447ms +2024-05-24 14:43:57.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:57.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:57.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:57.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5636ms +2024-05-24 14:43:58.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:43:58.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:58.458 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:43:58.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.3621ms +2024-05-24 14:44:01.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:01.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:01.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:01.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1634ms +2024-05-24 14:44:02.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:02.482 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:02.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:02.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2481ms +2024-05-24 14:44:11.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:11.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:11.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:11.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9852ms +2024-05-24 14:44:12.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:12.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:12.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:12.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0244ms +2024-05-24 14:44:13.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:13.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:13.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2132ms +2024-05-24 14:44:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:16.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:16.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:16.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9917ms +2024-05-24 14:44:17.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:17.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:17.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:17.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2489ms +2024-05-24 14:44:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:26.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:26.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4748ms +2024-05-24 14:44:27.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:27.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:27.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:27.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3772ms +2024-05-24 14:44:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:28.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:28.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1425ms +2024-05-24 14:44:31.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:31.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:31.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:31.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1551ms +2024-05-24 14:44:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:32.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:32.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:32.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0147ms +2024-05-24 14:44:41.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:41.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:41.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.025ms +2024-05-24 14:44:42.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:42.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:42.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:42.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6048ms +2024-05-24 14:44:43.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:43.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:43.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:43.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.94ms +2024-05-24 14:44:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:46.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:46.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:46.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0514ms +2024-05-24 14:44:47.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:47.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:47.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:47.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6346ms +2024-05-24 14:44:56.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:56.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:56.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6592ms +2024-05-24 14:44:57.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:57.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:57.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:57.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5694ms +2024-05-24 14:44:58.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:44:58.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:58.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:44:58.478 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 54.3883ms +2024-05-24 14:45:01.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:01.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:01.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:01.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3589ms +2024-05-24 14:45:02.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:02.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:02.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:02.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8586ms +2024-05-24 14:45:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:11.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:11.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:11.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7037ms +2024-05-24 14:45:12.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:12.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:12.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7645ms +2024-05-24 14:45:13.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:13.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:13.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:13.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5758ms +2024-05-24 14:45:16.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:16.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:16.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.096ms +2024-05-24 14:45:17.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:17.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:17.513 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:17.514 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.549ms +2024-05-24 14:45:26.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:26.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:26.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:26.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1067ms +2024-05-24 14:45:27.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:27.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:27.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:27.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.687ms +2024-05-24 14:45:28.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:28.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:28.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:28.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4049ms +2024-05-24 14:45:31.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:31.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:31.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:31.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.441ms +2024-05-24 14:45:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:32.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:32.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:32.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0348ms +2024-05-24 14:45:41.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:41.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:41.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:41.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8755ms +2024-05-24 14:45:42.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:42.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:42.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:42.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.63ms +2024-05-24 14:45:43.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:43.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0636ms +2024-05-24 14:45:46.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:46.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:46.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:46.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.946ms +2024-05-24 14:45:47.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:47.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:47.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:47.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5841ms +2024-05-24 14:45:56.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:56.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:56.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:56.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.4739ms +2024-05-24 14:45:57.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:57.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:57.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1252ms +2024-05-24 14:45:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:45:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:58.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:45:58.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4821ms +2024-05-24 14:46:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:01.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:01.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3056ms +2024-05-24 14:46:02.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:02.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:02.506 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:02.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1284ms +2024-05-24 14:46:11.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:11.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:11.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:11.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2424ms +2024-05-24 14:46:12.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:12.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:12.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:12.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.558ms +2024-05-24 14:46:13.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:13.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:13.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:13.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.0161ms +2024-05-24 14:46:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:16.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:16.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:16.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7113ms +2024-05-24 14:46:17.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:17.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:17.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:17.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0281ms +2024-05-24 14:46:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:26.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:26.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0334ms +2024-05-24 14:46:27.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:27.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:27.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:27.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1292ms +2024-05-24 14:46:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:28.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:28.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0213ms +2024-05-24 14:46:31.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:31.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:31.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:31.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1831ms +2024-05-24 14:46:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:32.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:32.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:32.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1482ms +2024-05-24 14:46:41.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:41.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:41.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:41.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8064ms +2024-05-24 14:46:42.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:42.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:42.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:42.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1501ms +2024-05-24 14:46:43.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:43.428 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:43.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:43.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5379ms +2024-05-24 14:46:46.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:46.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:46.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:46.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1979ms +2024-05-24 14:46:47.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:47.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:47.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:47.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.393ms +2024-05-24 14:46:56.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:56.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:56.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:56.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.4418ms +2024-05-24 14:46:57.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:57.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:57.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8831ms +2024-05-24 14:46:58.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:46:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:58.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:46:58.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6247ms +2024-05-24 14:47:01.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:01.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:01.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9265ms +2024-05-24 14:47:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:02.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:02.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:02.502 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3747ms +2024-05-24 14:47:11.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:11.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:11.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:11.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7568ms +2024-05-24 14:47:12.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:12.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:12.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:12.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3596ms +2024-05-24 14:47:13.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:13.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:13.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4285ms +2024-05-24 14:47:16.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:16.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:16.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:16.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3006ms +2024-05-24 14:47:17.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:17.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:17.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:17.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5609ms +2024-05-24 14:47:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:26.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:26.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1842ms +2024-05-24 14:47:27.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:27.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:27.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:27.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1029ms +2024-05-24 14:47:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:28.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:28.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:28.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0231ms +2024-05-24 14:47:31.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:31.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:31.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:31.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5084ms +2024-05-24 14:47:32.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:32.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:32.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:32.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8753ms +2024-05-24 14:47:41.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:41.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:41.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1155ms +2024-05-24 14:47:42.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:42.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:42.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:42.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0483ms +2024-05-24 14:47:43.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:43.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:43.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:43.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0208ms +2024-05-24 14:47:46.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:46.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:46.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:46.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9656ms +2024-05-24 14:47:47.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:47.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:47.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:47.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0951ms +2024-05-24 14:47:56.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:56.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:56.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7157ms +2024-05-24 14:47:57.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:57.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:57.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:57.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7402ms +2024-05-24 14:47:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:47:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:58.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:47:58.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6735ms +2024-05-24 14:48:01.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:01.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:01.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:01.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4766ms +2024-05-24 14:48:02.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:02.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:02.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:02.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.751ms +2024-05-24 14:48:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:11.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:11.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:11.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8085ms +2024-05-24 14:48:12.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:12.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:12.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:12.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.599ms +2024-05-24 14:48:13.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:13.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:13.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:13.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7404ms +2024-05-24 14:48:16.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:16.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:16.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:16.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7214ms +2024-05-24 14:48:17.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:17.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:17.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:17.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1464ms +2024-05-24 14:48:26.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:26.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:26.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:26.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5853ms +2024-05-24 14:48:27.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:27.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:27.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4136ms +2024-05-24 14:48:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:28.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:28.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:28.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5503ms +2024-05-24 14:48:31.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:31.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:31.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:31.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.045ms +2024-05-24 14:48:32.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:32.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:32.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:32.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.293ms +2024-05-24 14:48:41.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:41.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:41.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6095ms +2024-05-24 14:48:42.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:42.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:42.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:42.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9741ms +2024-05-24 14:48:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:43.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:43.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0728ms +2024-05-24 14:48:46.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:46.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:46.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:46.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3879ms +2024-05-24 14:48:47.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:47.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:47.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:47.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1814ms +2024-05-24 14:48:56.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:56.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:56.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.249ms +2024-05-24 14:48:57.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:57.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:57.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8617ms +2024-05-24 14:48:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:48:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:58.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:48:58.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8454ms +2024-05-24 14:49:01.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:01.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:01.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:01.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3031ms +2024-05-24 14:49:02.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:02.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:02.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:02.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4183ms +2024-05-24 14:49:11.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:11.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:11.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:11.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8099ms +2024-05-24 14:49:12.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:12.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:12.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:12.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7208ms +2024-05-24 14:49:13.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:13.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:13.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7195ms +2024-05-24 14:49:16.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:16.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:16.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4203ms +2024-05-24 14:49:17.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:17.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:17.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:17.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3886ms +2024-05-24 14:49:26.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:26.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:26.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:26.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2364ms +2024-05-24 14:49:27.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:27.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:27.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:27.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6057ms +2024-05-24 14:49:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:28.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:28.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2031ms +2024-05-24 14:49:31.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:31.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:31.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:31.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0393ms +2024-05-24 14:49:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:32.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:32.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:32.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 67.1882ms +2024-05-24 14:49:41.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:41.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:41.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3201ms +2024-05-24 14:49:42.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:42.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:42.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:42.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2624ms +2024-05-24 14:49:43.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:43.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:43.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:43.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.735ms +2024-05-24 14:49:46.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:46.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:46.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:46.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6442ms +2024-05-24 14:49:47.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:47.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:47.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:47.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.6845ms +2024-05-24 14:49:56.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:56.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:56.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:56.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4849ms +2024-05-24 14:49:57.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:57.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:57.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:57.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1419ms +2024-05-24 14:49:58.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:49:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:58.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:49:58.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9087ms +2024-05-24 14:50:01.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:01.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:01.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:01.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0412ms +2024-05-24 14:50:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:02.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:02.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:02.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.541ms +2024-05-24 14:50:11.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:11.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:11.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:11.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4754ms +2024-05-24 14:50:12.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:12.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:12.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:12.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.21ms +2024-05-24 14:50:13.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:13.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:13.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:13.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9106ms +2024-05-24 14:50:15.043 +02:00 [INF] Deregistering a service [id: notifications-service:a5989101efc94c8b8a10deb45bcf99c1] from Consul... +2024-05-24 14:50:15.043 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a5989101efc94c8b8a10deb45bcf99c1" +2024-05-24 14:50:15.043 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a5989101efc94c8b8a10deb45bcf99c1 +2024-05-24 14:50:15.044 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a5989101efc94c8b8a10deb45bcf99c1 +2024-05-24 14:50:15.066 +02:00 [INF] Received HTTP response headers after 22.4876ms - 200 +2024-05-24 14:50:15.066 +02:00 [INF] End processing HTTP request after 22.8836ms - 200 +2024-05-24 14:50:15.066 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 14:50:15.067 +02:00 [INF] Deregistered a service [id: notifications-service:a5989101efc94c8b8a10deb45bcf99c1] from Consul. +2024-05-24 14:50:29.105 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 14:50:29.174 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 14:50:29.241 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 14:50:29.317 +02:00 [INF] Registering a service [id: notifications-service:97c4cdf2849147b5a4767df463af50f9] in Consul... +2024-05-24 14:50:29.343 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 14:50:29.349 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 14:50:29.350 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 14:50:29.373 +02:00 [INF] Removed 0 old notifications. +2024-05-24 14:50:29.374 +02:00 [INF] Received HTTP response headers after 18.103ms - 200 +2024-05-24 14:50:29.374 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 14:50:29.375 +02:00 [INF] End processing HTTP request after 27.3313ms - 200 +2024-05-24 14:50:29.379 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 14:50:29.381 +02:00 [INF] Registered a service [id: notifications-service:97c4cdf2849147b5a4767df463af50f9] in Consul. +2024-05-24 14:50:29.393 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 14:50:29.425 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 14:50:29.432 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 14:50:29.437 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 14:50:29.444 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 14:50:29.450 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 14:50:29.456 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 14:50:29.461 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 14:50:29.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:29.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:29.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:29.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 165.0177ms +2024-05-24 14:50:30.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:30.422 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:30.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:30.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1802ms +2024-05-24 14:50:31.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:31.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:31.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:31.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7168ms +2024-05-24 14:50:32.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:32.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:32.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:32.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3225ms +2024-05-24 14:50:32.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:32.476 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:32.517 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:32.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.88ms +2024-05-24 14:50:41.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:41.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:41.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:41.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.49ms +2024-05-24 14:50:42.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:42.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:42.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:42.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2913ms +2024-05-24 14:50:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:43.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:43.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3636ms +2024-05-24 14:50:46.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:46.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:46.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:46.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6289ms +2024-05-24 14:50:47.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:47.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:47.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:47.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 289.3788ms +2024-05-24 14:50:56.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:56.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:56.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:56.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9654ms +2024-05-24 14:50:57.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:57.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:57.754 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1867ms +2024-05-24 14:50:58.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:50:58.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:58.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:50:58.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9286ms +2024-05-24 14:51:01.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:01.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:01.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9799ms +2024-05-24 14:51:02.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:02.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:02.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:02.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8696ms +2024-05-24 14:51:11.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:11.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:11.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:11.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4082ms +2024-05-24 14:51:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:12.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:12.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:12.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9098ms +2024-05-24 14:51:13.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - application/json 165 +2024-05-24 14:51:13.367 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:13.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:13.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 29.4089ms +2024-05-24 14:51:13.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:13.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:13.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:13.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8236ms +2024-05-24 14:51:16.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:16.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:16.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6964ms +2024-05-24 14:51:17.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:17.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:17.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:17.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7347ms +2024-05-24 14:51:26.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:26.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:26.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:26.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9828ms +2024-05-24 14:51:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:27.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:27.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3685ms +2024-05-24 14:51:27.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 14:51:27.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 14:51:27.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 14:51:27.947 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationHandler.HandleAsync(GetNotification query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationHandler.cs:line 35 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 14:51:27.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 72.7871ms +2024-05-24 14:51:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:28.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:28.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6861ms +2024-05-24 14:51:31.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:31.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:31.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:31.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.295ms +2024-05-24 14:51:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:32.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:32.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.117ms +2024-05-24 14:51:41.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:41.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:41.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:41.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8018ms +2024-05-24 14:51:42.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:42.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:42.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:42.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5233ms +2024-05-24 14:51:43.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:43.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:43.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:43.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0436ms +2024-05-24 14:51:46.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:46.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:46.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:46.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5664ms +2024-05-24 14:51:47.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:47.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:47.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:47.511 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6409ms +2024-05-24 14:51:51.218 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 14:51:51.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 14:51:51.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 14:51:51.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 30.9296ms +2024-05-24 14:51:56.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:56.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:56.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:56.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6877ms +2024-05-24 14:51:57.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:57.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:57.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:57.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9995ms +2024-05-24 14:51:58.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:51:58.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:58.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:51:58.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9179ms +2024-05-24 14:52:01.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:01.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:01.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:01.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4235ms +2024-05-24 14:52:02.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:02.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:02.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:02.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5571ms +2024-05-24 14:52:11.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:11.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:11.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:11.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5478ms +2024-05-24 14:52:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:12.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.237ms +2024-05-24 14:52:13.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:13.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:13.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:13.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1022ms +2024-05-24 14:52:16.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:16.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:16.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:16.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3447ms +2024-05-24 14:52:17.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:17.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:17.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:17.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.215ms +2024-05-24 14:52:26.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:26.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:26.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:26.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5655ms +2024-05-24 14:52:27.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:27.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:27.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5848ms +2024-05-24 14:52:28.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:28.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:28.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:28.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2055ms +2024-05-24 14:52:31.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:31.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:31.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:31.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.9529ms +2024-05-24 14:52:32.477 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:32.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:32.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:32.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6179ms +2024-05-24 14:52:41.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:41.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:41.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:41.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8311ms +2024-05-24 14:52:42.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:42.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:42.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:42.758 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0866ms +2024-05-24 14:52:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:43.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:43.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1672ms +2024-05-24 14:52:46.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:46.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:46.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:46.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2546ms +2024-05-24 14:52:47.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:47.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:47.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:47.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2069ms +2024-05-24 14:52:56.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:56.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:56.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:56.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1544ms +2024-05-24 14:52:57.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:57.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:57.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:57.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4667ms +2024-05-24 14:52:58.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:52:58.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:58.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:52:58.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0581ms +2024-05-24 14:53:01.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:01.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:01.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:01.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.102ms +2024-05-24 14:53:02.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:02.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:02.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:02.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5432ms +2024-05-24 14:53:11.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:11.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:11.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:11.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3102ms +2024-05-24 14:53:12.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:12.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:12.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:12.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6876ms +2024-05-24 14:53:13.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:13.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:13.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:13.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.537ms +2024-05-24 14:53:16.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:16.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:16.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:16.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9919ms +2024-05-24 14:53:17.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:17.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:17.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:17.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3831ms +2024-05-24 14:53:26.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:26.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:26.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:26.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.095ms +2024-05-24 14:53:27.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:27.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:27.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3007ms +2024-05-24 14:53:28.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:28.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:28.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:28.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1545ms +2024-05-24 14:53:31.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:31.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:31.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:31.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8957ms +2024-05-24 14:53:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:32.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:32.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:32.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7704ms +2024-05-24 14:53:41.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:41.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:41.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:41.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2199ms +2024-05-24 14:53:42.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:42.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:42.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:42.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.695ms +2024-05-24 14:53:43.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:43.413 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:43.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:43.445 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7971ms +2024-05-24 14:53:46.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:46.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:46.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:46.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0629ms +2024-05-24 14:53:47.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:47.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:47.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:47.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3447ms +2024-05-24 14:53:56.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:56.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:56.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:56.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4822ms +2024-05-24 14:53:57.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:57.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:57.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:57.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1737ms +2024-05-24 14:53:58.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:53:58.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:58.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:53:58.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3492ms +2024-05-24 14:54:01.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:01.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:01.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7043ms +2024-05-24 14:54:02.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:02.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:02.511 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:02.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6994ms +2024-05-24 14:54:11.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:11.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:11.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:11.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1986ms +2024-05-24 14:54:12.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:12.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:12.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:12.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8932ms +2024-05-24 14:54:13.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:13.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:13.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:13.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8081ms +2024-05-24 14:54:16.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:16.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:16.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:16.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7551ms +2024-05-24 14:54:17.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:17.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:17.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:17.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7273ms +2024-05-24 14:54:26.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:26.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:26.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:26.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8644ms +2024-05-24 14:54:27.725 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:27.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:27.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:27.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1714ms +2024-05-24 14:54:28.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:28.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:28.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:28.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1561ms +2024-05-24 14:54:31.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:31.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:31.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:31.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4769ms +2024-05-24 14:54:32.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:32.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:32.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:32.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2443ms +2024-05-24 14:54:35.432 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:35.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:35.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:35.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7642ms +2024-05-24 14:54:41.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:41.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:41.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:41.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.247ms +2024-05-24 14:54:42.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:42.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:42.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:42.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1891ms +2024-05-24 14:54:43.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:43.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:43.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:43.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3065ms +2024-05-24 14:54:48.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:48.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:48.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:48.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4243ms +2024-05-24 14:54:49.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:49.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:49.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:49.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9808ms +2024-05-24 14:54:58.558 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:54:58.558 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:58.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:54:58.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0124ms +2024-05-24 14:55:00.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:00.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:00.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:00.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3959ms +2024-05-24 14:55:00.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:00.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:00.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:00.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9013ms +2024-05-24 14:55:03.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:03.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:03.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:03.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9905ms +2024-05-24 14:55:04.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:04.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:04.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:04.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7604ms +2024-05-24 14:55:13.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:13.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:13.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:13.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0856ms +2024-05-24 14:55:15.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:15.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:15.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:15.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9493ms +2024-05-24 14:55:15.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:15.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:15.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:15.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4327ms +2024-05-24 14:55:18.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:18.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:18.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:18.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5762ms +2024-05-24 14:55:19.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:19.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:19.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:19.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6871ms +2024-05-24 14:55:28.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:28.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:28.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:28.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0741ms +2024-05-24 14:55:30.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:30.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:30.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:30.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4338ms +2024-05-24 14:55:30.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:30.708 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:30.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:30.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4752ms +2024-05-24 14:55:33.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:33.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:33.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:33.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1217ms +2024-05-24 14:55:34.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:34.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:34.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:34.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8222ms +2024-05-24 14:55:43.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:43.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:43.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:43.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.388ms +2024-05-24 14:55:45.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:45.017 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:45.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:45.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9578ms +2024-05-24 14:55:45.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:45.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:45.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:45.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3408ms +2024-05-24 14:55:48.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:48.356 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:48.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:48.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2342ms +2024-05-24 14:55:49.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:49.772 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:49.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:49.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1927ms +2024-05-24 14:55:58.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:55:58.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:58.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:55:58.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5475ms +2024-05-24 14:56:00.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:00.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:00.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:00.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2136ms +2024-05-24 14:56:00.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:00.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:00.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:00.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6887ms +2024-05-24 14:56:03.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:03.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:03.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:03.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5167ms +2024-05-24 14:56:04.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:04.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:04.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:04.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7486ms +2024-05-24 14:56:13.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:13.552 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:13.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:13.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2378ms +2024-05-24 14:56:15.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:15.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:15.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:15.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0835ms +2024-05-24 14:56:15.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:15.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:15.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:15.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.142ms +2024-05-24 14:56:18.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:18.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:18.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:18.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4662ms +2024-05-24 14:56:19.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:19.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:19.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:19.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7396ms +2024-05-24 14:56:28.555 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:28.556 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:28.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:28.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2436ms +2024-05-24 14:56:30.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:30.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:30.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:30.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8722ms +2024-05-24 14:56:30.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:30.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:30.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:30.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3607ms +2024-05-24 14:56:33.359 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:33.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:33.402 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:33.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.8179ms +2024-05-24 14:56:34.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:34.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:34.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:34.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5841ms +2024-05-24 14:56:43.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:43.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:43.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:43.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6948ms +2024-05-24 14:56:45.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:45.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:45.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:45.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2993ms +2024-05-24 14:56:45.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:45.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:45.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:45.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7774ms +2024-05-24 14:56:48.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:48.364 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:48.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:48.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2198ms +2024-05-24 14:56:49.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:49.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:49.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:49.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5625ms +2024-05-24 14:56:58.557 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:56:58.558 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:58.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:56:58.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1843ms +2024-05-24 14:57:00.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:00.014 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:00.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:00.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4295ms +2024-05-24 14:57:00.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:00.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:00.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:00.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.663ms +2024-05-24 14:57:03.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:03.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:03.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:03.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1133ms +2024-05-24 14:57:04.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:04.773 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:04.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:04.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6407ms +2024-05-24 14:57:13.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:13.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:13.577 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:13.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1961ms +2024-05-24 14:57:15.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:15.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:15.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:15.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9165ms +2024-05-24 14:57:15.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:15.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:15.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:15.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0207ms +2024-05-24 14:57:18.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:18.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:18.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:18.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6882ms +2024-05-24 14:57:19.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 14:57:19.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:19.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 14:57:19.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4699ms +2024-05-24 15:00:32.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:32.410 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:32.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1536ms +2024-05-24 15:00:32.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7962ms +2024-05-24 15:00:32.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:32.717 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:32.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1123ms +2024-05-24 15:00:33.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:33.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:33.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:33.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5814ms +2024-05-24 15:00:33.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:33.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:33.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:33.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8447ms +2024-05-24 15:00:34.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:34.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:34.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:34.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1276ms +2024-05-24 15:00:34.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:34.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:34.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:34.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7015ms +2024-05-24 15:00:43.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:43.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:43.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:43.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1618ms +2024-05-24 15:00:45.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:45.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:45.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:45.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3639ms +2024-05-24 15:00:45.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:45.705 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:45.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:45.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.797ms +2024-05-24 15:00:48.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:48.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:48.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:48.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9646ms +2024-05-24 15:00:49.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:49.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:49.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:49.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0347ms +2024-05-24 15:00:58.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:00:58.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:58.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:00:58.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4756ms +2024-05-24 15:01:00.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:00.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:00.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:00.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 47.244ms +2024-05-24 15:01:00.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:00.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:00.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:00.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3355ms +2024-05-24 15:01:03.427 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:03.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:03.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:03.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.0012ms +2024-05-24 15:01:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:04.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:04.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3734ms +2024-05-24 15:01:13.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:13.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:13.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:13.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9375ms +2024-05-24 15:01:15.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:15.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:15.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:15.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.3555ms +2024-05-24 15:01:15.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:15.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:15.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:15.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9434ms +2024-05-24 15:01:18.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:18.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:18.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:18.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.304ms +2024-05-24 15:01:19.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:19.776 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:19.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:19.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.3359ms +2024-05-24 15:01:28.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:28.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:28.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:28.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2133ms +2024-05-24 15:01:30.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:30.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:30.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:30.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5995ms +2024-05-24 15:01:30.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:30.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:30.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:30.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8838ms +2024-05-24 15:01:33.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:33.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:33.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:33.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2999ms +2024-05-24 15:01:34.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:34.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:34.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:34.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0335ms +2024-05-24 15:01:43.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:43.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:43.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:43.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6511ms +2024-05-24 15:01:45.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:45.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:45.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:45.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.89ms +2024-05-24 15:01:45.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:45.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:45.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:45.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5994ms +2024-05-24 15:01:48.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:48.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:48.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:48.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.39ms +2024-05-24 15:01:49.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:49.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:49.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:49.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2929ms +2024-05-24 15:01:58.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:01:58.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:58.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:01:58.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6885ms +2024-05-24 15:02:00.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:00.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:00.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:00.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.8238ms +2024-05-24 15:02:00.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:00.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:00.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:00.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.685ms +2024-05-24 15:02:03.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:03.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:03.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:03.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2605ms +2024-05-24 15:02:04.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:04.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:04.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:04.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0456ms +2024-05-24 15:02:13.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:13.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:13.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:13.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.952ms +2024-05-24 15:02:15.015 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:15.015 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:15.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:15.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2725ms +2024-05-24 15:02:15.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:15.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:15.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:15.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7394ms +2024-05-24 15:02:18.365 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:18.366 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:18.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:18.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4788ms +2024-05-24 15:02:19.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:19.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:19.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:19.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9555ms +2024-05-24 15:02:28.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:28.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:28.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:28.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.8012ms +2024-05-24 15:02:30.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:30.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:30.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:30.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2317ms +2024-05-24 15:02:30.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:30.708 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:30.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:30.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0037ms +2024-05-24 15:02:33.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:33.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:33.424 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:33.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8763ms +2024-05-24 15:02:34.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:34.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:34.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:34.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2917ms +2024-05-24 15:02:43.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:43.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:43.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:43.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.8109ms +2024-05-24 15:02:45.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:45.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:45.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:45.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8493ms +2024-05-24 15:02:45.712 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:45.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:45.742 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:45.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7263ms +2024-05-24 15:02:48.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:48.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:48.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:48.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4609ms +2024-05-24 15:02:49.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:49.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:49.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:49.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.422ms +2024-05-24 15:02:58.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:02:58.561 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:58.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:02:58.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7394ms +2024-05-24 15:03:00.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:00.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:00.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:00.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1261ms +2024-05-24 15:03:00.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:00.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:00.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:00.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4355ms +2024-05-24 15:03:03.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:03.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:03.390 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:03.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4343ms +2024-05-24 15:03:04.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:04.772 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:04.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:04.803 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3194ms +2024-05-24 15:03:13.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:13.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:13.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:13.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5571ms +2024-05-24 15:03:15.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:15.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:15.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:15.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2975ms +2024-05-24 15:03:15.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:15.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:15.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:15.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0765ms +2024-05-24 15:03:18.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:18.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:18.434 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:18.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5608ms +2024-05-24 15:03:19.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:19.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:19.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:19.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.382ms +2024-05-24 15:03:28.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:28.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:28.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:28.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3266ms +2024-05-24 15:03:30.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:30.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:30.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:30.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1653ms +2024-05-24 15:03:30.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:30.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:30.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:30.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 55.6892ms +2024-05-24 15:03:33.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:33.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:33.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:33.431 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9654ms +2024-05-24 15:03:34.817 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:34.818 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:34.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.238ms +2024-05-24 15:03:43.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:43.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:43.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:43.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4813ms +2024-05-24 15:03:45.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:45.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:45.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:45.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.722ms +2024-05-24 15:03:45.758 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:45.759 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:45.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:45.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0842ms +2024-05-24 15:03:48.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:48.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:48.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:48.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9642ms +2024-05-24 15:03:49.777 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:49.777 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:49.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:49.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.804ms +2024-05-24 15:03:58.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:03:58.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:58.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:03:58.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7776ms +2024-05-24 15:04:00.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:00.087 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:00.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:00.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5187ms +2024-05-24 15:04:00.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:00.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:00.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:00.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 54.2091ms +2024-05-24 15:04:03.388 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:03.389 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:03.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:03.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7707ms +2024-05-24 15:04:04.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:04.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:04.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:04.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6413ms +2024-05-24 15:04:13.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:13.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:13.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:13.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4992ms +2024-05-24 15:04:15.019 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:15.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:15.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:15.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.269ms +2024-05-24 15:04:15.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:15.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:15.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:15.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5464ms +2024-05-24 15:04:18.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:18.356 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:18.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:18.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5666ms +2024-05-24 15:04:19.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:19.772 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:19.800 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:19.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9907ms +2024-05-24 15:04:28.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:28.560 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:28.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:28.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.083ms +2024-05-24 15:04:30.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:30.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:30.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:30.049 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7106ms +2024-05-24 15:04:30.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:30.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:30.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:30.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3509ms +2024-05-24 15:04:33.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:33.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:33.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:33.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8851ms +2024-05-24 15:04:34.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:34.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:34.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:34.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2231ms +2024-05-24 15:04:43.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:43.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:43.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:43.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9959ms +2024-05-24 15:04:45.022 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:45.023 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:45.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:45.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7019ms +2024-05-24 15:04:45.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:45.708 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:45.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:45.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6166ms +2024-05-24 15:04:48.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:48.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:48.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:48.422 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8308ms +2024-05-24 15:04:49.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:49.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:49.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:49.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7387ms +2024-05-24 15:04:58.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:04:58.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:58.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:04:58.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9232ms +2024-05-24 15:05:00.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:00.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:00.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:00.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6511ms +2024-05-24 15:05:00.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:00.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:00.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:00.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 51.6073ms +2024-05-24 15:05:03.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:03.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:03.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:03.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5841ms +2024-05-24 15:05:04.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:04.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:04.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:04.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9178ms +2024-05-24 15:05:13.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:13.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:13.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:13.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.0122ms +2024-05-24 15:05:15.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:15.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:15.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:15.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.1544ms +2024-05-24 15:05:15.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:15.715 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:15.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:15.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5199ms +2024-05-24 15:05:18.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:18.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:18.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:18.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.4355ms +2024-05-24 15:05:19.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:19.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:19.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:19.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.0907ms +2024-05-24 15:05:28.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:28.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:28.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:28.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 54.6359ms +2024-05-24 15:05:30.093 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:30.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:30.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:30.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.4091ms +2024-05-24 15:05:30.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:30.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:30.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:30.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.3901ms +2024-05-24 15:05:33.401 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:33.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:33.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:33.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7698ms +2024-05-24 15:05:34.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:34.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:34.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.1539ms +2024-05-24 15:05:43.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:43.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:43.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:43.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7413ms +2024-05-24 15:05:45.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:45.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:45.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:45.059 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4701ms +2024-05-24 15:05:45.718 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:45.719 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:45.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:45.752 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3343ms +2024-05-24 15:05:48.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:48.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:48.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:48.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.04ms +2024-05-24 15:05:49.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:49.774 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:49.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:49.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2353ms +2024-05-24 15:05:58.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:05:58.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:58.595 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:05:58.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6293ms +2024-05-24 15:06:00.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:00.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:00.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:00.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3692ms +2024-05-24 15:06:00.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:00.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:00.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:00.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4367ms +2024-05-24 15:06:03.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:03.393 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:03.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:03.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.1892ms +2024-05-24 15:06:04.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:04.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:04.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:04.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1002ms +2024-05-24 15:06:13.556 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:13.559 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:13.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:13.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8768ms +2024-05-24 15:06:15.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:15.020 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:15.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:15.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9261ms +2024-05-24 15:06:15.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:15.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:15.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:15.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.075ms +2024-05-24 15:06:18.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:18.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:18.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:18.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.985ms +2024-05-24 15:06:19.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:19.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:19.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:19.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8618ms +2024-05-24 15:06:28.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:28.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:28.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:28.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2446ms +2024-05-24 15:06:30.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:30.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:30.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:30.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7261ms +2024-05-24 15:06:30.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:30.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:30.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:30.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.609ms +2024-05-24 15:06:33.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:33.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:33.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:33.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2352ms +2024-05-24 15:06:34.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:34.771 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:34.802 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:34.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1215ms +2024-05-24 15:06:43.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:43.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:43.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:43.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5888ms +2024-05-24 15:06:45.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:45.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:45.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:45.103 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1398ms +2024-05-24 15:06:45.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:45.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:45.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:45.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3352ms +2024-05-24 15:06:48.389 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:48.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:48.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:48.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5873ms +2024-05-24 15:06:49.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:49.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:49.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:49.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4028ms +2024-05-24 15:06:58.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:06:58.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:58.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:06:58.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5747ms +2024-05-24 15:07:00.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:00.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:00.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:00.124 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.8244ms +2024-05-24 15:07:00.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:00.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:00.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:00.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.0554ms +2024-05-24 15:07:03.468 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:03.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:03.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:03.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5503ms +2024-05-24 15:07:04.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:04.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:04.923 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:04.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 60.0284ms +2024-05-24 15:07:13.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:13.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:13.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:13.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2092ms +2024-05-24 15:07:15.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:15.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:15.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:15.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.2728ms +2024-05-24 15:07:15.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:15.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:15.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:15.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1423ms +2024-05-24 15:07:18.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:18.404 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:18.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:18.438 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6635ms +2024-05-24 15:07:19.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:19.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:19.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:19.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7009ms +2024-05-24 15:07:28.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:28.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:28.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:28.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.53ms +2024-05-24 15:07:30.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:30.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:30.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:30.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9057ms +2024-05-24 15:07:30.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:30.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:30.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:30.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8153ms +2024-05-24 15:07:33.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:33.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:33.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:33.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1999ms +2024-05-24 15:07:34.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:34.817 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:34.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:34.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.7556ms +2024-05-24 15:07:43.559 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:43.559 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:43.593 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:43.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4444ms +2024-05-24 15:07:45.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:45.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:45.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:45.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6417ms +2024-05-24 15:07:45.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:45.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:45.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:45.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8715ms +2024-05-24 15:07:48.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:48.380 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:48.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:48.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9518ms +2024-05-24 15:07:49.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:49.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:49.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:49.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2989ms +2024-05-24 15:07:58.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:07:58.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:58.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:07:58.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9786ms +2024-05-24 15:08:00.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:00.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:00.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:00.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9887ms +2024-05-24 15:08:00.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:00.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:00.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:00.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.534ms +2024-05-24 15:08:03.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:03.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:03.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:03.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2076ms +2024-05-24 15:08:04.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:04.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:04.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:04.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1844ms +2024-05-24 15:08:13.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:13.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:13.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:13.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1734ms +2024-05-24 15:08:15.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:15.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:15.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:15.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.6649ms +2024-05-24 15:08:15.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:15.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:15.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:15.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6302ms +2024-05-24 15:08:18.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:18.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:18.408 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:18.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4351ms +2024-05-24 15:08:19.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:19.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:19.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:19.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3463ms +2024-05-24 15:08:28.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:28.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:28.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:28.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4739ms +2024-05-24 15:08:30.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:30.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:30.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:30.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8837ms +2024-05-24 15:08:30.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:30.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:30.757 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:30.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.01ms +2024-05-24 15:08:33.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:33.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:33.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:33.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0803ms +2024-05-24 15:08:34.776 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:34.776 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:34.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:34.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5987ms +2024-05-24 15:08:42.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:42.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:42.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:42.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8239ms +2024-05-24 15:08:42.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:42.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:42.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:42.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1912ms +2024-05-24 15:08:43.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:43.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:43.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:43.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8658ms +2024-05-24 15:08:44.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:44.391 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0427ms +2024-05-24 15:08:44.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:44.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2472ms +2024-05-24 15:08:44.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:44.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:44.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3548ms +2024-05-24 15:08:45.017 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:45.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:45.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:45.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6415ms +2024-05-24 15:08:45.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:45.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:45.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:45.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6847ms +2024-05-24 15:08:48.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:48.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:48.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:48.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7527ms +2024-05-24 15:08:49.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:49.775 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:49.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:49.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1633ms +2024-05-24 15:08:57.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:57.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:57.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:57.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7714ms +2024-05-24 15:08:58.557 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:58.557 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:58.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:58.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8247ms +2024-05-24 15:08:59.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:08:59.499 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:59.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:08:59.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6602ms +2024-05-24 15:09:00.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:09:00.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:09:00.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:09:00.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5461ms +2024-05-24 15:09:00.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:09:00.705 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:09:00.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:09:00.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.297ms +2024-05-24 15:10:15.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:15.989 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:16.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:16.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 47.9355ms +2024-05-24 15:10:16.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:16.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:16.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:16.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2257ms +2024-05-24 15:10:18.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:18.929 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:18.957 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:18.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5611ms +2024-05-24 15:10:24.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:24.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:24.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:24.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9667ms +2024-05-24 15:10:24.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:24.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:24.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:24.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5647ms +2024-05-24 15:10:27.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:27.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:27.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:27.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0615ms +2024-05-24 15:10:27.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:27.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:27.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:27.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9238ms +2024-05-24 15:10:39.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:39.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:39.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:39.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0404ms +2024-05-24 15:10:42.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:42.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:42.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:42.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3385ms +2024-05-24 15:10:54.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:54.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:54.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:54.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8238ms +2024-05-24 15:10:57.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:10:57.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:57.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:10:57.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9428ms +2024-05-24 15:11:09.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:09.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:09.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:09.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2568ms +2024-05-24 15:11:12.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:12.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:12.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:12.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1478ms +2024-05-24 15:11:24.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:24.158 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:24.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:24.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3052ms +2024-05-24 15:11:27.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:27.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:27.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:27.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9066ms +2024-05-24 15:11:39.157 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:39.157 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:39.186 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:39.186 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8702ms +2024-05-24 15:11:42.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:42.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:42.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:42.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5731ms +2024-05-24 15:11:54.161 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:54.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:54.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:54.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4518ms +2024-05-24 15:11:57.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:11:57.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:57.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:11:57.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.478ms +2024-05-24 15:12:02.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:02.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:02.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:02.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2351ms +2024-05-24 15:12:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:02.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:02.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:02.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7948ms +2024-05-24 15:12:04.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:04.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:04.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:04.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6229ms +2024-05-24 15:12:04.505 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:04.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:04.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:04.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1377ms +2024-05-24 15:12:08.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:08.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:08.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:08.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4089ms +2024-05-24 15:12:08.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:08.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:08.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:08.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1804ms +2024-05-24 15:12:09.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:09.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5808ms +2024-05-24 15:12:09.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:09.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5223ms +2024-05-24 15:12:09.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:09.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1745ms +2024-05-24 15:12:09.718 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:09.719 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:09.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7976ms +2024-05-24 15:12:12.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:12.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:12.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:12.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1835ms +2024-05-24 15:12:17.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:17.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:17.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:17.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6171ms +2024-05-24 15:12:19.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:19.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:19.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:19.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7651ms +2024-05-24 15:12:23.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:23.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:23.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:23.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4044ms +2024-05-24 15:12:24.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:24.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:24.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:24.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7988ms +2024-05-24 15:12:24.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:24.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:24.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:24.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5579ms +2024-05-24 15:12:27.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:27.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:27.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:27.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.372ms +2024-05-24 15:12:32.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:32.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:32.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:32.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1446ms +2024-05-24 15:12:34.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:34.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:34.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:34.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5708ms +2024-05-24 15:12:38.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:38.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:38.102 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:38.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.394ms +2024-05-24 15:12:39.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:39.160 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:39.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:39.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9033ms +2024-05-24 15:12:39.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:39.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:39.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:39.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2176ms +2024-05-24 15:12:42.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:42.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:42.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:42.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5934ms +2024-05-24 15:12:47.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:47.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:47.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:47.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2815ms +2024-05-24 15:12:49.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:49.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:49.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:49.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4963ms +2024-05-24 15:12:53.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:53.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:53.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:53.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7871ms +2024-05-24 15:12:54.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:54.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:54.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:54.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7121ms +2024-05-24 15:12:54.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:54.715 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:54.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:54.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7465ms +2024-05-24 15:12:57.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:12:57.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:57.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:12:57.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.731ms +2024-05-24 15:13:02.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:02.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:02.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:02.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6956ms +2024-05-24 15:13:04.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:04.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:04.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:04.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4918ms +2024-05-24 15:13:08.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:08.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:08.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:08.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.1539ms +2024-05-24 15:13:09.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:09.157 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:09.185 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:09.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2614ms +2024-05-24 15:13:09.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:09.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:09.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:09.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2833ms +2024-05-24 15:13:12.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:12.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:12.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:12.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8425ms +2024-05-24 15:13:17.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:17.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:17.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:17.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6133ms +2024-05-24 15:13:19.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:19.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:19.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:19.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0533ms +2024-05-24 15:13:23.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:23.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:23.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:23.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3243ms +2024-05-24 15:13:24.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:24.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:24.187 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:24.187 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9576ms +2024-05-24 15:13:24.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:24.717 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:24.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:24.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6979ms +2024-05-24 15:13:27.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:27.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:27.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:27.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1686ms +2024-05-24 15:13:32.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:32.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:32.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:32.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4825ms +2024-05-24 15:13:34.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:34.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:34.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:34.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1885ms +2024-05-24 15:13:38.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:38.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:38.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:38.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6716ms +2024-05-24 15:13:39.159 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:39.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:39.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:39.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9039ms +2024-05-24 15:13:39.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:39.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:39.748 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:39.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6816ms +2024-05-24 15:13:42.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:42.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:42.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:42.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4389ms +2024-05-24 15:13:47.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:47.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:47.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:47.500 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9211ms +2024-05-24 15:13:49.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:49.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:49.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:49.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5025ms +2024-05-24 15:13:53.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:53.073 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:53.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:53.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8012ms +2024-05-24 15:13:54.159 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:54.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:54.187 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:54.188 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.085ms +2024-05-24 15:13:54.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:54.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:54.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:54.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8618ms +2024-05-24 15:13:57.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:13:57.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:57.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:13:57.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3497ms +2024-05-24 15:14:02.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:02.473 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:02.502 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:02.503 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5439ms +2024-05-24 15:14:04.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:04.506 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:04.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:04.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.095ms +2024-05-24 15:14:08.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:08.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:08.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:08.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6127ms +2024-05-24 15:14:09.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:09.159 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:09.190 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:09.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3987ms +2024-05-24 15:14:09.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:09.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:09.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:09.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2415ms +2024-05-24 15:14:12.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:12.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:12.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:12.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4603ms +2024-05-24 15:14:17.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:17.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:17.501 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:17.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8508ms +2024-05-24 15:14:19.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:19.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:19.535 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:19.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.986ms +2024-05-24 15:14:23.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:23.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:23.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:23.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9115ms +2024-05-24 15:14:24.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:24.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:24.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:24.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.9475ms +2024-05-24 15:14:24.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:24.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:24.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:24.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5482ms +2024-05-24 15:14:27.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:27.191 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:27.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:27.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6265ms +2024-05-24 15:14:32.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:32.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:32.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:32.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4999ms +2024-05-24 15:14:34.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:34.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:34.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:34.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4213ms +2024-05-24 15:14:38.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:38.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:38.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:38.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8277ms +2024-05-24 15:14:39.159 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:39.161 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:39.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:39.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6099ms +2024-05-24 15:14:39.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:39.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:39.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:39.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6052ms +2024-05-24 15:14:42.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:42.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:42.220 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:42.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3575ms +2024-05-24 15:14:47.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:47.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:47.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:47.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6349ms +2024-05-24 15:14:49.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:14:49.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:49.539 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:14:49.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7315ms +2024-05-24 15:15:02.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:02.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1526ms +2024-05-24 15:15:02.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:02.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:02.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9217ms +2024-05-24 15:15:02.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5058ms +2024-05-24 15:15:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:02.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3016ms +2024-05-24 15:15:17.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:17.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:17.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:17.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7908ms +2024-05-24 15:15:17.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:17.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:17.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:17.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.713ms +2024-05-24 15:15:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7609ms +2024-05-24 15:15:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:32.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:32.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9463ms +2024-05-24 15:15:35.632 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:35.636 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:35.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:35.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2787ms +2024-05-24 15:15:35.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:35.947 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:35.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:35.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6348ms +2024-05-24 15:15:37.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:37.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:37.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:37.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9959ms +2024-05-24 15:15:45.473 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:15:45.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:15:45.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:15:45.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 35.3909ms +2024-05-24 15:15:47.400 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:47.401 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7309ms +2024-05-24 15:15:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:47.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7441ms +2024-05-24 15:15:47.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:47.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:47.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5044ms +2024-05-24 15:15:48.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:15:48.291 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:15:48.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:15:48.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 28.8428ms +2024-05-24 15:15:50.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:15:50.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:50.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:15:50.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2476ms +2024-05-24 15:16:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:02.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.645ms +2024-05-24 15:16:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8708ms +2024-05-24 15:16:05.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:05.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:05.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:05.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6152ms +2024-05-24 15:16:14.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:14.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:14.050 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:14.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2107ms +2024-05-24 15:16:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:17.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9148ms +2024-05-24 15:16:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:17.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8308ms +2024-05-24 15:16:20.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:20.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:20.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:20.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5091ms +2024-05-24 15:16:32.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:32.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:32.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:32.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4909ms +2024-05-24 15:16:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:32.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:32.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3456ms +2024-05-24 15:16:35.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:35.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7119ms +2024-05-24 15:16:35.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:35.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1495ms +2024-05-24 15:16:35.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:35.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:35.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.396ms +2024-05-24 15:16:40.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:40.741 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:40.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:40.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0078ms +2024-05-24 15:16:40.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:40.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:40.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:40.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8365ms +2024-05-24 15:16:43.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:43.740 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:43.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:43.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0497ms +2024-05-24 15:16:44.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:44.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:44.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:44.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.94ms +2024-05-24 15:16:44.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:44.561 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:44.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:44.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0496ms +2024-05-24 15:16:45.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:45.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:45.965 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:45.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5872ms +2024-05-24 15:16:46.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:46.032 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:46.060 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:46.061 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0101ms +2024-05-24 15:16:46.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:46.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:46.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4284ms +2024-05-24 15:16:46.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:16:46.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:16:46.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:16:46.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 31.9957ms +2024-05-24 15:16:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:47.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9478ms +2024-05-24 15:16:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:47.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7246ms +2024-05-24 15:16:50.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:50.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:50.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:50.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:50.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:50.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 192.382ms +2024-05-24 15:16:50.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:50.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 99.9891ms +2024-05-24 15:16:55.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:55.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:55.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:55.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6643ms +2024-05-24 15:16:59.556 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:16:59.557 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:59.590 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:16:59.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6604ms +2024-05-24 15:17:01.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:01.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:01.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:01.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9349ms +2024-05-24 15:17:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:02.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1437ms +2024-05-24 15:17:02.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:02.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:02.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:02.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0067ms +2024-05-24 15:17:05.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:05.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:05.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:05.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2929ms +2024-05-24 15:17:05.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:05.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:05.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:05.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9636ms +2024-05-24 15:17:10.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:10.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:10.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:10.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3762ms +2024-05-24 15:17:14.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:14.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:14.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:14.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7499ms +2024-05-24 15:17:16.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:16.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:16.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:16.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9307ms +2024-05-24 15:17:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5922ms +2024-05-24 15:17:17.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:17.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0942ms +2024-05-24 15:17:20.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:20.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:20.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:20.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6486ms +2024-05-24 15:17:20.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:20.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:20.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:20.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2129ms +2024-05-24 15:17:25.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:25.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:25.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:25.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.7896ms +2024-05-24 15:17:27.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:27.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:27.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:27.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2601ms +2024-05-24 15:17:27.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:27.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:27.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:27.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.297ms +2024-05-24 15:17:28.462 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:28.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7271ms +2024-05-24 15:17:28.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:28.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9544ms +2024-05-24 15:17:28.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:28.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:28.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.739ms +2024-05-24 15:17:29.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:17:29.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:17:29.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:17:29.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 30.0128ms +2024-05-24 15:17:29.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:29.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:29.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:29.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9124ms +2024-05-24 15:17:30.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:30.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:30.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:30.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9095ms +2024-05-24 15:17:31.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:31.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:31.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:31.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2547ms +2024-05-24 15:17:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9969ms +2024-05-24 15:17:32.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:32.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:32.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8899ms +2024-05-24 15:17:35.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:35.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:35.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:35.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2236ms +2024-05-24 15:17:35.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:35.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:35.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:35.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1398ms +2024-05-24 15:17:36.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:36.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:36.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:36.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1337ms +2024-05-24 15:17:36.092 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:36.093 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:36.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:36.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.684ms +2024-05-24 15:17:39.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:39.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7295ms +2024-05-24 15:17:39.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:39.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8589ms +2024-05-24 15:17:39.417 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:39.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:39.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9525ms +2024-05-24 15:17:40.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:17:40.024 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:17:40.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:17:40.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 28.6355ms +2024-05-24 15:17:40.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:40.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:40.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:40.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8539ms +2024-05-24 15:17:42.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:42.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:42.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:42.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4685ms +2024-05-24 15:17:43.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:43.618 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:43.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:43.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2146ms +2024-05-24 15:17:44.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:44.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:44.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:44.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.9503ms +2024-05-24 15:17:46.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:46.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:46.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:46.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6392ms +2024-05-24 15:17:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4046ms +2024-05-24 15:17:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:47.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:47.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7709ms +2024-05-24 15:17:50.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:50.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:50.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:50.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5246ms +2024-05-24 15:17:50.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:50.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:50.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:50.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9376ms +2024-05-24 15:17:51.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:51.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:51.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:51.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5317ms +2024-05-24 15:17:54.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:54.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:54.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:54.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6439ms +2024-05-24 15:17:55.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:55.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:55.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:55.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8948ms +2024-05-24 15:17:57.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:57.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:57.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:57.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9019ms +2024-05-24 15:17:58.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:58.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:58.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:58.663 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3623ms +2024-05-24 15:17:59.543 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:17:59.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:59.578 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:17:59.578 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4663ms +2024-05-24 15:18:01.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:01.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:01.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:01.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6559ms +2024-05-24 15:18:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6952ms +2024-05-24 15:18:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:02.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3943ms +2024-05-24 15:18:05.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:05.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:05.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:05.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4667ms +2024-05-24 15:18:05.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:05.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:05.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:05.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9204ms +2024-05-24 15:18:06.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:06.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:06.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:06.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.2017ms +2024-05-24 15:18:09.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:09.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:09.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:09.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2058ms +2024-05-24 15:18:10.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:10.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:10.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:10.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3309ms +2024-05-24 15:18:12.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:12.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:12.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:12.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.0143ms +2024-05-24 15:18:13.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:13.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:13.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:13.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.6974ms +2024-05-24 15:18:14.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:14.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:14.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:14.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9083ms +2024-05-24 15:18:16.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:16.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:16.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3707ms +2024-05-24 15:18:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:17.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.741ms +2024-05-24 15:18:17.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:17.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:17.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:17.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4853ms +2024-05-24 15:18:20.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:20.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:20.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:20.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1191ms +2024-05-24 15:18:20.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:20.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:20.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:20.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3511ms +2024-05-24 15:18:21.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:21.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:21.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:21.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6194ms +2024-05-24 15:18:24.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:24.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:24.445 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:24.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2768ms +2024-05-24 15:18:25.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:25.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:25.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:25.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.614ms +2024-05-24 15:18:27.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:27.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:27.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:27.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1063ms +2024-05-24 15:18:28.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:28.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:28.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:28.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1506ms +2024-05-24 15:18:29.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:29.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:29.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:29.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6441ms +2024-05-24 15:18:31.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:31.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:31.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:31.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1134ms +2024-05-24 15:18:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5118ms +2024-05-24 15:18:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4518ms +2024-05-24 15:18:35.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:35.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:35.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:35.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9961ms +2024-05-24 15:18:35.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:35.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:35.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:35.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7513ms +2024-05-24 15:18:36.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:36.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:36.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:36.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.508ms +2024-05-24 15:18:39.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:39.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:39.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:39.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5291ms +2024-05-24 15:18:40.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:40.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:40.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:40.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7841ms +2024-05-24 15:18:42.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:42.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:42.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:42.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8379ms +2024-05-24 15:18:43.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:43.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:43.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:43.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5676ms +2024-05-24 15:18:44.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:44.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:44.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:44.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5804ms +2024-05-24 15:18:46.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:46.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:46.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:46.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2138ms +2024-05-24 15:18:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:47.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:47.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9859ms +2024-05-24 15:18:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:47.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3492ms +2024-05-24 15:18:50.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:50.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:50.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:50.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3288ms +2024-05-24 15:18:50.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:50.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:50.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:50.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1226ms +2024-05-24 15:18:51.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:51.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:51.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:51.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8613ms +2024-05-24 15:18:54.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:54.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:54.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:54.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3234ms +2024-05-24 15:18:55.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:55.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:55.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:55.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3443ms +2024-05-24 15:18:57.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:57.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:57.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:57.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0173ms +2024-05-24 15:18:58.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:58.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:58.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:58.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5855ms +2024-05-24 15:18:59.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:18:59.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:59.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:18:59.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3968ms +2024-05-24 15:19:01.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:01.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:01.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:01.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9907ms +2024-05-24 15:19:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:02.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:02.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5238ms +2024-05-24 15:19:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:02.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:02.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7016ms +2024-05-24 15:19:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:05.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:05.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4368ms +2024-05-24 15:19:05.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:05.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:05.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:05.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6635ms +2024-05-24 15:19:06.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:06.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:06.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:06.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8102ms +2024-05-24 15:19:09.414 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:09.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:09.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:09.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1665ms +2024-05-24 15:19:10.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:10.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:10.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:10.820 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.0139ms +2024-05-24 15:19:12.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:12.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:12.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:12.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.49ms +2024-05-24 15:19:13.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:13.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:13.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:13.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9643ms +2024-05-24 15:19:14.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:14.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:14.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:14.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.047ms +2024-05-24 15:19:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:16.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5195ms +2024-05-24 15:19:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:17.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6081ms +2024-05-24 15:19:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:17.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.739ms +2024-05-24 15:19:20.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:20.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:20.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:20.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8769ms +2024-05-24 15:19:20.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:20.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:20.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:20.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0565ms +2024-05-24 15:19:21.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:21.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:21.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:21.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8614ms +2024-05-24 15:19:24.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:24.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:24.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:24.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6525ms +2024-05-24 15:19:25.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:25.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:25.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:25.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7553ms +2024-05-24 15:19:27.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:27.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:27.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:27.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9752ms +2024-05-24 15:19:28.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:28.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:28.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:28.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7638ms +2024-05-24 15:19:29.549 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:29.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:29.581 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:29.581 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4637ms +2024-05-24 15:19:31.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:31.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:31.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:31.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0976ms +2024-05-24 15:19:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9488ms +2024-05-24 15:19:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:32.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:32.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0883ms +2024-05-24 15:19:35.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:35.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:35.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:35.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7494ms +2024-05-24 15:19:35.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:35.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:35.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:35.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3853ms +2024-05-24 15:19:36.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:36.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:36.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:36.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0691ms +2024-05-24 15:19:39.429 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:39.431 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:39.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:39.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1315ms +2024-05-24 15:19:40.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:40.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:40.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:40.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3282ms +2024-05-24 15:19:42.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:42.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:42.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:42.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6545ms +2024-05-24 15:19:43.624 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:43.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:43.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:43.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.074ms +2024-05-24 15:19:44.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:44.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:44.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:44.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.8866ms +2024-05-24 15:19:46.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:46.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:46.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:46.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1458ms +2024-05-24 15:19:47.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:47.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:47.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:47.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.279ms +2024-05-24 15:19:47.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:47.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:47.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8058ms +2024-05-24 15:19:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:50.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:50.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:50.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2263ms +2024-05-24 15:19:50.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:50.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:50.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:50.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2143ms +2024-05-24 15:19:51.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:51.087 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:51.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:51.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6461ms +2024-05-24 15:19:54.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:54.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:54.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:54.452 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6327ms +2024-05-24 15:19:55.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:55.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:55.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:55.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.641ms +2024-05-24 15:19:57.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:57.170 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:57.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:57.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2821ms +2024-05-24 15:19:58.630 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:58.631 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:58.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:58.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3253ms +2024-05-24 15:19:59.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:19:59.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:59.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:19:59.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4773ms +2024-05-24 15:20:01.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:01.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:01.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:01.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3737ms +2024-05-24 15:20:02.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:02.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1774ms +2024-05-24 15:20:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:02.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:02.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1518ms +2024-05-24 15:20:05.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:05.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:05.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:05.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5685ms +2024-05-24 15:20:05.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:05.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:05.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:05.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9491ms +2024-05-24 15:20:06.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:06.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:06.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:06.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5485ms +2024-05-24 15:20:09.421 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:09.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:09.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:09.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7771ms +2024-05-24 15:20:10.794 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:10.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:10.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:10.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5473ms +2024-05-24 15:20:12.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:12.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:12.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:12.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2051ms +2024-05-24 15:20:13.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:13.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:13.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:13.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0602ms +2024-05-24 15:20:14.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:14.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:14.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:14.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9287ms +2024-05-24 15:20:16.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:16.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:16.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3998ms +2024-05-24 15:20:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:17.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:17.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6758ms +2024-05-24 15:20:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5614ms +2024-05-24 15:20:20.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:20.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:20.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:20.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0632ms +2024-05-24 15:20:20.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:20.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:20.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:20.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4425ms +2024-05-24 15:20:21.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:21.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:21.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:21.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0239ms +2024-05-24 15:20:24.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:24.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:24.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:24.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1175ms +2024-05-24 15:20:25.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:25.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:25.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:25.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8539ms +2024-05-24 15:20:27.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:27.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:27.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:27.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1251ms +2024-05-24 15:20:28.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:28.618 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:28.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:28.661 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.3744ms +2024-05-24 15:20:29.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:29.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:29.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:29.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9873ms +2024-05-24 15:20:31.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:31.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:31.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:31.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6791ms +2024-05-24 15:20:32.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:32.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:32.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:32.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8722ms +2024-05-24 15:20:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:32.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7707ms +2024-05-24 15:20:35.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:35.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:35.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:35.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.552ms +2024-05-24 15:20:35.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:35.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:35.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:35.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6379ms +2024-05-24 15:20:36.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:36.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:36.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:36.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6504ms +2024-05-24 15:20:39.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:39.415 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:39.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:39.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6276ms +2024-05-24 15:20:40.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:40.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:40.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:40.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2331ms +2024-05-24 15:20:42.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:42.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:42.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:42.191 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8729ms +2024-05-24 15:20:43.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:43.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:43.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:43.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5803ms +2024-05-24 15:20:44.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:44.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:44.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:44.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 72.5886ms +2024-05-24 15:20:46.073 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:46.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:46.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:46.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.4345ms +2024-05-24 15:20:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:48.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:48.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 448.3ms +2024-05-24 15:20:48.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:48.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 539.281ms +2024-05-24 15:20:50.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:50.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:50.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:50.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6201ms +2024-05-24 15:20:50.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:50.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:50.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:50.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2391ms +2024-05-24 15:20:51.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:51.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:51.117 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:51.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.1521ms +2024-05-24 15:20:54.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:54.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:54.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:54.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3265ms +2024-05-24 15:20:55.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:55.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:55.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:55.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1826ms +2024-05-24 15:20:57.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:57.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:57.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:57.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9368ms +2024-05-24 15:20:58.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:58.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:58.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:58.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2337ms +2024-05-24 15:20:59.546 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:20:59.547 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:59.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:20:59.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7345ms +2024-05-24 15:21:01.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:01.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:01.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:01.107 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.4481ms +2024-05-24 15:21:02.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:02.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:02.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:02.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7734ms +2024-05-24 15:21:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:02.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:02.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 45.3782ms +2024-05-24 15:21:05.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:05.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:05.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:05.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7654ms +2024-05-24 15:21:05.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:05.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:05.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:05.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8755ms +2024-05-24 15:21:06.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:06.090 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:06.121 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:06.122 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5678ms +2024-05-24 15:21:09.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:09.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:09.451 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:09.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9424ms +2024-05-24 15:21:10.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:10.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:10.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:10.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.357ms +2024-05-24 15:21:12.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:12.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:12.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:12.203 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4121ms +2024-05-24 15:21:13.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:13.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:13.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:13.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8401ms +2024-05-24 15:21:14.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:14.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:14.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:14.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8349ms +2024-05-24 15:21:16.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:16.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:16.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:16.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.794ms +2024-05-24 15:21:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:17.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:17.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2306ms +2024-05-24 15:21:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:17.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7297ms +2024-05-24 15:21:20.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:20.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:20.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:20.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8331ms +2024-05-24 15:21:20.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:20.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:20.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:20.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2313ms +2024-05-24 15:21:21.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:21.089 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:21.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:21.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8192ms +2024-05-24 15:21:24.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:24.418 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:24.446 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:24.446 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5711ms +2024-05-24 15:21:25.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:25.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:25.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:25.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0227ms +2024-05-24 15:21:27.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:27.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:27.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:27.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3215ms +2024-05-24 15:21:28.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:28.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:28.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:28.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8042ms +2024-05-24 15:21:29.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:29.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:29.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:29.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.402ms +2024-05-24 15:21:31.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:31.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:31.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:31.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1248ms +2024-05-24 15:21:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4263ms +2024-05-24 15:21:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2771ms +2024-05-24 15:21:35.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:35.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:35.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:35.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1339ms +2024-05-24 15:21:35.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:35.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:35.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:35.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4778ms +2024-05-24 15:21:36.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:36.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:36.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:36.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5312ms +2024-05-24 15:21:39.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:39.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:39.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:39.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5244ms +2024-05-24 15:21:40.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:40.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:40.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:40.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3521ms +2024-05-24 15:21:42.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:42.170 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:42.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:42.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.571ms +2024-05-24 15:21:43.620 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:43.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:43.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:43.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4685ms +2024-05-24 15:21:44.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:44.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:44.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:44.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7589ms +2024-05-24 15:21:46.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:46.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:46.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3656ms +2024-05-24 15:21:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0281ms +2024-05-24 15:21:47.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:47.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8876ms +2024-05-24 15:21:50.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:50.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:50.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:50.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8355ms +2024-05-24 15:21:50.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:50.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:50.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:50.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3361ms +2024-05-24 15:21:51.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:51.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:51.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:51.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5546ms +2024-05-24 15:21:54.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:54.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:54.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:54.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0746ms +2024-05-24 15:21:55.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:55.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:55.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:55.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.303ms +2024-05-24 15:21:57.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:57.163 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:57.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:57.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9436ms +2024-05-24 15:21:58.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:58.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:58.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:58.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2043ms +2024-05-24 15:21:59.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:21:59.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:59.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:21:59.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0181ms +2024-05-24 15:22:01.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:01.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:01.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:01.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3299ms +2024-05-24 15:22:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:02.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2637ms +2024-05-24 15:22:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7872ms +2024-05-24 15:22:05.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:05.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:05.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:05.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7465ms +2024-05-24 15:22:05.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:05.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:05.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:05.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0441ms +2024-05-24 15:22:06.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:06.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:06.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:06.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5348ms +2024-05-24 15:22:09.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:09.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:09.444 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:09.444 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0859ms +2024-05-24 15:22:10.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:10.778 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:10.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:10.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8609ms +2024-05-24 15:22:12.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:12.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:12.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:12.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3988ms +2024-05-24 15:22:13.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:13.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:13.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:13.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7898ms +2024-05-24 15:22:14.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:14.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:14.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:14.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8322ms +2024-05-24 15:22:16.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:16.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:16.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:16.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4643ms +2024-05-24 15:22:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8303ms +2024-05-24 15:22:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2638ms +2024-05-24 15:22:20.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:20.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:20.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:20.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6511ms +2024-05-24 15:22:20.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:20.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:20.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:20.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4617ms +2024-05-24 15:22:21.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:21.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:21.114 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:21.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1125ms +2024-05-24 15:22:24.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:24.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:24.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:24.447 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6648ms +2024-05-24 15:22:25.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:25.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:25.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:25.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0886ms +2024-05-24 15:22:27.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:27.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:27.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:27.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9352ms +2024-05-24 15:22:28.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:28.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:28.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:28.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3909ms +2024-05-24 15:22:29.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:29.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:29.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:29.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.942ms +2024-05-24 15:22:31.071 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:31.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:31.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:31.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9793ms +2024-05-24 15:22:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.372ms +2024-05-24 15:22:32.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:32.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:32.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:32.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9588ms +2024-05-24 15:22:35.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:35.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:35.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:35.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4916ms +2024-05-24 15:22:35.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:35.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:35.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:35.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6997ms +2024-05-24 15:22:36.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:36.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:36.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:36.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1021ms +2024-05-24 15:22:39.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:39.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:39.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:39.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5378ms +2024-05-24 15:22:40.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:40.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:40.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:40.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9458ms +2024-05-24 15:22:42.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:42.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:42.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:42.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4749ms +2024-05-24 15:22:43.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:43.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:43.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:43.653 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5945ms +2024-05-24 15:22:44.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:44.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:44.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:44.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5736ms +2024-05-24 15:22:46.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:46.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:46.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:46.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7601ms +2024-05-24 15:22:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:47.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:47.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5124ms +2024-05-24 15:22:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:47.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9276ms +2024-05-24 15:22:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:50.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:50.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0681ms +2024-05-24 15:22:50.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:50.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:50.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:50.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4731ms +2024-05-24 15:22:51.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:51.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:51.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:51.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1425ms +2024-05-24 15:22:54.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:54.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:54.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:54.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.474ms +2024-05-24 15:22:55.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:55.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:55.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:55.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7361ms +2024-05-24 15:22:57.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:57.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:57.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:57.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.861ms +2024-05-24 15:22:58.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:58.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:58.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:58.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3567ms +2024-05-24 15:22:59.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:22:59.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:59.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:22:59.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8288ms +2024-05-24 15:23:01.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:01.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:01.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:01.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4942ms +2024-05-24 15:23:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:02.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8558ms +2024-05-24 15:23:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:02.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:02.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:02.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2171ms +2024-05-24 15:23:05.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:05.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:05.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:05.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1132ms +2024-05-24 15:23:05.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:05.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:05.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:05.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7342ms +2024-05-24 15:23:06.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:06.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:06.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:06.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6255ms +2024-05-24 15:23:09.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:09.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:09.452 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:09.453 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7039ms +2024-05-24 15:23:10.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:10.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:10.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:10.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5058ms +2024-05-24 15:23:12.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:12.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:12.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:12.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0778ms +2024-05-24 15:23:13.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:13.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:13.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:13.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1028ms +2024-05-24 15:23:14.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:14.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:14.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:14.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2411ms +2024-05-24 15:23:16.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:16.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:16.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9239ms +2024-05-24 15:23:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0385ms +2024-05-24 15:23:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2006ms +2024-05-24 15:23:20.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:20.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:20.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:20.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0659ms +2024-05-24 15:23:20.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:20.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:20.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:20.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.786ms +2024-05-24 15:23:21.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:21.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:21.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:21.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2657ms +2024-05-24 15:23:24.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:24.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:24.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:24.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6012ms +2024-05-24 15:23:25.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:25.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:25.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:25.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3355ms +2024-05-24 15:23:27.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:27.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:27.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:27.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1702ms +2024-05-24 15:23:28.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:28.621 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:28.652 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:28.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9766ms +2024-05-24 15:23:29.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:29.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:29.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:29.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.793ms +2024-05-24 15:23:31.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:31.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:31.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:31.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7877ms +2024-05-24 15:23:32.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:32.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:32.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:32.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5518ms +2024-05-24 15:23:32.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:32.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:32.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:32.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5704ms +2024-05-24 15:23:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:35.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:35.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1365ms +2024-05-24 15:23:35.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:35.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:35.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:35.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.402ms +2024-05-24 15:23:36.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:36.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:36.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:36.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1404ms +2024-05-24 15:23:39.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:39.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:39.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:39.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8168ms +2024-05-24 15:23:40.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:40.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:40.822 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:40.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.2091ms +2024-05-24 15:23:42.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:42.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:42.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:42.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.7034ms +2024-05-24 15:23:43.626 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:43.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:43.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:43.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1821ms +2024-05-24 15:23:44.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:44.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:44.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:44.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9373ms +2024-05-24 15:23:46.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:46.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:46.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:46.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6209ms +2024-05-24 15:23:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:47.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:47.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:47.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4375ms +2024-05-24 15:23:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:47.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2306ms +2024-05-24 15:23:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:50.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:50.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:50.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6659ms +2024-05-24 15:23:50.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:50.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:50.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:50.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0979ms +2024-05-24 15:23:51.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:51.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:51.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:51.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4366ms +2024-05-24 15:23:54.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:54.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:54.455 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:54.456 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3836ms +2024-05-24 15:23:55.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:55.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:55.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:55.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1ms +2024-05-24 15:23:57.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:57.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:57.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:57.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0685ms +2024-05-24 15:23:58.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:58.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:58.661 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:58.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0995ms +2024-05-24 15:23:59.556 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:23:59.559 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:59.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:23:59.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.581ms +2024-05-24 15:24:01.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:01.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:01.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:01.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0701ms +2024-05-24 15:24:02.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:02.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:02.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:02.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1126ms +2024-05-24 15:24:02.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:02.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:02.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:02.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4684ms +2024-05-24 15:24:05.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:05.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:05.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:05.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5867ms +2024-05-24 15:24:05.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:05.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:05.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:05.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8898ms +2024-05-24 15:24:06.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:06.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:06.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:06.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7015ms +2024-05-24 15:24:09.424 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:09.425 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:09.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:09.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7244ms +2024-05-24 15:24:10.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:10.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:10.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:10.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1499ms +2024-05-24 15:24:12.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:12.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:12.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:12.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7129ms +2024-05-24 15:24:13.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:13.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:13.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:13.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1589ms +2024-05-24 15:24:14.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:14.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:14.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:14.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3551ms +2024-05-24 15:24:16.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:16.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:16.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:16.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0824ms +2024-05-24 15:24:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2373ms +2024-05-24 15:24:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8969ms +2024-05-24 15:24:20.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:20.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:20.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:20.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9338ms +2024-05-24 15:24:20.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:20.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:20.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:20.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8776ms +2024-05-24 15:24:21.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:24:21.086 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:21.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:24:21.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3781ms +2024-05-24 15:29:59.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - application/json 18 +2024-05-24 15:29:59.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:29:59.973 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:29:59.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 30.5693ms +2024-05-24 15:30:33.896 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:30:33.907 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 404 0 null 10.3382ms +2024-05-24 15:30:33.917 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status, Response status code: 404 +2024-05-24 15:31:22.098 +02:00 [INF] Deregistering a service [id: notifications-service:97c4cdf2849147b5a4767df463af50f9] from Consul... +2024-05-24 15:31:22.100 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:97c4cdf2849147b5a4767df463af50f9" +2024-05-24 15:31:22.101 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:97c4cdf2849147b5a4767df463af50f9 +2024-05-24 15:31:22.102 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:97c4cdf2849147b5a4767df463af50f9 +2024-05-24 15:31:22.112 +02:00 [INF] Received HTTP response headers after 8.015ms - 200 +2024-05-24 15:31:22.112 +02:00 [INF] End processing HTTP request after 11.039ms - 200 +2024-05-24 15:31:22.113 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:31:22.114 +02:00 [INF] Deregistered a service [id: notifications-service:97c4cdf2849147b5a4767df463af50f9] from Consul. +2024-05-24 15:31:36.921 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:31:37.022 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:31:37.102 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:31:37.195 +02:00 [INF] Registering a service [id: notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760] in Consul... +2024-05-24 15:31:37.225 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:31:37.231 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:31:37.237 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:31:37.250 +02:00 [INF] Received HTTP response headers after 10.2427ms - 200 +2024-05-24 15:31:37.252 +02:00 [INF] End processing HTTP request after 21.9976ms - 200 +2024-05-24 15:31:37.256 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:31:37.256 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:31:37.257 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:31:37.257 +02:00 [INF] Registered a service [id: notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760] in Consul. +2024-05-24 15:31:37.266 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:31:37.280 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:31:37.282 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:31:37.284 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:31:37.289 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:31:37.296 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:31:37.299 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:31:37.302 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:31:39.366 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:31:39.476 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:31:39.607 +02:00 [ERR] There was an error when processing a message with id: '921d460e9f604be0aa62bbc97336f13c'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:31:39.636 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:31:39.673 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:31:39.694 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 329.1436ms +2024-05-24 15:32:46.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:32:46.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:46.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:46.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 82.6889ms +2024-05-24 15:32:46.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:32:46.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:46.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:46.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2216ms +2024-05-24 15:32:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:32:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:47.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8821ms +2024-05-24 15:32:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:32:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.579ms +2024-05-24 15:32:49.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:32:49.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:49.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:32:49.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1642ms +2024-05-24 15:32:50.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 15:32:50.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:32:50.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 15:32:50.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 37.9859ms +2024-05-24 15:33:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:01.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:01.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:01.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3299ms +2024-05-24 15:33:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9275ms +2024-05-24 15:33:02.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:02.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:02.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:02.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1211ms +2024-05-24 15:33:16.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:16.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:16.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2157ms +2024-05-24 15:33:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:17.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:17.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:17.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6362ms +2024-05-24 15:33:17.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:17.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:17.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:17.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9996ms +2024-05-24 15:33:23.516 +02:00 [INF] Deregistering a service [id: notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760] from Consul... +2024-05-24 15:33:23.518 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760" +2024-05-24 15:33:23.519 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760 +2024-05-24 15:33:23.519 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760 +2024-05-24 15:33:23.523 +02:00 [INF] Received HTTP response headers after 3.2291ms - 200 +2024-05-24 15:33:23.523 +02:00 [INF] End processing HTTP request after 4.8935ms - 200 +2024-05-24 15:33:23.524 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:33:23.525 +02:00 [INF] Deregistered a service [id: notifications-service:4ebf3906f4fa4c4c819f0d777b4dc760] from Consul. +2024-05-24 15:33:30.027 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:33:30.081 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:33:30.153 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:33:30.212 +02:00 [INF] Registering a service [id: notifications-service:ef69122cdbed495b9c202d49fa6fcde5] in Consul... +2024-05-24 15:33:30.230 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:33:30.234 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:33:30.234 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:33:30.243 +02:00 [INF] Received HTTP response headers after 6.8616ms - 200 +2024-05-24 15:33:30.244 +02:00 [INF] End processing HTTP request after 11.1393ms - 200 +2024-05-24 15:33:30.247 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:33:30.248 +02:00 [INF] Registered a service [id: notifications-service:ef69122cdbed495b9c202d49fa6fcde5] in Consul. +2024-05-24 15:33:30.255 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:33:30.263 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:33:30.263 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:33:30.266 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:33:30.269 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:33:30.271 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:33:30.273 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:33:30.275 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:33:30.277 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:33:30.279 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:33:31.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:31.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 146.7031ms +2024-05-24 15:33:32.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:32.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:32.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.5796ms +2024-05-24 15:33:32.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:32.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.545ms +2024-05-24 15:33:32.893 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:33:32.898 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:33:33.007 +02:00 [ERR] There was an error when processing a message with id: '3bdf868963ed43ba9aa84a98febc94e8'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:33:33.027 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:33:33.043 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:33:33.050 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 156.8517ms +2024-05-24 15:33:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:46.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:46.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3883ms +2024-05-24 15:33:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:47.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:47.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2573ms +2024-05-24 15:33:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:33:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:33:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9367ms +2024-05-24 15:34:01.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:01.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:01.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9275ms +2024-05-24 15:34:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:02.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:02.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8445ms +2024-05-24 15:34:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:02.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7431ms +2024-05-24 15:34:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:16.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:16.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4351ms +2024-05-24 15:34:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:17.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6922ms +2024-05-24 15:34:17.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:17.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:17.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6226ms +2024-05-24 15:34:31.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:31.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:31.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:31.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.0655ms +2024-05-24 15:34:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:32.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:32.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:32.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1411ms +2024-05-24 15:34:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:34:32.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:32.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:34:32.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4325ms +2024-05-24 15:34:41.920 +02:00 [INF] Deregistering a service [id: notifications-service:ef69122cdbed495b9c202d49fa6fcde5] from Consul... +2024-05-24 15:34:41.922 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ef69122cdbed495b9c202d49fa6fcde5" +2024-05-24 15:34:41.922 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ef69122cdbed495b9c202d49fa6fcde5 +2024-05-24 15:34:41.923 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ef69122cdbed495b9c202d49fa6fcde5 +2024-05-24 15:34:41.926 +02:00 [INF] Received HTTP response headers after 2.9154ms - 200 +2024-05-24 15:34:41.926 +02:00 [INF] End processing HTTP request after 4.0304ms - 200 +2024-05-24 15:34:41.927 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:34:41.928 +02:00 [INF] Deregistered a service [id: notifications-service:ef69122cdbed495b9c202d49fa6fcde5] from Consul. +2024-05-24 15:34:57.014 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:34:57.075 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:34:57.128 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:34:57.195 +02:00 [INF] Registering a service [id: notifications-service:26bd1f3947744264be32c8480d9d2fc4] in Consul... +2024-05-24 15:34:57.218 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:34:57.223 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:34:57.223 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:34:57.234 +02:00 [INF] Received HTTP response headers after 7.174ms - 200 +2024-05-24 15:34:57.235 +02:00 [INF] End processing HTTP request after 13.0924ms - 200 +2024-05-24 15:34:57.238 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:34:57.239 +02:00 [INF] Registered a service [id: notifications-service:26bd1f3947744264be32c8480d9d2fc4] in Consul. +2024-05-24 15:34:57.241 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:34:57.241 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:34:57.249 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:34:57.258 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:34:57.261 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:34:57.263 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:34:57.266 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:34:57.269 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:34:57.272 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:34:57.273 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:35:01.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:01.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 140.3278ms +2024-05-24 15:35:02.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:02.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.038ms +2024-05-24 15:35:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:02.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:02.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.132ms +2024-05-24 15:35:03.055 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:35:03.060 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:35:03.173 +02:00 [ERR] There was an error when processing a message with id: '7ef08324f3494114808a638377e0536f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:35:03.194 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:35:03.214 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:35:03.221 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 165.8698ms +2024-05-24 15:35:16.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:16.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:16.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.333ms +2024-05-24 15:35:17.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:17.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:17.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:17.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0349ms +2024-05-24 15:35:17.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:17.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:17.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:17.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4012ms +2024-05-24 15:35:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:31.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:31.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:31.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5324ms +2024-05-24 15:35:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1695ms +2024-05-24 15:35:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7523ms +2024-05-24 15:35:46.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:46.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:46.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.8125ms +2024-05-24 15:35:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:47.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1493ms +2024-05-24 15:35:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:35:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:47.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:35:47.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 51.8933ms +2024-05-24 15:36:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:01.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:01.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:01.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9684ms +2024-05-24 15:36:02.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:02.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0844ms +2024-05-24 15:36:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:02.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:02.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9374ms +2024-05-24 15:36:16.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:16.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:16.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:16.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7398ms +2024-05-24 15:36:17.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:17.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:17.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:17.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1268ms +2024-05-24 15:36:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:17.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3803ms +2024-05-24 15:36:31.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:31.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:31.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:31.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9035ms +2024-05-24 15:36:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2987ms +2024-05-24 15:36:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:32.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1161ms +2024-05-24 15:36:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:46.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:46.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:46.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1566ms +2024-05-24 15:36:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4024ms +2024-05-24 15:36:47.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:36:47.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:47.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:36:47.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1249ms +2024-05-24 15:37:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:01.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:01.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5662ms +2024-05-24 15:37:02.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:02.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:02.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:02.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9166ms +2024-05-24 15:37:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:02.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:02.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4346ms +2024-05-24 15:37:16.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:16.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6224ms +2024-05-24 15:37:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:17.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:17.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9825ms +2024-05-24 15:37:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:17.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8147ms +2024-05-24 15:37:31.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:31.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:31.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:31.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1443ms +2024-05-24 15:37:32.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:32.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:32.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:32.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.549ms +2024-05-24 15:37:32.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:32.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:32.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:32.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8962ms +2024-05-24 15:37:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:46.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:46.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:46.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5335ms +2024-05-24 15:37:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:47.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:47.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.712ms +2024-05-24 15:37:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:37:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:47.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:37:47.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8835ms +2024-05-24 15:38:01.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:01.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:01.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:01.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4841ms +2024-05-24 15:38:02.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:02.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:02.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2287ms +2024-05-24 15:38:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:02.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:02.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0936ms +2024-05-24 15:38:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:16.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:16.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:16.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7086ms +2024-05-24 15:38:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:17.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:17.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1633ms +2024-05-24 15:38:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2599ms +2024-05-24 15:38:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:31.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1059ms +2024-05-24 15:38:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:32.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:32.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3314ms +2024-05-24 15:38:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:32.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:32.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.28ms +2024-05-24 15:38:46.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:46.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:46.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:46.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7836ms +2024-05-24 15:38:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:47.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:47.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8054ms +2024-05-24 15:38:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:38:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:47.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:38:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5963ms +2024-05-24 15:38:52.646 +02:00 [INF] Deregistering a service [id: notifications-service:26bd1f3947744264be32c8480d9d2fc4] from Consul... +2024-05-24 15:38:52.650 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:26bd1f3947744264be32c8480d9d2fc4" +2024-05-24 15:38:52.651 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:26bd1f3947744264be32c8480d9d2fc4 +2024-05-24 15:38:52.652 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:26bd1f3947744264be32c8480d9d2fc4 +2024-05-24 15:38:52.662 +02:00 [INF] Received HTTP response headers after 9.0513ms - 200 +2024-05-24 15:38:52.662 +02:00 [INF] End processing HTTP request after 10.9326ms - 200 +2024-05-24 15:38:52.663 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:38:52.665 +02:00 [INF] Deregistered a service [id: notifications-service:26bd1f3947744264be32c8480d9d2fc4] from Consul. +2024-05-24 15:38:59.081 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:38:59.162 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:38:59.223 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:38:59.291 +02:00 [INF] Registering a service [id: notifications-service:a0cdc4259750438aae30ef00419f420c] in Consul... +2024-05-24 15:38:59.311 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:38:59.314 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:38:59.315 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:38:59.325 +02:00 [INF] Received HTTP response headers after 7.6701ms - 200 +2024-05-24 15:38:59.326 +02:00 [INF] End processing HTTP request after 12.8214ms - 200 +2024-05-24 15:38:59.329 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:38:59.330 +02:00 [INF] Registered a service [id: notifications-service:a0cdc4259750438aae30ef00419f420c] in Consul. +2024-05-24 15:38:59.338 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:38:59.342 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:38:59.343 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:38:59.352 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:38:59.354 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:38:59.357 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:38:59.360 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:38:59.363 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:38:59.365 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:38:59.367 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:39:01.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:01.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 156.5477ms +2024-05-24 15:39:02.276 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:39:02.280 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:39:02.378 +02:00 [ERR] There was an error when processing a message with id: 'f6f48c3afc9142a89c70756ff6ba0f82'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:39:02.394 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:39:02.411 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:39:02.423 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 147.2349ms +2024-05-24 15:39:02.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:02.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2169ms +2024-05-24 15:39:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:02.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.288ms +2024-05-24 15:39:16.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:16.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:16.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:16.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7101ms +2024-05-24 15:39:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:17.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:17.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4867ms +2024-05-24 15:39:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:17.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:17.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4634ms +2024-05-24 15:39:31.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:31.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:31.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:31.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1461ms +2024-05-24 15:39:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:32.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3809ms +2024-05-24 15:39:32.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:32.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:32.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8179ms +2024-05-24 15:39:46.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:46.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:46.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:46.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9558ms +2024-05-24 15:39:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:47.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:47.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:47.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.221ms +2024-05-24 15:39:47.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:39:47.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:47.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:39:47.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3105ms +2024-05-24 15:40:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:01.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:01.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1246ms +2024-05-24 15:40:02.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:02.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:02.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:02.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5953ms +2024-05-24 15:40:02.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:02.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:02.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:02.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5843ms +2024-05-24 15:40:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:16.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:16.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:16.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9862ms +2024-05-24 15:40:17.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:17.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:17.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:17.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7097ms +2024-05-24 15:40:17.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:17.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:17.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4846ms +2024-05-24 15:40:31.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:31.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:31.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4643ms +2024-05-24 15:40:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:32.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3136ms +2024-05-24 15:40:32.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:32.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:32.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:32.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7085ms +2024-05-24 15:40:46.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:46.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:46.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:46.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4777ms +2024-05-24 15:40:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1902ms +2024-05-24 15:40:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:40:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:47.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:40:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4358ms +2024-05-24 15:41:01.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:01.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:01.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1243ms +2024-05-24 15:41:02.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:02.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:02.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2659ms +2024-05-24 15:41:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:02.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0545ms +2024-05-24 15:41:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:16.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:16.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:16.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3216ms +2024-05-24 15:41:17.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:17.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:17.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:17.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.8519ms +2024-05-24 15:41:17.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:17.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:17.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3012ms +2024-05-24 15:41:31.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:31.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:31.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:31.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.714ms +2024-05-24 15:41:32.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:32.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:32.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:32.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6865ms +2024-05-24 15:41:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:32.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:32.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:32.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7084ms +2024-05-24 15:41:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:46.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:46.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:46.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8935ms +2024-05-24 15:41:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:47.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.772ms +2024-05-24 15:41:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:41:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:41:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3626ms +2024-05-24 15:42:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:01.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:01.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:01.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1356ms +2024-05-24 15:42:02.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:02.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:02.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5522ms +2024-05-24 15:42:02.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:02.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:02.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:02.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3097ms +2024-05-24 15:42:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:16.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:16.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:16.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2194ms +2024-05-24 15:42:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:17.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:17.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:17.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2278ms +2024-05-24 15:42:17.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:17.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:17.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:17.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3567ms +2024-05-24 15:42:31.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:31.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4198ms +2024-05-24 15:42:32.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:32.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:32.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:32.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8579ms +2024-05-24 15:42:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5335ms +2024-05-24 15:42:46.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:46.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:46.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:46.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4103ms +2024-05-24 15:42:47.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:47.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:47.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1272ms +2024-05-24 15:42:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:42:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:47.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:42:47.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.911ms +2024-05-24 15:43:01.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:01.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:01.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7282ms +2024-05-24 15:43:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1869ms +2024-05-24 15:43:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:02.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4476ms +2024-05-24 15:43:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:16.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:16.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:16.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2962ms +2024-05-24 15:43:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:17.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:17.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0866ms +2024-05-24 15:43:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7964ms +2024-05-24 15:43:31.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:31.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:31.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1392ms +2024-05-24 15:43:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:32.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:32.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1783ms +2024-05-24 15:43:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7081ms +2024-05-24 15:43:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:46.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:46.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4862ms +2024-05-24 15:43:47.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:47.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:47.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:47.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7479ms +2024-05-24 15:43:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:43:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:47.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:43:47.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1591ms +2024-05-24 15:44:01.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:01.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:01.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3934ms +2024-05-24 15:44:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:02.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6747ms +2024-05-24 15:44:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:02.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:02.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8305ms +2024-05-24 15:44:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:16.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:16.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:16.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2476ms +2024-05-24 15:44:17.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:17.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:17.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:17.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1502ms +2024-05-24 15:44:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5749ms +2024-05-24 15:44:31.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:31.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:31.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:31.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1078ms +2024-05-24 15:44:32.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:32.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:32.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:32.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5222ms +2024-05-24 15:44:32.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:32.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:32.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:32.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9474ms +2024-05-24 15:44:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:46.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:46.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:46.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4114ms +2024-05-24 15:44:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:47.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2868ms +2024-05-24 15:44:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:44:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:47.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:44:47.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.641ms +2024-05-24 15:45:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:01.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:01.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7581ms +2024-05-24 15:45:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:02.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3091ms +2024-05-24 15:45:02.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:02.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:02.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:02.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9233ms +2024-05-24 15:45:06.312 +02:00 [INF] Deregistering a service [id: notifications-service:a0cdc4259750438aae30ef00419f420c] from Consul... +2024-05-24 15:45:06.313 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:a0cdc4259750438aae30ef00419f420c" +2024-05-24 15:45:06.313 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a0cdc4259750438aae30ef00419f420c +2024-05-24 15:45:06.314 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:a0cdc4259750438aae30ef00419f420c +2024-05-24 15:45:06.316 +02:00 [INF] Received HTTP response headers after 2.2986ms - 200 +2024-05-24 15:45:06.316 +02:00 [INF] End processing HTTP request after 2.7816ms - 200 +2024-05-24 15:45:06.316 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:45:06.317 +02:00 [INF] Deregistered a service [id: notifications-service:a0cdc4259750438aae30ef00419f420c] from Consul. +2024-05-24 15:45:45.272 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:45:45.328 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:45:45.418 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:45:45.486 +02:00 [INF] Registering a service [id: notifications-service:17940d05c09d483ab7c26112b40c0fa2] in Consul... +2024-05-24 15:45:45.506 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:45:45.510 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:45:45.511 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:45:45.521 +02:00 [INF] Received HTTP response headers after 7.9536ms - 200 +2024-05-24 15:45:45.522 +02:00 [INF] End processing HTTP request after 12.5607ms - 200 +2024-05-24 15:45:45.524 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:45:45.525 +02:00 [INF] Registered a service [id: notifications-service:17940d05c09d483ab7c26112b40c0fa2] in Consul. +2024-05-24 15:45:45.532 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:45:45.534 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:45:45.534 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:45:45.544 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:45:45.547 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:45:45.550 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:45:45.556 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:45:45.558 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:45:45.560 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:45:45.562 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:45:46.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:46.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 130.5101ms +2024-05-24 15:45:47.661 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:47.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.5991ms +2024-05-24 15:45:47.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:45:47.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:45:47.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4152ms +2024-05-24 15:45:49.879 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:45:49.883 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:45:50.053 +02:00 [ERR] There was an error when processing a message with id: '2951e40d2485492d99ad262bf20ec18b'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:45:50.066 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:45:50.075 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:45:50.082 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 202.3232ms +2024-05-24 15:46:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:01.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:01.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3483ms +2024-05-24 15:46:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:02.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:02.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:02.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 54.0156ms +2024-05-24 15:46:03.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:03.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 433.8655ms +2024-05-24 15:46:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:16.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:16.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:16.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1651ms +2024-05-24 15:46:17.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:17.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:17.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4772ms +2024-05-24 15:46:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.765ms +2024-05-24 15:46:31.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:31.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:31.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2381ms +2024-05-24 15:46:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6422ms +2024-05-24 15:46:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:32.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:32.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3192ms +2024-05-24 15:46:46.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:46.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:46.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9753ms +2024-05-24 15:46:47.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:47.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:47.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:47.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.3296ms +2024-05-24 15:46:47.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:46:47.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:47.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:46:47.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.6019ms +2024-05-24 15:47:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:01.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:01.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:01.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9622ms +2024-05-24 15:47:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:02.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3553ms +2024-05-24 15:47:02.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:02.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:02.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2511ms +2024-05-24 15:47:16.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:16.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:16.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:16.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2013ms +2024-05-24 15:47:17.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:17.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:17.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:17.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9481ms +2024-05-24 15:47:17.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:17.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:17.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1416ms +2024-05-24 15:47:31.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:31.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:31.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:31.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.3401ms +2024-05-24 15:47:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9559ms +2024-05-24 15:47:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5231ms +2024-05-24 15:47:46.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:46.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:46.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:46.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8192ms +2024-05-24 15:47:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:47.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:47.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7955ms +2024-05-24 15:47:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:47:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:47:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1639ms +2024-05-24 15:47:56.782 +02:00 [INF] Deregistering a service [id: notifications-service:17940d05c09d483ab7c26112b40c0fa2] from Consul... +2024-05-24 15:47:56.789 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:17940d05c09d483ab7c26112b40c0fa2" +2024-05-24 15:47:56.790 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:17940d05c09d483ab7c26112b40c0fa2 +2024-05-24 15:47:56.791 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:17940d05c09d483ab7c26112b40c0fa2 +2024-05-24 15:47:56.805 +02:00 [INF] Received HTTP response headers after 14.2256ms - 200 +2024-05-24 15:47:56.807 +02:00 [INF] End processing HTTP request after 16.9109ms - 200 +2024-05-24 15:47:56.808 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:47:56.810 +02:00 [INF] Deregistered a service [id: notifications-service:17940d05c09d483ab7c26112b40c0fa2] from Consul. +2024-05-24 15:48:03.936 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:48:03.995 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:48:04.046 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:48:04.117 +02:00 [INF] Registering a service [id: notifications-service:bceb445ba53c481185ae5a6ec1446ff4] in Consul... +2024-05-24 15:48:04.137 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:48:04.141 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:48:04.141 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:48:04.152 +02:00 [INF] Received HTTP response headers after 4.1768ms - 200 +2024-05-24 15:48:04.153 +02:00 [INF] End processing HTTP request after 13.0594ms - 200 +2024-05-24 15:48:04.157 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:48:04.158 +02:00 [INF] Registered a service [id: notifications-service:bceb445ba53c481185ae5a6ec1446ff4] in Consul. +2024-05-24 15:48:04.166 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:48:04.166 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:48:04.166 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:48:04.175 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:48:04.177 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:48:04.180 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:48:04.186 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:48:04.189 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:48:04.192 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:48:04.194 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:48:04.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:04.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:04.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:04.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:04.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:04.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 141.2151ms +2024-05-24 15:48:05.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:05.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 391.1751ms +2024-05-24 15:48:05.150 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 18 +2024-05-24 15:48:05.153 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:48:05.249 +02:00 [ERR] There was an error when processing a message with id: '4f5fbdcfc281475da465ac25229d7a4f'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:48:05.267 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:48:05.281 +02:00 [ERR] Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 00000000-0000-0000-0000-000000000000 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 22 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:48:05.288 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 138.2621ms +2024-05-24 15:48:07.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:07.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:07.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:07.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.6765ms +2024-05-24 15:48:16.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:16.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:16.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:16.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1925ms +2024-05-24 15:48:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:17.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8428ms +2024-05-24 15:48:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:17.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.486ms +2024-05-24 15:48:31.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:31.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:31.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:31.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5497ms +2024-05-24 15:48:32.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:32.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:32.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:32.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.278ms +2024-05-24 15:48:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:32.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:32.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8919ms +2024-05-24 15:48:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:46.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:46.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:46.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.482ms +2024-05-24 15:48:47.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:47.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:47.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:47.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.4747ms +2024-05-24 15:48:47.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:48:47.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:47.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:48:47.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6272ms +2024-05-24 15:49:01.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:01.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:01.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:01.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0239ms +2024-05-24 15:49:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:02.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:02.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9299ms +2024-05-24 15:49:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:02.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:02.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:02.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9353ms +2024-05-24 15:49:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:16.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:16.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:16.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6927ms +2024-05-24 15:49:17.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:17.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1135ms +2024-05-24 15:49:17.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:17.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:17.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7084ms +2024-05-24 15:49:31.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:31.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1654ms +2024-05-24 15:49:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1427ms +2024-05-24 15:49:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6035ms +2024-05-24 15:49:46.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:46.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:46.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:46.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0375ms +2024-05-24 15:49:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:47.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2067ms +2024-05-24 15:49:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:49:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:49:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5089ms +2024-05-24 15:50:01.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:01.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:01.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8621ms +2024-05-24 15:50:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:02.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9309ms +2024-05-24 15:50:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:02.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8407ms +2024-05-24 15:50:16.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:16.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:16.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:16.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9336ms +2024-05-24 15:50:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:17.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8213ms +2024-05-24 15:50:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:17.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:17.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8878ms +2024-05-24 15:50:31.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:31.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:31.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:31.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3439ms +2024-05-24 15:50:32.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1671ms +2024-05-24 15:50:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:32.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:32.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:32.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8382ms +2024-05-24 15:50:46.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:46.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1879ms +2024-05-24 15:50:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2105ms +2024-05-24 15:50:47.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:50:47.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:47.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:50:47.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5689ms +2024-05-24 15:51:01.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:01.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:01.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:01.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6543ms +2024-05-24 15:51:02.304 +02:00 [INF] Deregistering a service [id: notifications-service:bceb445ba53c481185ae5a6ec1446ff4] from Consul... +2024-05-24 15:51:02.305 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:bceb445ba53c481185ae5a6ec1446ff4" +2024-05-24 15:51:02.306 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:bceb445ba53c481185ae5a6ec1446ff4 +2024-05-24 15:51:02.306 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:bceb445ba53c481185ae5a6ec1446ff4 +2024-05-24 15:51:02.314 +02:00 [INF] Received HTTP response headers after 7.2293ms - 200 +2024-05-24 15:51:02.315 +02:00 [INF] End processing HTTP request after 9.1854ms - 200 +2024-05-24 15:51:02.315 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:51:02.317 +02:00 [INF] Deregistered a service [id: notifications-service:bceb445ba53c481185ae5a6ec1446ff4] from Consul. +2024-05-24 15:51:08.347 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 15:51:08.401 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 15:51:08.456 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 15:51:08.522 +02:00 [INF] Registering a service [id: notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d] in Consul... +2024-05-24 15:51:08.542 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 15:51:08.547 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:51:08.548 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 15:51:08.560 +02:00 [INF] Received HTTP response headers after 9.003ms - 200 +2024-05-24 15:51:08.561 +02:00 [INF] End processing HTTP request after 14.9692ms - 200 +2024-05-24 15:51:08.565 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:51:08.565 +02:00 [INF] Registered a service [id: notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d] in Consul. +2024-05-24 15:51:08.572 +02:00 [INF] Removed 0 old notifications. +2024-05-24 15:51:08.573 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 15:51:08.574 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 15:51:08.587 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 15:51:08.590 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 15:51:08.593 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 15:51:08.596 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 15:51:08.598 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 15:51:08.600 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 15:51:08.602 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 15:51:08.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:08.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:08.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:08.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:08.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:08.844 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 140.5581ms +2024-05-24 15:51:09.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:09.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 397.8328ms +2024-05-24 15:51:09.688 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 140 +2024-05-24 15:51:09.693 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:51:09.802 +02:00 [ERR] There was an error when processing a message with id: 'e2592519692f4921918137713429f3f5'. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Core.Entities.AggregateId.op_Implicit(AggregateId id) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/AggregateId.cs:line 43 + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.<>c__DisplayClass2_0.b__0(Notification n) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 27 + at System.Linq.Enumerable.TryGetFirst[TSource](IEnumerable`1 source, Func`2 predicate, Boolean& found) + at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 27 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 15:51:09.817 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 15:51:09.832 +02:00 [ERR] Object reference not set to an instance of an object. +System.NullReferenceException: Object reference not set to an instance of an object. + at MiniSpace.Services.Notifications.Core.Entities.AggregateId.op_Implicit(AggregateId id) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/AggregateId.cs:line 43 + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.<>c__DisplayClass2_0.b__0(Notification n) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 27 + at System.Linq.Enumerable.TryGetFirst[TSource](IEnumerable`1 source, Func`2 predicate, Boolean& found) + at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + at MiniSpace.Services.Notifications.Application.Commands.Handlers.UpdateNotificationStatusHandler.HandleAsync(UpdateNotificationStatus command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/UpdateNotificationStatusHandler.cs:line 27 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildRequestContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 15:51:09.838 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 400 null application/json 149.3603ms +2024-05-24 15:51:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:16.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:16.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:16.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.37ms +2024-05-24 15:51:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.202ms +2024-05-24 15:51:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.059ms +2024-05-24 15:51:31.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:31.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:31.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:31.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3589ms +2024-05-24 15:51:32.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:32.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:32.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:32.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.399ms +2024-05-24 15:51:32.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:32.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:32.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:32.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7472ms +2024-05-24 15:51:46.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:46.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:46.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.3104ms +2024-05-24 15:51:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:47.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5082ms +2024-05-24 15:51:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:51:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:47.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:51:47.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 49.5552ms +2024-05-24 15:52:01.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:01.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:01.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7384ms +2024-05-24 15:52:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:02.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:02.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5086ms +2024-05-24 15:52:02.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:02.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:02.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:02.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.7566ms +2024-05-24 15:52:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:16.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9104ms +2024-05-24 15:52:17.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:17.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:17.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:17.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7913ms +2024-05-24 15:52:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2212ms +2024-05-24 15:52:31.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:31.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:31.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:31.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7587ms +2024-05-24 15:52:32.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:32.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:32.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:32.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9204ms +2024-05-24 15:52:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:32.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8124ms +2024-05-24 15:52:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:46.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:46.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5122ms +2024-05-24 15:52:47.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:47.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:47.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:47.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.6118ms +2024-05-24 15:52:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:52:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:47.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:52:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5224ms +2024-05-24 15:53:01.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:01.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:01.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:01.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5211ms +2024-05-24 15:53:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:02.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3624ms +2024-05-24 15:53:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9591ms +2024-05-24 15:53:16.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5496ms +2024-05-24 15:53:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:17.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:17.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0469ms +2024-05-24 15:53:17.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3611ms +2024-05-24 15:53:31.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:31.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:31.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2118ms +2024-05-24 15:53:32.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:32.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7517ms +2024-05-24 15:53:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2151ms +2024-05-24 15:53:46.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:46.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6265ms +2024-05-24 15:53:47.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:47.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:47.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:47.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.592ms +2024-05-24 15:53:47.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:53:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:47.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:53:47.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2857ms +2024-05-24 15:54:01.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:01.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:01.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:01.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4657ms +2024-05-24 15:54:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:02.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3738ms +2024-05-24 15:54:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:02.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5113ms +2024-05-24 15:54:16.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:16.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:16.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:16.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9425ms +2024-05-24 15:54:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:17.677 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:17.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6484ms +2024-05-24 15:54:17.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:17.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:17.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:17.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5487ms +2024-05-24 15:54:31.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:31.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:31.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7378ms +2024-05-24 15:54:32.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.332ms +2024-05-24 15:54:32.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:32.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:32.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:32.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9971ms +2024-05-24 15:54:46.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:46.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:46.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:46.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2799ms +2024-05-24 15:54:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:47.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:47.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3596ms +2024-05-24 15:54:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:54:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:47.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:54:47.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5764ms +2024-05-24 15:55:01.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:01.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:01.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:01.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2855ms +2024-05-24 15:55:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:02.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9233ms +2024-05-24 15:55:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:02.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9851ms +2024-05-24 15:55:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:16.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:16.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.9025ms +2024-05-24 15:55:17.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:17.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:17.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:17.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1786ms +2024-05-24 15:55:17.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:17.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:17.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:17.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4191ms +2024-05-24 15:55:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:31.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:31.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1644ms +2024-05-24 15:55:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:32.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3636ms +2024-05-24 15:55:32.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:32.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1753ms +2024-05-24 15:55:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:46.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:46.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3761ms +2024-05-24 15:55:47.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:47.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:47.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6192ms +2024-05-24 15:55:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:55:47.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:55:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.886ms +2024-05-24 15:56:01.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:01.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:01.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:01.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6764ms +2024-05-24 15:56:02.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:02.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4364ms +2024-05-24 15:56:02.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:02.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:02.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:02.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7754ms +2024-05-24 15:56:16.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:16.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:16.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8453ms +2024-05-24 15:56:17.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4047ms +2024-05-24 15:56:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7672ms +2024-05-24 15:56:31.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:31.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:31.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:31.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9942ms +2024-05-24 15:56:32.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8097ms +2024-05-24 15:56:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3045ms +2024-05-24 15:56:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:46.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:46.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:46.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1372ms +2024-05-24 15:56:47.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:47.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:47.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:56:47.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:47.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:47.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.9462ms +2024-05-24 15:56:47.754 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:56:47.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.8419ms +2024-05-24 15:57:01.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:01.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:01.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.661ms +2024-05-24 15:57:02.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:02.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:02.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:02.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6297ms +2024-05-24 15:57:02.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:02.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:02.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:02.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8064ms +2024-05-24 15:57:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:16.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:16.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:16.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.279ms +2024-05-24 15:57:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:17.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:17.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4899ms +2024-05-24 15:57:17.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:17.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:17.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:17.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8341ms +2024-05-24 15:57:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:31.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:31.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.6886ms +2024-05-24 15:57:32.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5887ms +2024-05-24 15:57:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5825ms +2024-05-24 15:57:46.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:46.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:46.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:46.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.85ms +2024-05-24 15:57:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:47.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:47.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9751ms +2024-05-24 15:57:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:57:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:57:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9026ms +2024-05-24 15:58:01.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:01.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:01.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5057ms +2024-05-24 15:58:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:02.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6721ms +2024-05-24 15:58:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.462ms +2024-05-24 15:58:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:16.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:16.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:16.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9203ms +2024-05-24 15:58:17.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:17.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:17.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:17.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2889ms +2024-05-24 15:58:17.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 15:58:17.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:17.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 15:58:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0458ms +2024-05-24 15:58:20.812 +02:00 [INF] Deregistering a service [id: notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d] from Consul... +2024-05-24 15:58:20.813 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d" +2024-05-24 15:58:20.813 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d +2024-05-24 15:58:20.813 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d +2024-05-24 15:58:20.818 +02:00 [INF] Received HTTP response headers after 5.092ms - 200 +2024-05-24 15:58:20.818 +02:00 [INF] End processing HTTP request after 5.5521ms - 200 +2024-05-24 15:58:20.819 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 15:58:20.819 +02:00 [INF] Deregistered a service [id: notifications-service:ca2f8e90dfab4d8db7baa916093f5a6d] from Consul. +2024-05-24 16:01:22.999 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 16:01:23.079 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 16:01:23.167 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 16:01:23.271 +02:00 [INF] Registering a service [id: notifications-service:acd46b7c54784d16a590f5087d7e49a8] in Consul... +2024-05-24 16:01:23.297 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 16:01:23.303 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 16:01:23.305 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 16:01:23.321 +02:00 [INF] Removed 0 old notifications. +2024-05-24 16:01:23.321 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 16:01:23.353 +02:00 [INF] Received HTTP response headers after 41.957ms - 200 +2024-05-24 16:01:23.359 +02:00 [INF] End processing HTTP request after 56.8138ms - 200 +2024-05-24 16:01:23.367 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 16:01:23.367 +02:00 [INF] Registered a service [id: notifications-service:acd46b7c54784d16a590f5087d7e49a8] in Consul. +2024-05-24 16:01:23.379 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 16:01:23.394 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 16:01:23.399 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 16:01:23.415 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 16:01:23.425 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 16:01:23.428 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 16:01:23.434 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 16:01:23.440 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 16:01:23.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:23.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:23.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:23.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:23.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:23.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 219.9265ms +2024-05-24 16:01:24.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:24.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 382.1306ms +2024-05-24 16:01:25.286 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json 140 +2024-05-24 16:01:25.291 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:01:25.492 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 16:01:25.493 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:01:25.494 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 207.4781ms +2024-05-24 16:01:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:31.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:31.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:31.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1145ms +2024-05-24 16:01:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:32.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:32.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0873ms +2024-05-24 16:01:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:32.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:32.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:32.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3534ms +2024-05-24 16:01:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:46.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:46.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:46.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5818ms +2024-05-24 16:01:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:47.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:47.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6382ms +2024-05-24 16:01:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:01:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:01:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6112ms +2024-05-24 16:01:48.074 +02:00 [INF] Deregistering a service [id: notifications-service:acd46b7c54784d16a590f5087d7e49a8] from Consul... +2024-05-24 16:01:48.077 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:acd46b7c54784d16a590f5087d7e49a8" +2024-05-24 16:01:48.077 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:acd46b7c54784d16a590f5087d7e49a8 +2024-05-24 16:01:48.077 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:acd46b7c54784d16a590f5087d7e49a8 +2024-05-24 16:01:48.096 +02:00 [INF] Received HTTP response headers after 18.4215ms - 200 +2024-05-24 16:01:48.096 +02:00 [INF] End processing HTTP request after 18.9555ms - 200 +2024-05-24 16:01:48.097 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 16:01:48.097 +02:00 [INF] Deregistered a service [id: notifications-service:acd46b7c54784d16a590f5087d7e49a8] from Consul. +2024-05-24 16:02:01.791 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 16:02:01.851 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 16:02:01.909 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 16:02:01.977 +02:00 [INF] Registering a service [id: notifications-service:8d390f39e420462ab41695996b83a5d2] in Consul... +2024-05-24 16:02:01.996 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 16:02:02.000 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 16:02:02.001 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 16:02:02.022 +02:00 [INF] Removed 0 old notifications. +2024-05-24 16:02:02.022 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 16:02:02.022 +02:00 [INF] Received HTTP response headers after 19.4107ms - 200 +2024-05-24 16:02:02.023 +02:00 [INF] End processing HTTP request after 23.9776ms - 200 +2024-05-24 16:02:02.027 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 16:02:02.028 +02:00 [INF] Registered a service [id: notifications-service:8d390f39e420462ab41695996b83a5d2] in Consul. +2024-05-24 16:02:02.039 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 16:02:02.059 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 16:02:02.068 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 16:02:02.073 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 16:02:02.081 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 16:02:02.086 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 16:02:02.091 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 16:02:02.095 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 16:02:02.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:02.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:02.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:02.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:02.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 168.99ms +2024-05-24 16:02:03.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:03.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 370.8448ms +2024-05-24 16:02:03.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:03.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:03.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:03.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.6103ms +2024-05-24 16:02:16.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:16.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:16.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:16.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.706ms +2024-05-24 16:02:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:17.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:17.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9512ms +2024-05-24 16:02:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:17.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:17.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.816ms +2024-05-24 16:02:31.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:31.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:31.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:31.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9523ms +2024-05-24 16:02:32.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:32.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:32.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4747ms +2024-05-24 16:02:32.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:32.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4639ms +2024-05-24 16:02:46.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:46.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:46.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0904ms +2024-05-24 16:02:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2782ms +2024-05-24 16:02:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:02:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:47.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:02:47.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2423ms +2024-05-24 16:03:01.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:01.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:01.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:01.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.083ms +2024-05-24 16:03:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:02.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7908ms +2024-05-24 16:03:02.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:02.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:02.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:02.736 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9233ms +2024-05-24 16:03:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:16.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:16.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3003ms +2024-05-24 16:03:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:17.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:17.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:17.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6094ms +2024-05-24 16:03:17.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:17.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:17.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:17.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7862ms +2024-05-24 16:03:31.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:31.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:31.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:31.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7137ms +2024-05-24 16:03:32.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:32.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:32.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:32.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1777ms +2024-05-24 16:03:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:32.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3241ms +2024-05-24 16:03:46.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:46.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:46.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:46.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7662ms +2024-05-24 16:03:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:47.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:47.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.653ms +2024-05-24 16:03:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:03:47.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:47.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:03:47.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.2121ms +2024-05-24 16:04:01.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:01.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:01.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:01.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3683ms +2024-05-24 16:04:02.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:02.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:02.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:02.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.1083ms +2024-05-24 16:04:02.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:02.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:02.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:02.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6541ms +2024-05-24 16:04:16.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:16.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:16.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:16.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.3472ms +2024-05-24 16:04:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:17.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:17.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9955ms +2024-05-24 16:04:17.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:17.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:17.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:17.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.327ms +2024-05-24 16:04:31.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:31.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:31.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:31.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.7659ms +2024-05-24 16:04:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:32.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8189ms +2024-05-24 16:04:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:32.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:32.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8905ms +2024-05-24 16:04:46.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:46.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:46.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9835ms +2024-05-24 16:04:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:47.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:47.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:47.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8265ms +2024-05-24 16:04:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:04:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:47.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:04:47.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7873ms +2024-05-24 16:05:01.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:01.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:01.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:01.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.0453ms +2024-05-24 16:05:02.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:02.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:02.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:02.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0481ms +2024-05-24 16:05:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:02.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:02.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:02.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6239ms +2024-05-24 16:05:16.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:16.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:16.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:16.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.3871ms +2024-05-24 16:05:17.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:17.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:17.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:17.715 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:17.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:17.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.419ms +2024-05-24 16:05:17.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:17.744 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4586ms +2024-05-24 16:05:31.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:31.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:31.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:31.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8432ms +2024-05-24 16:05:32.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:32.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:32.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:32.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4741ms +2024-05-24 16:05:32.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:32.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:32.743 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:32.743 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4465ms +2024-05-24 16:05:46.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:46.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:46.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:46.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0783ms +2024-05-24 16:05:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1816ms +2024-05-24 16:05:47.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:05:47.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:47.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:05:47.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8028ms +2024-05-24 16:06:01.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:01.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:01.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:01.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4093ms +2024-05-24 16:06:02.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:02.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:02.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:02.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8149ms +2024-05-24 16:06:02.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:02.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:02.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2778ms +2024-05-24 16:06:16.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:16.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3855ms +2024-05-24 16:06:17.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:17.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:17.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5519ms +2024-05-24 16:06:17.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:17.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:17.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8439ms +2024-05-24 16:06:31.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:31.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:31.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:31.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3924ms +2024-05-24 16:06:32.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:32.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:32.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:32.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3002ms +2024-05-24 16:06:32.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:32.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:32.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:32.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5349ms +2024-05-24 16:06:46.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:46.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:46.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:46.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7591ms +2024-05-24 16:06:47.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:47.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:47.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5544ms +2024-05-24 16:06:47.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:06:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:06:47.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0377ms +2024-05-24 16:07:01.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:01.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:01.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:01.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7308ms +2024-05-24 16:07:02.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:02.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:02.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:02.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4957ms +2024-05-24 16:07:02.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:02.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:02.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:02.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8718ms +2024-05-24 16:07:16.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:16.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:16.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8791ms +2024-05-24 16:07:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:17.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:17.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:17.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.563ms +2024-05-24 16:07:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4773ms +2024-05-24 16:07:31.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:31.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:31.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:31.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3228ms +2024-05-24 16:07:32.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:32.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:32.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:32.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7299ms +2024-05-24 16:07:32.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:32.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:32.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:32.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2609ms +2024-05-24 16:07:46.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:46.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:46.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:46.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.686ms +2024-05-24 16:07:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:47.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:47.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:47.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.471ms +2024-05-24 16:07:47.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:07:47.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:47.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:07:47.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.7267ms +2024-05-24 16:08:01.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:01.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:01.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:01.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9987ms +2024-05-24 16:08:02.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:02.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:02.712 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:02.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:02.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:02.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1426ms +2024-05-24 16:08:02.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:02.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3304ms +2024-05-24 16:08:16.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:16.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:16.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:16.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.1584ms +2024-05-24 16:08:17.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:17.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:17.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:17.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:17.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4111ms +2024-05-24 16:08:17.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:17.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9067ms +2024-05-24 16:08:31.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:31.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:31.924 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:31.925 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.949ms +2024-05-24 16:08:32.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:32.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:32.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:32.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4546ms +2024-05-24 16:08:32.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:32.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5513ms +2024-05-24 16:08:46.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:46.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:46.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:46.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9255ms +2024-05-24 16:08:47.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:47.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:47.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:47.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4338ms +2024-05-24 16:08:47.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:08:47.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:47.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:08:47.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1108ms +2024-05-24 16:09:01.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:01.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:01.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:01.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4301ms +2024-05-24 16:09:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:02.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:02.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3029ms +2024-05-24 16:09:02.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:02.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:02.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:02.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6899ms +2024-05-24 16:09:16.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:16.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:16.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:16.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7543ms +2024-05-24 16:09:17.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:17.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:17.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:17.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0986ms +2024-05-24 16:09:17.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:17.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:17.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:17.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3693ms +2024-05-24 16:09:31.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:31.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:31.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:31.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8723ms +2024-05-24 16:09:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:32.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:32.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:32.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4545ms +2024-05-24 16:09:32.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:32.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:32.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:32.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.684ms +2024-05-24 16:09:46.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:46.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:46.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:46.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.313ms +2024-05-24 16:09:47.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:47.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:47.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:47.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7267ms +2024-05-24 16:09:47.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:09:47.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:47.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:09:47.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.8445ms +2024-05-24 16:10:01.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:10:01.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:01.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:01.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2487ms +2024-05-24 16:10:02.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:10:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:02.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:02.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1389ms +2024-05-24 16:10:02.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:10:02.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:02.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:10:02.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1046ms +2024-05-24 16:12:16.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:16.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5256ms +2024-05-24 16:12:16.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:16.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6021ms +2024-05-24 16:12:16.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:16.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6193ms +2024-05-24 16:12:16.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:16.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:16.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7608ms +2024-05-24 16:12:17.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:17.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:17.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:17.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4108ms +2024-05-24 16:12:17.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:17.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:17.724 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:17.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6496ms +2024-05-24 16:12:31.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:31.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:31.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:31.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7831ms +2024-05-24 16:12:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:32.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:32.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:32.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3464ms +2024-05-24 16:12:32.697 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:32.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:32.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:32.729 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0859ms +2024-05-24 16:12:46.915 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:46.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:46.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:46.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5806ms +2024-05-24 16:12:47.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:47.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:47.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:47.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4665ms +2024-05-24 16:12:47.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:12:47.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:47.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:12:47.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2178ms +2024-05-24 16:13:01.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:01.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:01.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:01.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7548ms +2024-05-24 16:13:02.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:02.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:02.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:02.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:02.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:02.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9127ms +2024-05-24 16:13:02.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:02.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1678ms +2024-05-24 16:13:29.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:29.555 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:29.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:29.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5484ms +2024-05-24 16:13:29.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:29.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:29.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:29.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3776ms +2024-05-24 16:13:31.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:31.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:31.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:31.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1446ms +2024-05-24 16:13:31.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:31.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:31.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:31.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.8875ms +2024-05-24 16:13:44.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:44.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:44.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:44.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8566ms +2024-05-24 16:13:46.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:46.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:46.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:46.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4948ms +2024-05-24 16:13:59.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:13:59.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:59.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:13:59.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8064ms +2024-05-24 16:14:01.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:01.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:01.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:01.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4973ms +2024-05-24 16:14:14.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:14.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:14.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:14.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2748ms +2024-05-24 16:14:16.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:16.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:16.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:16.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7189ms +2024-05-24 16:14:29.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:29.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:29.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:29.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 48.4204ms +2024-05-24 16:14:31.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:31.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:31.819 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:31.819 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0805ms +2024-05-24 16:14:44.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:44.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:44.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:44.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8644ms +2024-05-24 16:14:46.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:46.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:46.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:46.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9171ms +2024-05-24 16:14:59.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:14:59.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:59.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:14:59.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4599ms +2024-05-24 16:15:01.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:01.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:01.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:01.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6525ms +2024-05-24 16:15:14.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:14.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:14.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:14.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0128ms +2024-05-24 16:15:16.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:16.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:16.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:16.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.063ms +2024-05-24 16:15:29.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:29.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:29.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:29.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4932ms +2024-05-24 16:15:31.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:31.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:31.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:31.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3379ms +2024-05-24 16:15:44.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:44.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:44.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:44.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3629ms +2024-05-24 16:15:46.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:46.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:46.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:46.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1064ms +2024-05-24 16:15:59.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:15:59.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:59.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:15:59.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0574ms +2024-05-24 16:16:01.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:01.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:01.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:01.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4233ms +2024-05-24 16:16:14.623 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:14.624 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:14.653 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:14.654 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6064ms +2024-05-24 16:16:16.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:16.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:16.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:16.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8161ms +2024-05-24 16:16:29.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:29.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:29.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:29.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3182ms +2024-05-24 16:16:31.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:31.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:31.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:31.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6423ms +2024-05-24 16:16:44.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:44.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:44.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:44.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3231ms +2024-05-24 16:16:46.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:46.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:46.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:46.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2858ms +2024-05-24 16:16:59.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:16:59.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:59.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:16:59.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 52.3314ms +2024-05-24 16:17:01.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:01.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:01.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:01.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8673ms +2024-05-24 16:17:14.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:14.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:14.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:14.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9046ms +2024-05-24 16:17:16.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:16.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:16.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:16.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.5689ms +2024-05-24 16:17:29.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:29.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:29.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:29.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.243ms +2024-05-24 16:17:31.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:31.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:31.806 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:31.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1165ms +2024-05-24 16:17:44.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:44.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:44.629 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:44.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.5778ms +2024-05-24 16:17:46.781 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:46.782 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:46.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:46.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4969ms +2024-05-24 16:17:59.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:17:59.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:59.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:17:59.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.566ms +2024-05-24 16:18:01.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:01.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:01.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:01.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1728ms +2024-05-24 16:18:14.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:14.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:14.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:14.630 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2343ms +2024-05-24 16:18:16.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:16.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:16.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:16.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0204ms +2024-05-24 16:18:29.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:29.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:29.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:29.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7786ms +2024-05-24 16:18:31.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:31.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:31.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:31.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.514ms +2024-05-24 16:18:44.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:44.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:44.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:44.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4934ms +2024-05-24 16:18:46.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:46.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:46.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:46.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9231ms +2024-05-24 16:18:59.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:18:59.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:59.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:18:59.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7958ms +2024-05-24 16:19:01.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:01.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:01.807 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:01.807 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8812ms +2024-05-24 16:19:14.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:14.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:14.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:14.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3086ms +2024-05-24 16:19:16.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:16.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:16.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:16.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8809ms +2024-05-24 16:19:29.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:29.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:29.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:29.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5846ms +2024-05-24 16:19:31.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:31.780 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:31.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:31.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0833ms +2024-05-24 16:19:44.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:44.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:44.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:44.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7821ms +2024-05-24 16:19:46.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:46.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:46.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:46.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4843ms +2024-05-24 16:19:59.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:19:59.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:59.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:19:59.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0882ms +2024-05-24 16:20:01.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:01.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:01.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:01.809 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6291ms +2024-05-24 16:20:14.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:14.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:14.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:14.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5781ms +2024-05-24 16:20:16.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:16.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:16.808 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:16.808 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5622ms +2024-05-24 16:20:25.959 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:25.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:26.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:26.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.9787ms +2024-05-24 16:20:59.394 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:59.395 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:59.432 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:59.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.8844ms +2024-05-24 16:20:59.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:20:59.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:59.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:20:59.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.1827ms +2024-05-24 16:21:02.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:02.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:02.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:02.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.2207ms +2024-05-24 16:21:08.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:08.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:08.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:08.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8187ms +2024-05-24 16:21:08.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:08.722 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:08.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:08.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0763ms +2024-05-24 16:21:11.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:11.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:11.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:11.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3218ms +2024-05-24 16:21:39.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:39.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:39.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:39.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.6821ms +2024-05-24 16:21:51.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:51.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:51.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:51.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 47.3494ms +2024-05-24 16:21:51.402 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:51.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:51.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:51.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4535ms +2024-05-24 16:21:57.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:57.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:57.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:57.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6643ms +2024-05-24 16:21:57.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:57.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:57.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:57.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2862ms +2024-05-24 16:21:59.631 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:59.633 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:59.665 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:59.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0364ms +2024-05-24 16:21:59.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:21:59.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:59.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:21:59.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5363ms +2024-05-24 16:22:06.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:06.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:06.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:06.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6583ms +2024-05-24 16:22:08.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:08.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:08.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:08.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4137ms +2024-05-24 16:22:14.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:14.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:14.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:14.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9899ms +2024-05-24 16:22:21.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:21.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:21.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:21.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1609ms +2024-05-24 16:22:29.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:29.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:29.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:29.725 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4037ms +2024-05-24 16:22:30.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:30.146 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:30.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:30.174 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0477ms +2024-05-24 16:22:30.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:30.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:30.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:30.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8093ms +2024-05-24 16:22:31.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:31.544 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9018ms +2024-05-24 16:22:31.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:31.603 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5315ms +2024-05-24 16:22:31.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:31.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:31.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.926ms +2024-05-24 16:22:36.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:36.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:36.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:36.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9592ms +2024-05-24 16:22:44.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:44.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:44.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:44.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6741ms +2024-05-24 16:22:45.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:45.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:45.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:45.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0354ms +2024-05-24 16:22:46.635 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:46.635 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:46.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:46.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0666ms +2024-05-24 16:22:51.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:51.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:51.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:51.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.291ms +2024-05-24 16:22:59.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:22:59.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:59.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:22:59.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4112ms +2024-05-24 16:23:00.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:00.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:00.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:00.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.779ms +2024-05-24 16:23:01.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:01.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:01.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:01.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6471ms +2024-05-24 16:23:06.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:06.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:06.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:06.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9947ms +2024-05-24 16:23:14.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:14.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:14.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:14.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.1307ms +2024-05-24 16:23:15.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:15.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:15.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:15.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6115ms +2024-05-24 16:23:16.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:16.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:16.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:16.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.7442ms +2024-05-24 16:23:21.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:21.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:21.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:21.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0176ms +2024-05-24 16:23:29.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:29.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:29.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:29.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0209ms +2024-05-24 16:23:30.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:30.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:30.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:30.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.776ms +2024-05-24 16:23:31.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:31.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:31.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:31.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.9995ms +2024-05-24 16:23:49.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:49.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:49.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:49.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0763ms +2024-05-24 16:23:49.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:23:49.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:49.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:23:49.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4518ms +2024-05-24 16:24:04.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:04.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:04.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:04.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.758ms +2024-05-24 16:24:07.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:07.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:07.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:07.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0689ms +2024-05-24 16:24:08.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:08.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:08.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:08.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9374ms +2024-05-24 16:24:10.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:10.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:10.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:10.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.181ms +2024-05-24 16:24:19.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:19.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:19.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:19.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.1626ms +2024-05-24 16:24:22.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:22.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:22.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:22.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4791ms +2024-05-24 16:24:34.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:34.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:34.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:34.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6554ms +2024-05-24 16:24:37.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:37.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:37.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:37.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9559ms +2024-05-24 16:24:49.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:49.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:49.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:49.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.223ms +2024-05-24 16:24:52.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:24:52.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:52.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:24:52.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4738ms +2024-05-24 16:25:04.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:25:04.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:25:04.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:25:04.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.1088ms +2024-05-24 16:25:07.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:25:07.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:25:07.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:25:07.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1529ms +2024-05-24 16:26:28.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:28.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:28.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:28.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.221ms +2024-05-24 16:26:29.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:29.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:29.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:29.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6312ms +2024-05-24 16:26:32.938 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 16:26:32.938 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:33.241 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 16:26:33.244 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:33.245 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 307.068ms +2024-05-24 16:26:33.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:33.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:33.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:33.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8704ms +2024-05-24 16:26:34.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:34.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:34.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:34.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0922ms +2024-05-24 16:26:37.237 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 16:26:37.240 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:37.373 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 16:26:37.374 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:37.374 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 137.0797ms +2024-05-24 16:26:37.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:37.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:37.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:37.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7036ms +2024-05-24 16:26:38.984 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 16:26:38.988 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:39.114 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 16:26:39.115 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:39.115 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 130.4539ms +2024-05-24 16:26:40.773 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:40.776 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:40.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:40.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.5446ms +2024-05-24 16:26:41.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:41.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:41.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:41.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8915ms +2024-05-24 16:26:41.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:41.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:41.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:41.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.101ms +2024-05-24 16:26:43.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:43.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.3697ms +2024-05-24 16:26:43.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:43.626 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.662 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.662 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9042ms +2024-05-24 16:26:43.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:43.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:43.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1104ms +2024-05-24 16:26:46.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 16:26:46.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 16:26:46.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 16:26:46.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 47.4644ms +2024-05-24 16:26:49.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:49.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:49.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:49.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4199ms +2024-05-24 16:26:52.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:52.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:52.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:52.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4279ms +2024-05-24 16:26:52.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:52.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:52.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:52.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7091ms +2024-05-24 16:26:56.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:56.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:56.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:56.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.1893ms +2024-05-24 16:26:58.000 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 16:26:58.001 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:58.121 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 16:26:58.121 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:26:58.121 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 120.9371ms +2024-05-24 16:26:58.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:26:58.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:58.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:26:58.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3706ms +2024-05-24 16:27:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:04.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:04.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5461ms +2024-05-24 16:27:06.132 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 16:27:06.133 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:06.253 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 16:27:06.253 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:06.254 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 121.6445ms +2024-05-24 16:27:06.894 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 16:27:06.894 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.015 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 16:27:07.016 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.016 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 122.7601ms +2024-05-24 16:27:07.293 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 16:27:07.293 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.416 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 16:27:07.416 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.417 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 123.6188ms +2024-05-24 16:27:07.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:07.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:07.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:07.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.639ms +2024-05-24 16:27:07.723 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 16:27:07.724 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.842 +02:00 [INF] Updated the status of notification with id: 12e290ed-60d0-463b-a765-13948167e4d8 to: Read. +2024-05-24 16:27:07.843 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:07.843 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - 200 0 null 119.6238ms +2024-05-24 16:27:08.112 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 16:27:08.113 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:08.230 +02:00 [INF] Updated the status of notification with id: 221d04bf-5aea-4e42-932c-83e09fe20507 to: Read. +2024-05-24 16:27:08.231 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:27:08.231 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507/status - 200 0 null 119.1644ms +2024-05-24 16:27:11.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:11.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:11.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:11.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.572ms +2024-05-24 16:27:13.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:13.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:13.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:13.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6452ms +2024-05-24 16:27:19.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:19.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:19.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:19.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3352ms +2024-05-24 16:27:22.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:22.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:22.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:22.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3928ms +2024-05-24 16:27:26.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:26.854 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:26.888 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:26.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.3074ms +2024-05-24 16:27:28.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:28.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:28.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:28.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1271ms +2024-05-24 16:27:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:34.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1544ms +2024-05-24 16:27:37.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:37.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:37.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:37.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0223ms +2024-05-24 16:27:41.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:41.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:41.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:41.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5052ms +2024-05-24 16:27:43.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:43.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:43.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:43.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8687ms +2024-05-24 16:27:49.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:49.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:49.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:49.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.201ms +2024-05-24 16:27:52.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:52.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:52.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:52.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0393ms +2024-05-24 16:27:56.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:56.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:56.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:56.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.4684ms +2024-05-24 16:27:58.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:27:58.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:58.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:27:58.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5141ms +2024-05-24 16:28:04.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:04.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:04.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:04.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9546ms +2024-05-24 16:28:07.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:07.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:07.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:07.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.0194ms +2024-05-24 16:28:11.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:11.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:11.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:11.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8148ms +2024-05-24 16:28:13.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:13.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:13.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:13.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.2717ms +2024-05-24 16:28:19.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:19.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:19.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:19.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.707ms +2024-05-24 16:28:22.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:22.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:22.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:22.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7541ms +2024-05-24 16:28:26.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:26.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:26.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:26.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6802ms +2024-05-24 16:28:28.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:28.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:28.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:28.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1041ms +2024-05-24 16:28:34.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:34.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:34.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:34.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3655ms +2024-05-24 16:28:37.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:37.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:37.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:37.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8106ms +2024-05-24 16:28:41.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:41.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:41.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:41.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7769ms +2024-05-24 16:28:43.671 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:43.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:43.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:43.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.299ms +2024-05-24 16:28:49.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:49.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:49.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:49.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.3463ms +2024-05-24 16:28:52.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:52.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:52.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:52.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7043ms +2024-05-24 16:28:56.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:56.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:56.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:56.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8033ms +2024-05-24 16:28:58.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:28:58.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:58.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:28:58.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3523ms +2024-05-24 16:29:00.229 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:00.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:00.261 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:00.262 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8104ms +2024-05-24 16:29:00.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:00.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:00.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:00.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8172ms +2024-05-24 16:29:01.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:01.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8101ms +2024-05-24 16:29:01.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:01.771 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9106ms +2024-05-24 16:29:01.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:01.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:01.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6345ms +2024-05-24 16:29:03.240 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 16:29:03.241 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:03.379 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 16:29:03.379 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:03.379 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 139.0171ms +2024-05-24 16:29:03.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:03.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:03.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:03.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3479ms +2024-05-24 16:29:04.537 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 16:29:04.538 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:04.657 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 16:29:04.657 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:04.657 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 120.0677ms +2024-05-24 16:29:04.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:04.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:04.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:04.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.001ms +2024-05-24 16:29:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:04.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:04.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9197ms +2024-05-24 16:29:07.013 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 16:29:07.014 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:07.138 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 16:29:07.139 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:07.139 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 125.8081ms +2024-05-24 16:29:07.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:07.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:07.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:07.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3179ms +2024-05-24 16:29:07.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:07.644 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:07.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:07.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.1123ms +2024-05-24 16:29:11.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:11.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:11.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:11.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2801ms +2024-05-24 16:29:13.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:13.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:13.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:13.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3534ms +2024-05-24 16:29:15.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:15.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:15.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:15.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8119ms +2024-05-24 16:29:16.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:16.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:16.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:16.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2745ms +2024-05-24 16:29:19.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:19.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:19.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:19.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1035ms +2024-05-24 16:29:22.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:22.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:22.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:22.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.068ms +2024-05-24 16:29:26.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:26.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:26.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:26.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3323ms +2024-05-24 16:29:28.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:28.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:28.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:28.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1472ms +2024-05-24 16:29:30.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:30.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:30.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:30.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.996ms +2024-05-24 16:29:31.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:31.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:31.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:31.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0868ms +2024-05-24 16:29:34.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:34.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:34.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:34.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3466ms +2024-05-24 16:29:37.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:37.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:37.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:37.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7742ms +2024-05-24 16:29:41.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:41.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:41.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:41.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.946ms +2024-05-24 16:29:43.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:43.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:43.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:43.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9406ms +2024-05-24 16:29:44.085 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 16:29:44.085 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:44.211 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 16:29:44.212 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:44.212 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 127.0608ms +2024-05-24 16:29:44.707 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 16:29:44.708 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:44.827 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 16:29:44.827 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:44.828 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 120.9983ms +2024-05-24 16:29:45.143 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 16:29:45.144 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:45.265 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 16:29:45.265 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:45.265 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 122.3571ms +2024-05-24 16:29:45.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:45.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:45.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:45.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2697ms +2024-05-24 16:29:45.589 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 16:29:45.589 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:45.706 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 16:29:45.706 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:45.706 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 117.5837ms +2024-05-24 16:29:46.131 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 16:29:46.132 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:46.254 +02:00 [INF] Updated the status of notification with id: 12e290ed-60d0-463b-a765-13948167e4d8 to: Read. +2024-05-24 16:29:46.255 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:46.256 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - 200 0 null 124.6157ms +2024-05-24 16:29:46.542 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507/status - application/json null +2024-05-24 16:29:46.542 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:46.666 +02:00 [INF] Updated the status of notification with id: 221d04bf-5aea-4e42-932c-83e09fe20507 to: Read. +2024-05-24 16:29:46.666 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 16:29:46.666 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507/status - 200 0 null 124.1715ms +2024-05-24 16:29:46.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:46.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:46.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:46.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7075ms +2024-05-24 16:29:49.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:49.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:49.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:49.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9125ms +2024-05-24 16:29:52.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:52.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:52.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:52.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.368ms +2024-05-24 16:29:56.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:56.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:56.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:56.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7184ms +2024-05-24 16:29:58.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:29:58.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:58.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:29:58.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6982ms +2024-05-24 16:30:00.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:00.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:00.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:00.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6705ms +2024-05-24 16:30:01.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:01.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:01.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:01.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8695ms +2024-05-24 16:30:04.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:04.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:04.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:04.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5265ms +2024-05-24 16:30:07.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:07.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:07.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:07.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1867ms +2024-05-24 16:30:11.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:11.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:11.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:11.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2782ms +2024-05-24 16:30:13.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:13.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:13.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:13.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4077ms +2024-05-24 16:30:15.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:15.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:15.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:15.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.7088ms +2024-05-24 16:30:16.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:16.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:16.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:16.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7523ms +2024-05-24 16:30:19.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:19.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:19.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:19.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1395ms +2024-05-24 16:30:22.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:22.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:22.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:22.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.286ms +2024-05-24 16:30:26.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:26.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:26.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:26.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2842ms +2024-05-24 16:30:28.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:28.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:28.690 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:28.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9774ms +2024-05-24 16:30:30.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:30.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:30.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:30.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7629ms +2024-05-24 16:30:31.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:31.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:31.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:31.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6593ms +2024-05-24 16:30:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:34.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:34.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2955ms +2024-05-24 16:30:37.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:37.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:37.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:37.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4206ms +2024-05-24 16:30:41.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:41.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:41.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:41.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7794ms +2024-05-24 16:30:43.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:43.665 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:43.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:43.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1218ms +2024-05-24 16:30:45.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:45.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:45.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:45.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0363ms +2024-05-24 16:30:46.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:46.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:46.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:46.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0613ms +2024-05-24 16:30:49.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:49.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9998ms +2024-05-24 16:30:52.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:52.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:52.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:52.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8743ms +2024-05-24 16:30:56.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:56.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:56.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:56.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6353ms +2024-05-24 16:30:58.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:30:58.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:58.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:30:58.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4054ms +2024-05-24 16:31:00.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:00.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:00.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:00.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.436ms +2024-05-24 16:31:01.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:01.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:01.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:01.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2231ms +2024-05-24 16:31:04.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:04.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:04.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:04.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1022ms +2024-05-24 16:31:07.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:07.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:07.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:07.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5826ms +2024-05-24 16:31:11.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:11.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:11.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:11.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5478ms +2024-05-24 16:31:13.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:13.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:13.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:13.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0576ms +2024-05-24 16:31:15.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:15.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:15.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:15.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3584ms +2024-05-24 16:31:16.814 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:16.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:16.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:16.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8052ms +2024-05-24 16:31:19.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:19.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:19.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:19.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4924ms +2024-05-24 16:31:22.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:22.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:22.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:22.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8526ms +2024-05-24 16:31:26.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:26.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:26.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:26.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8113ms +2024-05-24 16:31:28.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:28.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:28.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:28.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5384ms +2024-05-24 16:31:30.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:30.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:30.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:30.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7296ms +2024-05-24 16:31:31.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:31.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:31.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:31.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0751ms +2024-05-24 16:31:34.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:34.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:34.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:34.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9508ms +2024-05-24 16:31:37.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:37.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:37.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:37.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7213ms +2024-05-24 16:31:41.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:41.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:41.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:41.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8046ms +2024-05-24 16:31:43.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:43.671 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:43.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:43.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6837ms +2024-05-24 16:31:45.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:45.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:45.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:45.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8633ms +2024-05-24 16:31:46.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:46.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:46.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:46.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5788ms +2024-05-24 16:31:49.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:49.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:49.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:49.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9012ms +2024-05-24 16:31:52.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:52.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:52.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:52.667 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.126ms +2024-05-24 16:31:56.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:56.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:56.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:56.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7593ms +2024-05-24 16:31:58.665 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:31:58.666 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:58.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:31:58.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 138.6933ms +2024-05-24 16:32:00.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:00.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:00.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:00.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5435ms +2024-05-24 16:32:01.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:01.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:01.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:01.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2194ms +2024-05-24 16:32:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:04.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:04.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8974ms +2024-05-24 16:32:07.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:07.643 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:07.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:07.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7625ms +2024-05-24 16:32:11.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:11.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:11.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:11.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.009ms +2024-05-24 16:32:13.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:13.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:13.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:13.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2369ms +2024-05-24 16:32:15.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:15.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:15.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:15.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0299ms +2024-05-24 16:32:16.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:16.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:16.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:16.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6855ms +2024-05-24 16:32:19.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:19.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:19.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:19.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6544ms +2024-05-24 16:32:22.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:22.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:22.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:22.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6618ms +2024-05-24 16:32:26.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:26.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:26.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:26.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2782ms +2024-05-24 16:32:28.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:28.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:28.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:28.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9714ms +2024-05-24 16:32:30.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:30.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:30.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:30.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8533ms +2024-05-24 16:32:31.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:31.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:31.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:31.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4647ms +2024-05-24 16:32:34.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:34.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:34.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4526ms +2024-05-24 16:32:37.642 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:37.642 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:37.671 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:37.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4868ms +2024-05-24 16:32:41.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:41.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:41.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:41.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6503ms +2024-05-24 16:32:43.669 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:32:43.670 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:43.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:32:43.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.3742ms +2024-05-24 16:47:02.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:02.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:02.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:02.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.5235ms +2024-05-24 16:47:02.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:02.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:03.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:03.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 376.9341ms +2024-05-24 16:47:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:04.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:04.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9314ms +2024-05-24 16:47:05.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:05.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:05.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:05.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7489ms +2024-05-24 16:47:17.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:17.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:17.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:17.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8651ms +2024-05-24 16:47:19.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:19.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:19.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:19.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6833ms +2024-05-24 16:47:32.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:32.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:32.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:32.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6351ms +2024-05-24 16:47:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:34.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:34.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0907ms +2024-05-24 16:47:47.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:47.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:47.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:47.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7005ms +2024-05-24 16:47:49.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:47:49.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:49.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:47:49.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8519ms +2024-05-24 16:48:02.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:02.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:02.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:02.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.9916ms +2024-05-24 16:48:04.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:04.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:04.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:04.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1177ms +2024-05-24 16:48:17.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:17.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:17.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:17.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0367ms +2024-05-24 16:48:19.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:19.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:19.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:19.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9764ms +2024-05-24 16:48:32.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:32.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:32.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:32.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0993ms +2024-05-24 16:48:34.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:34.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:34.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:34.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2747ms +2024-05-24 16:48:47.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:47.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:47.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:47.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2885ms +2024-05-24 16:48:49.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:48:49.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:49.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:48:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1867ms +2024-05-24 16:49:02.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:02.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:02.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:02.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0082ms +2024-05-24 16:49:04.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:04.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:04.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:04.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4772ms +2024-05-24 16:49:17.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:17.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:17.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:17.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7063ms +2024-05-24 16:49:19.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:19.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:19.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:19.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8052ms +2024-05-24 16:49:32.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:32.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:32.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:32.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9248ms +2024-05-24 16:49:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:34.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:34.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:34.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5635ms +2024-05-24 16:49:47.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:47.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:47.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:47.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9432ms +2024-05-24 16:49:49.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:49:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:49.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:49:49.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1725ms +2024-05-24 16:50:02.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:02.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:02.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:02.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5801ms +2024-05-24 16:50:04.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:04.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:04.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:04.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3841ms +2024-05-24 16:50:17.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:17.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:17.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:17.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5901ms +2024-05-24 16:50:19.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:19.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:19.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:19.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9395ms +2024-05-24 16:50:32.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:32.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:32.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:32.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.865ms +2024-05-24 16:50:34.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:34.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7289ms +2024-05-24 16:50:47.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:47.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:47.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:47.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2664ms +2024-05-24 16:50:49.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:50:49.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:49.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:50:49.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0625ms +2024-05-24 16:51:02.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:02.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:02.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:02.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7516ms +2024-05-24 16:51:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:04.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:04.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:04.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6168ms +2024-05-24 16:51:17.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:17.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:17.799 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:17.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8023ms +2024-05-24 16:51:19.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:19.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:19.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:19.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6958ms +2024-05-24 16:51:32.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:32.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:32.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:32.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2735ms +2024-05-24 16:51:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:34.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:34.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6777ms +2024-05-24 16:51:47.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:47.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:47.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:47.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1551ms +2024-05-24 16:51:49.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:51:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:49.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:51:49.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1618ms +2024-05-24 16:52:02.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:02.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:02.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:02.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4323ms +2024-05-24 16:52:04.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:04.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:04.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:04.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.9003ms +2024-05-24 16:52:17.769 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:17.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:17.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:17.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7217ms +2024-05-24 16:52:19.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:19.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:19.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:19.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 42.966ms +2024-05-24 16:52:32.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:32.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:32.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:32.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.4739ms +2024-05-24 16:52:34.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:34.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:34.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:34.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.434ms +2024-05-24 16:52:47.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:47.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:47.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:47.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.964ms +2024-05-24 16:52:49.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:52:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:49.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:52:49.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7906ms +2024-05-24 16:53:02.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:02.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:02.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:02.802 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.404ms +2024-05-24 16:53:04.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:04.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:04.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:04.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5293ms +2024-05-24 16:53:17.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:17.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:17.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:17.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.1909ms +2024-05-24 16:53:19.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:19.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:19.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:19.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1009ms +2024-05-24 16:53:32.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:32.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:32.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:32.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7303ms +2024-05-24 16:53:34.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:34.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:34.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:34.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.403ms +2024-05-24 16:53:49.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:53:49.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:49.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:53:49.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0339ms +2024-05-24 16:54:04.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:54:04.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:04.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:04.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8897ms +2024-05-24 16:54:19.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:54:19.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:19.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:19.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6177ms +2024-05-24 16:54:34.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:54:34.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:34.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:34.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3876ms +2024-05-24 16:54:49.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:54:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:49.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:54:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5985ms +2024-05-24 16:55:04.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:55:04.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:04.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:04.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2394ms +2024-05-24 16:55:19.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:55:19.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:19.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:19.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5308ms +2024-05-24 16:55:34.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:55:34.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:34.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:34.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3145ms +2024-05-24 16:55:49.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:55:49.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:49.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:55:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.689ms +2024-05-24 16:56:04.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:56:04.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:04.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:04.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.483ms +2024-05-24 16:56:19.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:56:19.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:19.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:19.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4255ms +2024-05-24 16:56:34.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:56:34.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:34.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:34.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7816ms +2024-05-24 16:56:49.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:56:49.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:49.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:56:49.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7685ms +2024-05-24 16:57:04.823 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:57:04.824 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:04.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:04.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4699ms +2024-05-24 16:57:19.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:57:19.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:19.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:19.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9011ms +2024-05-24 16:57:34.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:57:34.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:34.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:34.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8596ms +2024-05-24 16:57:49.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:57:49.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:49.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:57:49.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4269ms +2024-05-24 16:58:04.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 16:58:04.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:58:04.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 16:58:04.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6412ms +2024-05-24 17:00:02.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:02.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:02.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:02.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 141.0726ms +2024-05-24 17:00:02.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:02.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:02.840 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:02.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.2503ms +2024-05-24 17:00:07.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:07.077 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:07.107 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:07.108 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5551ms +2024-05-24 17:00:08.271 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 17:00:08.276 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:08.792 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Unread. +2024-05-24 17:00:08.793 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:08.793 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 522.1311ms +2024-05-24 17:00:10.263 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 17:00:10.264 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:10.387 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Unread. +2024-05-24 17:00:10.387 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:10.387 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 124.0151ms +2024-05-24 17:00:11.043 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 17:00:11.043 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:11.163 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 17:00:11.164 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:11.164 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 120.7646ms +2024-05-24 17:00:12.090 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 17:00:12.091 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:12.204 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Unread. +2024-05-24 17:00:12.204 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:00:12.204 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 113.6079ms +2024-05-24 17:00:15.467 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:15.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:15.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:15.497 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0702ms +2024-05-24 17:00:17.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:17.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:17.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:17.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1755ms +2024-05-24 17:00:32.809 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:32.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:32.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:32.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6812ms +2024-05-24 17:00:47.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:00:47.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:47.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:00:47.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4138ms +2024-05-24 17:01:02.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:01:02.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:02.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:02.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0301ms +2024-05-24 17:01:17.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:01:17.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:17.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:17.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4214ms +2024-05-24 17:01:32.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:01:32.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:32.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:32.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7496ms +2024-05-24 17:01:47.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:01:47.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:47.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:01:47.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0121ms +2024-05-24 17:02:02.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:02:02.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:02.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:02.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7498ms +2024-05-24 17:02:17.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:02:17.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:17.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:17.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1033ms +2024-05-24 17:02:32.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:02:32.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:32.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:32.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7444ms +2024-05-24 17:02:47.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:02:47.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:47.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:02:47.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5311ms +2024-05-24 17:03:02.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:03:02.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:02.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:02.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9965ms +2024-05-24 17:03:17.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:03:17.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:17.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:17.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7784ms +2024-05-24 17:03:32.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:03:32.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:32.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:32.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7952ms +2024-05-24 17:03:47.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:03:47.810 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:47.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:03:47.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.445ms +2024-05-24 17:04:02.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:04:02.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:02.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:02.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1312ms +2024-05-24 17:04:17.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:04:17.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:17.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:17.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8181ms +2024-05-24 17:04:32.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:04:32.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:32.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:32.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8171ms +2024-05-24 17:04:47.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:04:47.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:47.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:04:47.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5435ms +2024-05-24 17:05:02.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:05:02.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:02.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:02.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0748ms +2024-05-24 17:05:17.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:05:17.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:17.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:17.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7747ms +2024-05-24 17:05:32.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:05:32.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:32.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:32.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2914ms +2024-05-24 17:05:47.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:05:47.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:47.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:05:47.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9229ms +2024-05-24 17:06:02.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:06:02.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:02.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:02.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 41.4764ms +2024-05-24 17:06:17.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:06:17.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:17.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:17.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1415ms +2024-05-24 17:06:32.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:06:32.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:32.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:32.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3689ms +2024-05-24 17:06:47.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:06:47.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:47.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:06:47.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0985ms +2024-05-24 17:07:02.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:07:02.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:02.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:02.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6074ms +2024-05-24 17:07:17.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:07:17.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:17.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:17.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3313ms +2024-05-24 17:07:32.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:07:32.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:32.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:32.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6633ms +2024-05-24 17:07:47.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:07:47.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:47.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:07:47.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8502ms +2024-05-24 17:08:02.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:08:02.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:02.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:02.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6662ms +2024-05-24 17:08:17.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:08:17.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:17.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:17.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2235ms +2024-05-24 17:08:32.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:08:32.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:32.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:32.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0566ms +2024-05-24 17:08:47.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:08:47.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:47.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:08:47.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0659ms +2024-05-24 17:09:02.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:09:02.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:02.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:02.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5175ms +2024-05-24 17:09:17.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:09:17.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:17.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:17.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3023ms +2024-05-24 17:09:32.806 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:09:32.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:32.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:32.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.546ms +2024-05-24 17:09:47.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:09:47.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:47.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:09:47.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2659ms +2024-05-24 17:10:02.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:10:02.799 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:02.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:02.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2485ms +2024-05-24 17:10:17.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:10:17.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:17.837 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:17.838 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4078ms +2024-05-24 17:10:32.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:10:32.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:32.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:32.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.412ms +2024-05-24 17:10:47.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:10:47.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:47.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:10:47.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5748ms +2024-05-24 17:11:02.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:02.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:02.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:02.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2502ms +2024-05-24 17:11:17.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:17.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:17.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:17.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.265ms +2024-05-24 17:11:32.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:32.802 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:32.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:32.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9424ms +2024-05-24 17:11:47.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:47.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:47.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:47.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.428ms +2024-05-24 17:11:58.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:58.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:58.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:58.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2084ms +2024-05-24 17:11:59.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:11:59.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:59.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:11:59.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6872ms +2024-05-24 17:12:13.936 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:12:13.937 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:13.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:13.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8894ms +2024-05-24 17:12:26.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:12:26.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:26.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:26.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8121ms +2024-05-24 17:12:28.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:12:28.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:28.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:28.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.3499ms +2024-05-24 17:12:43.940 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:12:43.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:43.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:43.977 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.7082ms +2024-05-24 17:12:58.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:12:58.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:58.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:12:58.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7915ms +2024-05-24 17:13:13.942 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:13:13.944 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:13.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:13.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9829ms +2024-05-24 17:13:28.934 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:13:28.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:28.963 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:28.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1371ms +2024-05-24 17:13:43.943 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:13:43.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:43.976 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:43.976 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6785ms +2024-05-24 17:13:58.938 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:13:58.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:58.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:13:58.972 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1279ms +2024-05-24 17:14:13.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:14:13.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:13.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:13.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2378ms +2024-05-24 17:14:28.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:14:28.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:28.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:28.966 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.185ms +2024-05-24 17:14:43.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:14:43.939 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:43.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:43.967 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7641ms +2024-05-24 17:14:58.939 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:14:58.940 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:58.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:14:58.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3686ms +2024-05-24 17:15:13.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:15:13.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:13.979 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:13.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.1066ms +2024-05-24 17:15:57.415 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:15:57.416 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:57.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:57.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6665ms +2024-05-24 17:15:57.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:15:57.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:57.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:15:57.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6719ms +2024-05-24 17:16:09.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:09.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7545ms +2024-05-24 17:16:11.726 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:11.726 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:11.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:11.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2186ms +2024-05-24 17:16:11.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:11.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:11.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:11.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5249ms +2024-05-24 17:16:12.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:12.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:12.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:12.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3608ms +2024-05-24 17:16:19.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:19.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8505ms +2024-05-24 17:16:19.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:19.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.963ms +2024-05-24 17:16:19.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:19.204 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:19.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6429ms +2024-05-24 17:16:23.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8 - null null +2024-05-24 17:16:23.420 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:23.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:23.458 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8 - 200 null application/json 37.93ms +2024-05-24 17:16:25.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:25.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:25.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:25.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2168ms +2024-05-24 17:16:26.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:26.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:26.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:26.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3961ms +2024-05-24 17:16:27.556 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - null null +2024-05-24 17:16:27.557 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:27.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:27.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - 200 null application/json 34.1232ms +2024-05-24 17:16:27.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:27.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:27.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:27.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0592ms +2024-05-24 17:16:27.656 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 17:16:27.657 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:27.792 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 17:16:27.792 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:27.793 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 136.3838ms +2024-05-24 17:16:29.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:29.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:29.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:29.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7375ms +2024-05-24 17:16:31.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - null null +2024-05-24 17:16:31.423 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:31.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 17:16:31.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - 200 null application/json 47.2164ms +2024-05-24 17:16:31.473 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 17:16:31.473 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:31.586 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 17:16:31.586 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:31.586 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 113.3627ms +2024-05-24 17:16:34.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:34.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:34.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:34.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5589ms +2024-05-24 17:16:39.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:39.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:39.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:39.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1635ms +2024-05-24 17:16:41.471 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 17:16:41.471 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:41.587 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 17:16:41.588 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 17:16:41.588 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 117.438ms +2024-05-24 17:16:41.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:41.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:41.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:41.799 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6602ms +2024-05-24 17:16:42.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:42.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:42.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:42.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0033ms +2024-05-24 17:16:49.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:49.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:49.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:49.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2771ms +2024-05-24 17:16:56.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:56.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:56.800 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:56.800 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.1121ms +2024-05-24 17:16:57.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:16:57.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:57.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:16:57.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4234ms +2024-05-24 17:17:04.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:04.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:04.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:04.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4136ms +2024-05-24 17:17:11.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:11.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:11.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:11.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6248ms +2024-05-24 17:17:12.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:12.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:12.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:12.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5887ms +2024-05-24 17:17:19.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:19.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:19.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:19.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0959ms +2024-05-24 17:17:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:26.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:26.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:26.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1158ms +2024-05-24 17:17:27.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:27.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:27.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:27.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2662ms +2024-05-24 17:17:34.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:34.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:34.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:34.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4801ms +2024-05-24 17:17:41.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:41.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:41.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:41.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5673ms +2024-05-24 17:17:42.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:42.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:42.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9473ms +2024-05-24 17:17:49.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:49.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:49.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:49.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.292ms +2024-05-24 17:17:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:56.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:56.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:56.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2419ms +2024-05-24 17:17:57.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:17:57.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:57.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:17:57.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0746ms +2024-05-24 17:18:04.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:04.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:04.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:04.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1517ms +2024-05-24 17:18:11.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:11.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:11.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:11.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3271ms +2024-05-24 17:18:12.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:12.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:12.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:12.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.659ms +2024-05-24 17:18:19.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:19.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:19.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:19.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5542ms +2024-05-24 17:18:26.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:26.768 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:26.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:26.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2413ms +2024-05-24 17:18:27.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:27.599 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:27.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:27.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.0601ms +2024-05-24 17:18:34.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:34.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:34.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:34.242 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6981ms +2024-05-24 17:18:41.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:41.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:41.797 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:41.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4779ms +2024-05-24 17:18:42.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:42.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:42.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:42.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6394ms +2024-05-24 17:18:49.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:49.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:49.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:49.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7515ms +2024-05-24 17:18:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:56.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:56.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:56.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 40.6838ms +2024-05-24 17:18:57.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:18:57.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:57.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:18:57.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7762ms +2024-05-24 17:19:04.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:04.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:04.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:04.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8394ms +2024-05-24 17:19:11.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:11.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6861ms +2024-05-24 17:19:12.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:12.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:12.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:12.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0018ms +2024-05-24 17:19:19.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:19.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:19.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:19.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7638ms +2024-05-24 17:19:26.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:26.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:26.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:26.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2214ms +2024-05-24 17:19:27.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:27.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:27.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:27.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1706ms +2024-05-24 17:19:34.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:34.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:34.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:34.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.036ms +2024-05-24 17:19:41.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:41.769 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:41.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:41.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.7949ms +2024-05-24 17:19:42.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:42.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:42.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9153ms +2024-05-24 17:19:49.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:49.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:49.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:49.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7893ms +2024-05-24 17:19:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:56.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:56.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:56.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.3263ms +2024-05-24 17:19:57.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:19:57.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:57.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:19:57.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1049ms +2024-05-24 17:20:04.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:04.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:04.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:04.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4276ms +2024-05-24 17:20:11.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:11.760 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2387ms +2024-05-24 17:20:12.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:12.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:12.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:12.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.183ms +2024-05-24 17:20:19.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:19.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:19.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:19.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5671ms +2024-05-24 17:20:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:26.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:26.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:26.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1641ms +2024-05-24 17:20:27.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:27.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:27.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:27.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3241ms +2024-05-24 17:20:34.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:34.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:34.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:34.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9566ms +2024-05-24 17:20:41.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:41.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:41.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:41.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.415ms +2024-05-24 17:20:42.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:42.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:42.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:42.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0098ms +2024-05-24 17:20:49.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:49.211 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:49.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:49.240 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4552ms +2024-05-24 17:20:56.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:56.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:56.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:56.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2585ms +2024-05-24 17:20:57.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:20:57.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:57.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:20:57.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4331ms +2024-05-24 17:21:04.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:04.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:04.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:04.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3452ms +2024-05-24 17:21:11.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:11.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:11.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:11.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.8249ms +2024-05-24 17:21:12.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:12.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:12.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:12.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3495ms +2024-05-24 17:21:19.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:19.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:19.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:19.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.0728ms +2024-05-24 17:21:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:26.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:26.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:26.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8826ms +2024-05-24 17:21:27.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:27.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:27.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:27.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.6142ms +2024-05-24 17:21:34.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:34.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:34.241 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:34.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9109ms +2024-05-24 17:21:41.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:41.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:41.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:41.797 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9231ms +2024-05-24 17:21:42.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:42.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:42.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:42.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.0349ms +2024-05-24 17:21:49.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:49.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:49.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:49.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9301ms +2024-05-24 17:21:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:56.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:56.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:56.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1018ms +2024-05-24 17:21:57.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:21:57.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:57.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:21:57.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8174ms +2024-05-24 17:22:04.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:04.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:04.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:04.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.3603ms +2024-05-24 17:22:11.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:11.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:11.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:11.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0848ms +2024-05-24 17:22:12.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:12.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:12.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:12.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0299ms +2024-05-24 17:22:19.212 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:19.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:19.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:19.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.1554ms +2024-05-24 17:22:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:26.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:26.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:26.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1103ms +2024-05-24 17:22:27.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:27.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:27.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:27.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4724ms +2024-05-24 17:22:34.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:34.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:34.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:34.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.752ms +2024-05-24 17:22:41.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:41.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:41.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:41.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0238ms +2024-05-24 17:22:42.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:42.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:42.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:42.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2872ms +2024-05-24 17:22:49.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:49.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:49.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:49.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.485ms +2024-05-24 17:22:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:56.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:56.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:56.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2757ms +2024-05-24 17:22:57.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:22:57.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:57.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:22:57.629 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.9656ms +2024-05-24 17:23:04.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:04.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:04.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:04.576 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 368.9398ms +2024-05-24 17:23:11.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:11.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3155ms +2024-05-24 17:23:12.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:12.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:12.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:12.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7374ms +2024-05-24 17:23:19.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:19.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:19.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:19.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2279ms +2024-05-24 17:23:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:26.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:26.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:26.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.723ms +2024-05-24 17:23:27.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:27.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:27.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:27.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8297ms +2024-05-24 17:23:34.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:34.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:34.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:34.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2102ms +2024-05-24 17:23:41.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:41.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:41.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:41.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4791ms +2024-05-24 17:23:42.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:42.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:42.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1759ms +2024-05-24 17:23:49.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:49.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:49.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:49.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5656ms +2024-05-24 17:23:56.760 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:56.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:56.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:56.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9568ms +2024-05-24 17:23:57.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:23:57.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:57.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:23:57.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9365ms +2024-05-24 17:24:04.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:04.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:04.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:04.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1614ms +2024-05-24 17:24:11.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:11.760 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:11.786 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:11.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.62ms +2024-05-24 17:24:12.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:12.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:12.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:12.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1878ms +2024-05-24 17:24:19.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:19.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:19.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:19.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9189ms +2024-05-24 17:24:26.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:26.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:26.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:26.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.7487ms +2024-05-24 17:24:27.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:27.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:27.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:27.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.716ms +2024-05-24 17:24:34.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:34.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:34.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:34.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1117ms +2024-05-24 17:24:41.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:41.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:41.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:41.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8766ms +2024-05-24 17:24:42.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:42.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:42.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6793ms +2024-05-24 17:24:49.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:49.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:49.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:49.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7437ms +2024-05-24 17:24:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:56.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:56.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:56.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.5175ms +2024-05-24 17:24:57.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:24:57.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:57.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:24:57.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2563ms +2024-05-24 17:25:04.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:04.204 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:04.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:04.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4038ms +2024-05-24 17:25:11.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:11.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4014ms +2024-05-24 17:25:12.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:12.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:12.623 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:12.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1164ms +2024-05-24 17:25:19.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:19.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:19.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:19.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6304ms +2024-05-24 17:25:26.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:26.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:26.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:26.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7551ms +2024-05-24 17:25:27.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:27.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:27.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:27.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6918ms +2024-05-24 17:25:34.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:34.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:34.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:34.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.4732ms +2024-05-24 17:25:41.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:41.761 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:41.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:41.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8256ms +2024-05-24 17:25:42.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:42.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:42.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:42.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7239ms +2024-05-24 17:25:49.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:49.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:49.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:49.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.612ms +2024-05-24 17:25:56.768 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:56.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:56.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:56.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4251ms +2024-05-24 17:25:57.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:25:57.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:57.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:25:57.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.7762ms +2024-05-24 17:26:04.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:04.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:04.236 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:04.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.001ms +2024-05-24 17:26:11.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:11.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:11.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:11.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6055ms +2024-05-24 17:26:12.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:12.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:12.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:12.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3244ms +2024-05-24 17:26:19.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:19.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:19.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:19.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5055ms +2024-05-24 17:26:26.759 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:26.760 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:26.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:26.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9867ms +2024-05-24 17:26:27.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:27.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:27.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:27.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4068ms +2024-05-24 17:26:34.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:34.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:34.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:34.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5777ms +2024-05-24 17:26:41.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:41.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:41.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:41.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0359ms +2024-05-24 17:26:42.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:42.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:42.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:42.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.1305ms +2024-05-24 17:26:49.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:49.204 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:49.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:49.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0971ms +2024-05-24 17:26:56.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:56.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:56.788 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:56.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.194ms +2024-05-24 17:26:57.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:26:57.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:57.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:26:57.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.102ms +2024-05-24 17:27:04.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:04.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:04.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:04.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.8572ms +2024-05-24 17:27:11.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:11.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:11.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:11.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8983ms +2024-05-24 17:27:12.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:12.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:12.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:12.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1539ms +2024-05-24 17:27:19.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:19.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:19.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:19.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.5525ms +2024-05-24 17:27:26.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:26.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:26.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:26.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3187ms +2024-05-24 17:27:27.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:27.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:27.626 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:27.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5341ms +2024-05-24 17:27:34.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:34.209 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:34.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:34.239 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5114ms +2024-05-24 17:27:41.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:41.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:41.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:41.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0782ms +2024-05-24 17:27:42.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:42.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:42.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:42.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2789ms +2024-05-24 17:27:49.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:49.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:49.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:49.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9675ms +2024-05-24 17:27:56.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:56.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:56.795 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:56.795 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1717ms +2024-05-24 17:27:57.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:27:57.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:57.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:27:57.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.825ms +2024-05-24 17:28:04.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:04.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:04.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:04.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6849ms +2024-05-24 17:28:11.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:11.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.621ms +2024-05-24 17:28:12.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:12.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:12.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:12.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4883ms +2024-05-24 17:28:19.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:19.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:19.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:19.244 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.905ms +2024-05-24 17:28:26.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:26.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:26.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:26.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0008ms +2024-05-24 17:28:27.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:27.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:27.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:27.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1447ms +2024-05-24 17:28:34.211 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:34.212 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:34.240 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:34.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8954ms +2024-05-24 17:28:41.767 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:41.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:41.796 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:41.796 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4341ms +2024-05-24 17:28:42.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:42.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:42.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:42.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7503ms +2024-05-24 17:28:49.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:49.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:49.252 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:49.252 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5274ms +2024-05-24 17:28:56.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:56.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:56.789 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:56.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1867ms +2024-05-24 17:28:57.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:28:57.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:57.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:28:57.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3056ms +2024-05-24 17:29:04.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:04.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:04.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:04.234 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9294ms +2024-05-24 17:29:11.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:11.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:11.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:11.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5239ms +2024-05-24 17:29:12.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:12.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:12.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:12.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.2525ms +2024-05-24 17:29:19.210 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:19.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:19.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:19.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9968ms +2024-05-24 17:29:26.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:26.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:26.791 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:26.791 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4623ms +2024-05-24 17:29:27.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:27.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:27.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:27.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.853ms +2024-05-24 17:29:34.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:34.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:34.239 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:34.241 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.2365ms +2024-05-24 17:29:41.765 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:41.766 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:41.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:41.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.3532ms +2024-05-24 17:29:42.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:42.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:42.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:42.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.9586ms +2024-05-24 17:29:49.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:49.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:49.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:49.233 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8502ms +2024-05-24 17:29:56.761 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:56.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:56.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:56.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1317ms +2024-05-24 17:29:57.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:29:57.598 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:57.625 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:29:57.626 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0217ms +2024-05-24 17:30:04.208 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:30:04.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:04.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:04.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4841ms +2024-05-24 17:30:11.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:30:11.765 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:11.790 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:11.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.701ms +2024-05-24 17:30:12.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:30:12.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:12.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:12.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.313ms +2024-05-24 17:30:13.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:30:13.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:13.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:30:13.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 244.393ms +2024-05-24 17:31:25.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:25.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:25.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:25.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 71.919ms +2024-05-24 17:31:25.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:25.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:25.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:25.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.874ms +2024-05-24 17:31:31.763 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:31.764 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:31.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:31.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3447ms +2024-05-24 17:31:31.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:31.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:31.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:31.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3675ms +2024-05-24 17:31:40.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:40.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:40.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:40.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3709ms +2024-05-24 17:31:42.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:42.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:42.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:42.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0948ms +2024-05-24 17:31:46.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:46.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:46.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:46.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9153ms +2024-05-24 17:31:55.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:31:55.294 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:55.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:31:55.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6271ms +2024-05-24 17:32:01.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:01.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:01.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:01.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1679ms +2024-05-24 17:32:10.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:10.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:10.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:10.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9454ms +2024-05-24 17:32:16.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:16.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:16.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:16.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.918ms +2024-05-24 17:32:25.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:25.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:25.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:25.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2985ms +2024-05-24 17:32:31.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:31.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:31.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:31.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.5878ms +2024-05-24 17:32:40.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:40.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:40.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:40.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5581ms +2024-05-24 17:32:46.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:46.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:46.849 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:46.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.9155ms +2024-05-24 17:32:55.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:32:55.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:55.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:32:55.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3188ms +2024-05-24 17:33:01.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:01.815 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:01.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:01.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3827ms +2024-05-24 17:33:10.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:10.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:10.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:10.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 60.3434ms +2024-05-24 17:33:16.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:16.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:16.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:16.841 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1804ms +2024-05-24 17:33:25.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:25.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:25.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:25.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5731ms +2024-05-24 17:33:31.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:31.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:31.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:31.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6082ms +2024-05-24 17:33:40.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:40.294 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:40.328 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:40.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9959ms +2024-05-24 17:33:46.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:46.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:46.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:46.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4546ms +2024-05-24 17:33:55.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:33:55.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:55.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:33:55.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9955ms +2024-05-24 17:34:01.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:01.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:01.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:01.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1168ms +2024-05-24 17:34:10.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:10.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:10.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:10.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1445ms +2024-05-24 17:34:16.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:16.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:16.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:16.828 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9657ms +2024-05-24 17:34:25.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:25.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:25.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:25.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1185ms +2024-05-24 17:34:31.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:31.800 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:31.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:31.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 46.3494ms +2024-05-24 17:34:40.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:40.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:40.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:40.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0489ms +2024-05-24 17:34:46.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:46.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:46.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:46.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4573ms +2024-05-24 17:34:55.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:34:55.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:55.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:34:55.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5087ms +2024-05-24 17:35:01.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:01.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:01.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:01.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2349ms +2024-05-24 17:35:10.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:10.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:10.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:10.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1952ms +2024-05-24 17:35:16.800 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:16.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:16.831 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:16.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8184ms +2024-05-24 17:35:25.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:25.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:25.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:25.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9823ms +2024-05-24 17:35:31.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:31.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:31.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:31.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4882ms +2024-05-24 17:35:40.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:40.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:40.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:40.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6824ms +2024-05-24 17:35:46.802 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:35:46.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:46.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:35:46.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4852ms +2024-05-24 17:36:07.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:07.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:07.205 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:07.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2232ms +2024-05-24 17:36:07.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:07.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:07.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:07.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4727ms +2024-05-24 17:36:13.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:13.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:13.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:13.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3044ms +2024-05-24 17:36:14.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:14.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:14.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:14.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3183ms +2024-05-24 17:36:22.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:22.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:22.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:22.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9439ms +2024-05-24 17:36:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:29.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:29.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6118ms +2024-05-24 17:36:37.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:37.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:37.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:37.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.0692ms +2024-05-24 17:36:43.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:43.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:44.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:44.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0716ms +2024-05-24 17:36:52.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:52.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:52.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:52.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7703ms +2024-05-24 17:36:58.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:36:58.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:59.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:36:59.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2951ms +2024-05-24 17:37:07.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:07.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:07.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:07.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8854ms +2024-05-24 17:37:13.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:13.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:14.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:14.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.554ms +2024-05-24 17:37:22.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:22.250 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:22.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:22.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4727ms +2024-05-24 17:37:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:28.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:29.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:29.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5152ms +2024-05-24 17:37:37.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:37.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:37.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:37.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8346ms +2024-05-24 17:37:43.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:43.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:44.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:44.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4438ms +2024-05-24 17:37:52.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:52.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:52.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:52.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6614ms +2024-05-24 17:37:58.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:37:58.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:59.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:37:59.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1889ms +2024-05-24 17:38:07.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:07.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:07.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:07.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2636ms +2024-05-24 17:38:13.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:13.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:14.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:14.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2837ms +2024-05-24 17:38:22.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:22.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:22.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:22.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6155ms +2024-05-24 17:38:28.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:28.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:29.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:29.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6292ms +2024-05-24 17:38:37.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:37.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:37.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:37.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9538ms +2024-05-24 17:38:43.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:43.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:44.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:44.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3516ms +2024-05-24 17:38:52.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:52.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:52.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:52.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3329ms +2024-05-24 17:38:58.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:38:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:59.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:38:59.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6575ms +2024-05-24 17:39:07.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:07.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:07.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:07.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3975ms +2024-05-24 17:39:13.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:13.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:14.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:14.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.3465ms +2024-05-24 17:39:22.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:22.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:22.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:22.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.1927ms +2024-05-24 17:39:28.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:28.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:29.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:29.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4775ms +2024-05-24 17:39:37.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:37.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:37.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:37.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2994ms +2024-05-24 17:39:43.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:43.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:44.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:44.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8033ms +2024-05-24 17:39:52.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:52.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:52.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:52.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1797ms +2024-05-24 17:39:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:39:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:59.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:39:59.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1436ms +2024-05-24 17:40:07.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:07.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:07.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:07.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.2585ms +2024-05-24 17:40:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:13.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:14.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:14.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0161ms +2024-05-24 17:40:22.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:22.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:22.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:22.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2814ms +2024-05-24 17:40:28.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:28.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:29.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:29.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0371ms +2024-05-24 17:40:37.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:37.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:37.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:37.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1537ms +2024-05-24 17:40:43.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:43.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:44.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:44.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9622ms +2024-05-24 17:40:52.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:52.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:52.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:52.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2496ms +2024-05-24 17:40:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:40:58.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:59.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:40:59.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9947ms +2024-05-24 17:41:07.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:07.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:07.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:07.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8283ms +2024-05-24 17:41:13.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:13.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:14.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:14.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.199ms +2024-05-24 17:41:22.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:22.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:22.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:22.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2735ms +2024-05-24 17:41:28.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:28.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:29.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:29.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7725ms +2024-05-24 17:41:37.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:37.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:37.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:37.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4895ms +2024-05-24 17:41:43.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:43.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:44.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:44.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8657ms +2024-05-24 17:41:52.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:52.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:52.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:52.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.8243ms +2024-05-24 17:41:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:41:58.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:59.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:41:59.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8446ms +2024-05-24 17:42:07.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:07.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:07.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:07.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9654ms +2024-05-24 17:42:13.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:13.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:14.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:14.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7263ms +2024-05-24 17:42:22.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:22.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:22.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:22.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9875ms +2024-05-24 17:42:28.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:28.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:29.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:29.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5659ms +2024-05-24 17:42:37.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:37.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:37.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:37.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6408ms +2024-05-24 17:42:43.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:43.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:44.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:44.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7231ms +2024-05-24 17:42:52.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:52.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:52.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:52.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8369ms +2024-05-24 17:42:58.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:42:58.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:59.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:42:59.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6721ms +2024-05-24 17:43:07.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:07.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:07.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:07.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.545ms +2024-05-24 17:43:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:13.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:14.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:14.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5206ms +2024-05-24 17:43:22.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:22.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:22.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:22.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0767ms +2024-05-24 17:43:28.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:28.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:29.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:29.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7349ms +2024-05-24 17:43:37.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:37.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:37.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:37.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0528ms +2024-05-24 17:43:43.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:43.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:44.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:44.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0511ms +2024-05-24 17:43:52.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:52.250 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:52.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:52.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4819ms +2024-05-24 17:43:58.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:43:58.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:59.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:43:59.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3232ms +2024-05-24 17:44:07.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:07.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:07.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:07.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3023ms +2024-05-24 17:44:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:13.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:14.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:14.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4777ms +2024-05-24 17:44:22.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:22.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:22.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:22.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.2741ms +2024-05-24 17:44:28.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:28.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:29.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:29.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4588ms +2024-05-24 17:44:37.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:37.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:37.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:37.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7478ms +2024-05-24 17:44:43.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:43.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:44.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:44.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9849ms +2024-05-24 17:44:52.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:52.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:52.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:52.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4394ms +2024-05-24 17:44:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:44:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:59.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:44:59.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8932ms +2024-05-24 17:45:07.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:07.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:07.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:07.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6251ms +2024-05-24 17:45:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:13.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:14.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:14.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4412ms +2024-05-24 17:45:22.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:22.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:22.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:22.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1908ms +2024-05-24 17:45:28.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:28.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:29.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:29.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.65ms +2024-05-24 17:45:37.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:37.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:37.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:37.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5067ms +2024-05-24 17:45:43.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:43.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:44.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:44.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0739ms +2024-05-24 17:45:52.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:52.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:52.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:52.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4972ms +2024-05-24 17:45:58.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:45:58.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:59.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:45:59.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 38.2282ms +2024-05-24 17:46:07.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:07.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:07.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:07.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4937ms +2024-05-24 17:46:13.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:13.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:14.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:14.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3845ms +2024-05-24 17:46:22.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:22.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:22.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:22.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8384ms +2024-05-24 17:46:28.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:29.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:29.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3623ms +2024-05-24 17:46:37.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:37.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:37.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:37.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5515ms +2024-05-24 17:46:43.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:43.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:44.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:44.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2594ms +2024-05-24 17:46:52.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:52.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:52.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:52.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8453ms +2024-05-24 17:46:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 17:46:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:59.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 17:46:59.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9917ms +2024-05-24 18:24:13.289 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:13.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:13.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:13.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7696ms +2024-05-24 18:24:13.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:13.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:13.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:13.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9389ms +2024-05-24 18:24:13.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:13.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:14.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:14.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2965ms +2024-05-24 18:24:15.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:15.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:15.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:15.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4926ms +2024-05-24 18:24:17.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:17.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:17.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:17.319 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1106ms +2024-05-24 18:24:17.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:17.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:17.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:17.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7336ms +2024-05-24 18:24:18.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:18.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:18.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:18.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4039ms +2024-05-24 18:24:18.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:18.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:18.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:18.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.1426ms +2024-05-24 18:24:28.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:28.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:28.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:28.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4162ms +2024-05-24 18:24:28.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:29.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:29.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4203ms +2024-05-24 18:24:32.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:32.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:32.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:32.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9223ms +2024-05-24 18:24:33.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:33.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:33.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:33.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.6146ms +2024-05-24 18:24:43.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:43.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:43.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:43.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5539ms +2024-05-24 18:24:43.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:43.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:44.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:44.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2346ms +2024-05-24 18:24:47.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:47.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:47.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:47.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2304ms +2024-05-24 18:24:48.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:48.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:48.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:48.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2468ms +2024-05-24 18:24:58.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:58.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:58.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:58.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.4403ms +2024-05-24 18:24:58.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:24:58.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:59.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:24:59.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3918ms +2024-05-24 18:25:02.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:02.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:02.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:02.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4308ms +2024-05-24 18:25:03.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:03.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:03.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:03.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0868ms +2024-05-24 18:25:13.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:13.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:13.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:13.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8054ms +2024-05-24 18:25:13.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:13.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:14.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:14.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9297ms +2024-05-24 18:25:17.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:17.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:17.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:17.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2303ms +2024-05-24 18:25:18.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:18.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:18.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:18.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2429ms +2024-05-24 18:25:28.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:28.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:28.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:28.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5433ms +2024-05-24 18:25:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:29.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:29.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8576ms +2024-05-24 18:25:32.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:32.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:32.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:32.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4907ms +2024-05-24 18:25:33.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:33.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:33.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:33.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8326ms +2024-05-24 18:25:43.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:43.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:43.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:43.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7963ms +2024-05-24 18:25:43.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:43.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:44.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:44.007 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0023ms +2024-05-24 18:25:47.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:47.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:47.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:47.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2676ms +2024-05-24 18:25:48.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:48.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:48.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:48.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5233ms +2024-05-24 18:25:58.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:58.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:58.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:58.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.628ms +2024-05-24 18:25:58.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:25:58.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:59.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:25:59.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.5512ms +2024-05-24 18:26:02.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:02.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:02.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:02.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8268ms +2024-05-24 18:26:03.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:03.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:03.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:03.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1064ms +2024-05-24 18:26:13.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:13.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:13.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:13.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9767ms +2024-05-24 18:26:13.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:13.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:14.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:14.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8863ms +2024-05-24 18:26:17.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:17.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:17.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:17.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.5795ms +2024-05-24 18:26:18.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:18.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:18.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:18.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4823ms +2024-05-24 18:26:28.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:28.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:28.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:28.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3ms +2024-05-24 18:26:28.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:28.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:29.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:29.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7065ms +2024-05-24 18:26:32.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:32.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:32.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:32.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2451ms +2024-05-24 18:26:33.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:33.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:33.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:33.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.636ms +2024-05-24 18:26:43.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:43.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:43.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:43.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.2458ms +2024-05-24 18:26:43.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:43.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:44.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:44.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7181ms +2024-05-24 18:26:47.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:47.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:47.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:47.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0883ms +2024-05-24 18:26:48.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:48.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:48.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:48.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.5155ms +2024-05-24 18:26:58.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:58.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:58.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:58.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3081ms +2024-05-24 18:26:58.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:26:58.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:59.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:26:59.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1589ms +2024-05-24 18:27:02.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:02.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:02.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:02.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.886ms +2024-05-24 18:27:03.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:03.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:03.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:03.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3129ms +2024-05-24 18:27:13.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:13.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:13.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:13.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5828ms +2024-05-24 18:27:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:13.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:14.024 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:14.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 44.6356ms +2024-05-24 18:27:17.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:17.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:17.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:17.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4906ms +2024-05-24 18:27:18.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:18.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:18.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:18.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7113ms +2024-05-24 18:27:28.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:28.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:28.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:28.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8299ms +2024-05-24 18:27:28.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:28.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:29.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:29.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.9637ms +2024-05-24 18:27:32.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:32.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:32.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:32.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.919ms +2024-05-24 18:27:33.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:33.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:33.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:33.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1523ms +2024-05-24 18:27:43.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:43.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:43.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:43.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7645ms +2024-05-24 18:27:43.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:43.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:44.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:44.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.8952ms +2024-05-24 18:27:47.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:47.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:47.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:47.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.5388ms +2024-05-24 18:27:48.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:48.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:48.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:48.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5171ms +2024-05-24 18:27:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:58.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:58.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:58.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5252ms +2024-05-24 18:27:58.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:27:58.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:59.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:27:59.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9145ms +2024-05-24 18:28:02.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:02.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:02.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:02.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.9043ms +2024-05-24 18:28:03.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:03.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:03.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:03.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6833ms +2024-05-24 18:28:13.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:13.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:13.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:13.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4396ms +2024-05-24 18:28:13.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:13.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:14.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:14.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6435ms +2024-05-24 18:28:17.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:17.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:17.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:17.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6896ms +2024-05-24 18:28:18.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:18.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:18.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:18.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8891ms +2024-05-24 18:28:28.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:28.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:28.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:28.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.0234ms +2024-05-24 18:28:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:29.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:29.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1833ms +2024-05-24 18:28:32.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:32.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:32.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:32.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2489ms +2024-05-24 18:28:33.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:33.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:33.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:33.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2217ms +2024-05-24 18:28:43.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:43.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:43.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:43.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4835ms +2024-05-24 18:28:43.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:43.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:44.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:44.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.6182ms +2024-05-24 18:28:47.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:47.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:47.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:47.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7029ms +2024-05-24 18:28:48.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:48.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:48.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:48.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6088ms +2024-05-24 18:28:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:58.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:58.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:58.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8675ms +2024-05-24 18:28:58.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:28:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:59.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:28:59.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1813ms +2024-05-24 18:29:02.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:02.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:02.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:02.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0884ms +2024-05-24 18:29:03.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:03.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:03.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:03.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8127ms +2024-05-24 18:29:13.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:13.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:13.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:13.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2048ms +2024-05-24 18:29:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:13.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:14.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:14.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.591ms +2024-05-24 18:29:17.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:17.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:17.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:17.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1614ms +2024-05-24 18:29:18.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:18.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:18.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:18.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5187ms +2024-05-24 18:29:28.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:28.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:28.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:28.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2983ms +2024-05-24 18:29:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:28.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:29.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:29.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.366ms +2024-05-24 18:29:32.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:32.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:32.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:32.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3107ms +2024-05-24 18:29:33.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:33.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:33.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:33.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3406ms +2024-05-24 18:29:43.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:43.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:43.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:43.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2927ms +2024-05-24 18:29:43.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:43.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:44.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:44.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6074ms +2024-05-24 18:29:47.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:47.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:47.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:47.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3469ms +2024-05-24 18:29:48.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:48.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:48.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:48.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2374ms +2024-05-24 18:29:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:58.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:58.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:58.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 37.0172ms +2024-05-24 18:29:58.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:29:58.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:59.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:29:59.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.1639ms +2024-05-24 18:30:02.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:02.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:02.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:02.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3171ms +2024-05-24 18:30:03.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:03.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:03.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:03.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2201ms +2024-05-24 18:30:13.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:13.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:13.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:13.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6553ms +2024-05-24 18:30:13.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:13.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:14.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:14.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4572ms +2024-05-24 18:30:17.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:17.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:17.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:17.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.7609ms +2024-05-24 18:30:18.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:18.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:18.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:18.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.0684ms +2024-05-24 18:30:28.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:28.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:28.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:28.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 118.2566ms +2024-05-24 18:30:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:28.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:29.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:29.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5597ms +2024-05-24 18:30:32.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:32.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:32.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:32.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8965ms +2024-05-24 18:30:33.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:33.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:33.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:33.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1195ms +2024-05-24 18:30:43.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:43.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:43.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:43.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3211ms +2024-05-24 18:30:43.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:43.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:44.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:44.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5563ms +2024-05-24 18:30:47.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:47.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:47.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:47.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1114ms +2024-05-24 18:30:48.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:48.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:48.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:48.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.5767ms +2024-05-24 18:30:58.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:58.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:58.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:58.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9764ms +2024-05-24 18:30:58.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:30:58.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:59.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:30:59.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1662ms +2024-05-24 18:31:02.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:02.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:02.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:02.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6923ms +2024-05-24 18:31:03.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:03.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:03.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:03.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7606ms +2024-05-24 18:31:13.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:13.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:13.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:13.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2992ms +2024-05-24 18:31:13.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:13.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:14.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:14.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1982ms +2024-05-24 18:31:17.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:17.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:17.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:17.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.9983ms +2024-05-24 18:31:18.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:18.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:18.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:18.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9152ms +2024-05-24 18:31:28.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:28.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:28.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:28.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4678ms +2024-05-24 18:31:28.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:28.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:29.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:29.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3744ms +2024-05-24 18:31:32.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:32.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:32.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:32.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.3426ms +2024-05-24 18:31:33.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:33.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:33.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:33.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4303ms +2024-05-24 18:31:43.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:43.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:43.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:43.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9653ms +2024-05-24 18:31:43.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:43.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:44.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:44.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6846ms +2024-05-24 18:31:47.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:47.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:47.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:47.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.7605ms +2024-05-24 18:31:48.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:48.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:48.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:48.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.6321ms +2024-05-24 18:31:58.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:58.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:58.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:58.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.6254ms +2024-05-24 18:31:58.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:31:58.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:59.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:31:59.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.2355ms +2024-05-24 18:32:02.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:02.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:02.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:02.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 56.8026ms +2024-05-24 18:32:03.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:03.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:03.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:03.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 250.6345ms +2024-05-24 18:32:13.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:13.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:13.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:13.364 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.844ms +2024-05-24 18:32:13.985 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:13.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:14.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:14.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.1524ms +2024-05-24 18:32:17.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:17.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:17.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:17.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8218ms +2024-05-24 18:32:18.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:18.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:18.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:18.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.055ms +2024-05-24 18:32:28.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:28.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:28.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:28.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.4636ms +2024-05-24 18:32:28.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:29.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:29.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7596ms +2024-05-24 18:32:32.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:32.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:32.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:32.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5288ms +2024-05-24 18:32:33.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:33.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:33.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:33.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0269ms +2024-05-24 18:32:43.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:43.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:43.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:43.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4705ms +2024-05-24 18:32:43.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:43.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:44.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:44.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.9359ms +2024-05-24 18:32:47.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:47.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:47.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:47.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.1838ms +2024-05-24 18:32:48.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:48.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:48.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:48.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.527ms +2024-05-24 18:32:58.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:58.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:58.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:58.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5527ms +2024-05-24 18:32:58.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:32:58.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:59.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:32:59.015 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.7006ms +2024-05-24 18:33:02.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:02.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:02.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:02.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.9422ms +2024-05-24 18:33:03.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:03.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:03.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:03.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.445ms +2024-05-24 18:33:13.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:13.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:13.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:13.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.3772ms +2024-05-24 18:33:13.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:13.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:14.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:14.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.9026ms +2024-05-24 18:33:17.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:17.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:17.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:17.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.956ms +2024-05-24 18:33:18.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:18.261 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:18.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:18.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4658ms +2024-05-24 18:33:28.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:28.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:28.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:28.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.4422ms +2024-05-24 18:33:28.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:28.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:29.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:29.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.42ms +2024-05-24 18:33:32.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:32.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:32.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:32.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.7931ms +2024-05-24 18:33:33.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:33.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:33.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:33.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2432ms +2024-05-24 18:33:43.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:43.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:43.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:43.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.6621ms +2024-05-24 18:33:43.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:43.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:44.009 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:44.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6601ms +2024-05-24 18:33:47.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:47.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:47.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:47.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3353ms +2024-05-24 18:33:48.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:48.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:48.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:48.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.8529ms +2024-05-24 18:33:58.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:58.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:58.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:58.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.7327ms +2024-05-24 18:33:58.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:33:58.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:59.007 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:33:59.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.7929ms +2024-05-24 18:34:02.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:02.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:02.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:02.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 43.046ms +2024-05-24 18:34:03.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:03.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:03.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:03.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.4048ms +2024-05-24 18:34:13.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:13.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:13.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:13.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2576ms +2024-05-24 18:34:13.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:13.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:14.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:14.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.4423ms +2024-05-24 18:34:17.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:17.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:17.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:17.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2305ms +2024-05-24 18:34:18.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:18.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:18.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:18.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3048ms +2024-05-24 18:34:28.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:28.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:28.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:28.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.3253ms +2024-05-24 18:34:28.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:28.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:29.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:29.014 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.8202ms +2024-05-24 18:34:32.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:32.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:32.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:32.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.5006ms +2024-05-24 18:34:33.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:33.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:33.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:33.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.277ms +2024-05-24 18:34:43.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:43.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:43.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:43.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0076ms +2024-05-24 18:34:43.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:43.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:44.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:44.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.413ms +2024-05-24 18:34:47.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:47.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:47.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:47.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 25.9541ms +2024-05-24 18:34:48.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:48.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:48.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:48.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.9486ms +2024-05-24 18:34:58.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:58.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:58.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:58.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8611ms +2024-05-24 18:34:58.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:34:58.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:59.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:34:59.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.6566ms +2024-05-24 18:35:02.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:02.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:02.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:02.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4641ms +2024-05-24 18:35:03.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:03.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:03.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:03.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.2492ms +2024-05-24 18:35:13.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:13.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:13.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:13.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 33.7864ms +2024-05-24 18:35:13.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:13.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:14.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:14.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 34.2683ms +2024-05-24 18:35:17.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:17.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:17.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:17.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.2057ms +2024-05-24 18:35:18.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:18.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:18.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:18.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.0905ms +2024-05-24 18:35:28.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:28.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:28.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:28.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6707ms +2024-05-24 18:35:28.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:28.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:29.012 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:29.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.3226ms +2024-05-24 18:35:32.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:32.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:32.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:32.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.6771ms +2024-05-24 18:35:33.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:33.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:33.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:33.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.3557ms +2024-05-24 18:35:43.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:43.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:43.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:43.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.6718ms +2024-05-24 18:35:43.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:43.983 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:44.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:44.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5577ms +2024-05-24 18:35:47.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:47.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:47.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:47.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0927ms +2024-05-24 18:35:48.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:48.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:48.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:48.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.73ms +2024-05-24 18:35:58.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:58.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:58.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:58.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.2732ms +2024-05-24 18:35:58.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:35:58.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:59.006 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:35:59.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1869ms +2024-05-24 18:36:02.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:02.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:02.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:02.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 32.8811ms +2024-05-24 18:36:03.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:03.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:03.290 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:03.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4271ms +2024-05-24 18:36:13.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:13.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:13.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:13.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.9889ms +2024-05-24 18:36:13.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:13.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:14.013 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:14.013 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.7975ms +2024-05-24 18:36:17.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:17.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:17.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:17.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.0043ms +2024-05-24 18:36:18.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:18.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:18.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:18.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8459ms +2024-05-24 18:36:28.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:28.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:28.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:28.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 36.9317ms +2024-05-24 18:36:28.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:28.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:29.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:29.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.5971ms +2024-05-24 18:36:32.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:32.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:32.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:32.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.2137ms +2024-05-24 18:36:33.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:33.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:33.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:33.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.2245ms +2024-05-24 18:36:43.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:43.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:43.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:43.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.4821ms +2024-05-24 18:36:43.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:43.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:44.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:44.006 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.1016ms +2024-05-24 18:36:49.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:49.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:49.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:49.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.262ms +2024-05-24 18:36:49.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:49.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:49.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:49.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.8655ms +2024-05-24 18:36:55.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:55.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:55.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:55.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.5581ms +2024-05-24 18:36:58.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:36:58.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:59.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:36:59.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.4119ms +2024-05-24 18:37:00.284 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 18:37:00.284 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:00.424 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Unread. +2024-05-24 18:37:00.424 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:00.425 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 140.5306ms +2024-05-24 18:37:02.375 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 18:37:02.376 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:02.498 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 18:37:02.498 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:02.498 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 123.3123ms +2024-05-24 18:37:02.964 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 18:37:02.965 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:03.083 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 18:37:03.084 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:03.084 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 119.7887ms +2024-05-24 18:37:03.353 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 18:37:03.354 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:03.471 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 18:37:03.472 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:03.472 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 118.7965ms +2024-05-24 18:37:04.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:37:04.078 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:04.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:04.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 26.0707ms +2024-05-24 18:37:07.332 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 18:37:07.333 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:07.447 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 18:37:07.448 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:07.448 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 116.3804ms +2024-05-24 18:37:07.997 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 18:37:07.998 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:08.113 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Unread. +2024-05-24 18:37:08.113 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:08.113 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 116.7072ms +2024-05-24 18:37:08.649 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 18:37:08.650 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:08.767 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Unread. +2024-05-24 18:37:08.767 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:37:08.768 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 118.2721ms +2024-05-24 18:37:13.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:37:13.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:14.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:14.004 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.5109ms +2024-05-24 18:37:19.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 18:37:19.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:19.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:37:19.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.8943ms +2024-05-24 18:40:11.928 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:11.928 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:11.956 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:11.957 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9567ms +2024-05-24 18:40:12.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:12.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:12.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:12.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.7775ms +2024-05-24 18:40:13.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:40:13.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:13.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:13.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 36.0434ms +2024-05-24 18:40:15.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:15.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:15.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:15.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3289ms +2024-05-24 18:40:15.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:15.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:15.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:15.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5508ms +2024-05-24 18:40:17.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:40:17.149 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.4698ms +2024-05-24 18:40:17.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:17.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3684ms +2024-05-24 18:40:17.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:17.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:17.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1732ms +2024-05-24 18:40:26.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:26.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:27.024 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:27.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9064ms +2024-05-24 18:40:30.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:30.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:30.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:30.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8109ms +2024-05-24 18:40:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:32.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:32.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:32.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5914ms +2024-05-24 18:40:41.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:41.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:42.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1857ms +2024-05-24 18:40:45.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:45.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:45.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:45.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4651ms +2024-05-24 18:40:47.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:47.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:47.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:47.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5622ms +2024-05-24 18:40:56.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:40:56.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:57.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:40:57.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0913ms +2024-05-24 18:41:00.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:00.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:00.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:00.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1402ms +2024-05-24 18:41:02.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:02.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:02.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:02.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.628ms +2024-05-24 18:41:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:12.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:12.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7003ms +2024-05-24 18:41:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:15.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:15.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1602ms +2024-05-24 18:41:17.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:17.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:17.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:17.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3387ms +2024-05-24 18:41:26.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:26.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:27.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:27.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9708ms +2024-05-24 18:41:30.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:30.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:30.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:30.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2563ms +2024-05-24 18:41:32.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:32.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:32.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:32.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1016ms +2024-05-24 18:41:41.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:41.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:42.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:42.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9758ms +2024-05-24 18:41:45.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:45.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:45.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:45.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1062ms +2024-05-24 18:41:47.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:47.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:47.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:47.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1967ms +2024-05-24 18:41:56.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:41:56.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:57.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:41:57.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.668ms +2024-05-24 18:42:00.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:00.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:00.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:00.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0871ms +2024-05-24 18:42:02.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:02.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:02.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:02.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5625ms +2024-05-24 18:42:11.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:11.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:12.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:12.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8914ms +2024-05-24 18:42:15.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:15.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:15.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:15.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7101ms +2024-05-24 18:42:17.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:17.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:17.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:17.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6492ms +2024-05-24 18:42:26.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:27.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:27.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3713ms +2024-05-24 18:42:30.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:30.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:30.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:30.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9401ms +2024-05-24 18:42:32.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:32.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:32.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:32.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1786ms +2024-05-24 18:42:41.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:41.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:42.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3864ms +2024-05-24 18:42:45.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:45.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:45.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:45.720 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3761ms +2024-05-24 18:42:47.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:47.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:47.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:47.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1912ms +2024-05-24 18:42:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:42:56.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:57.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:42:57.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6045ms +2024-05-24 18:43:00.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:00.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:00.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:00.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2016ms +2024-05-24 18:43:02.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:02.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:02.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:02.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6961ms +2024-05-24 18:43:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:12.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:12.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.6735ms +2024-05-24 18:43:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:15.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:15.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3772ms +2024-05-24 18:43:17.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:17.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:17.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:17.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6916ms +2024-05-24 18:43:26.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:26.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:27.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:27.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8902ms +2024-05-24 18:43:30.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:30.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:30.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:30.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6593ms +2024-05-24 18:43:32.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:32.246 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:32.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:32.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3655ms +2024-05-24 18:43:41.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:41.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:42.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:42.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2653ms +2024-05-24 18:43:45.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:45.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:45.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:45.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8136ms +2024-05-24 18:43:47.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:47.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:47.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:47.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2253ms +2024-05-24 18:43:56.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:43:56.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:57.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:43:57.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2428ms +2024-05-24 18:44:00.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:00.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:00.720 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:00.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.9268ms +2024-05-24 18:44:02.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:02.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:02.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:02.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5781ms +2024-05-24 18:44:11.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:11.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:12.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:12.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4873ms +2024-05-24 18:44:15.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:15.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:15.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:15.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0565ms +2024-05-24 18:44:17.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:17.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:17.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:17.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5578ms +2024-05-24 18:44:26.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:27.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:27.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0571ms +2024-05-24 18:44:30.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:30.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:30.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0231ms +2024-05-24 18:44:32.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:32.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:32.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:32.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2641ms +2024-05-24 18:44:41.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:41.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:42.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:42.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3791ms +2024-05-24 18:44:45.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:45.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:45.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0677ms +2024-05-24 18:44:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:47.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:47.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0849ms +2024-05-24 18:44:56.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:44:56.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:57.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:44:57.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3521ms +2024-05-24 18:45:00.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:00.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:00.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:00.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7631ms +2024-05-24 18:45:02.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:02.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:02.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:02.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6486ms +2024-05-24 18:45:11.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:11.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:12.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:12.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3624ms +2024-05-24 18:45:15.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:15.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:15.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:15.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0237ms +2024-05-24 18:45:17.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:17.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:17.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:17.264 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 25.9521ms +2024-05-24 18:45:26.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:27.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:27.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2127ms +2024-05-24 18:45:30.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:30.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:30.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3491ms +2024-05-24 18:45:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:32.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:32.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:32.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 49.3352ms +2024-05-24 18:45:41.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:41.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:42.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6323ms +2024-05-24 18:45:45.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:45.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:45.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:45.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0441ms +2024-05-24 18:45:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:47.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:47.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.1369ms +2024-05-24 18:45:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:45:56.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:57.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:45:57.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0029ms +2024-05-24 18:46:00.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:00.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:00.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:00.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6783ms +2024-05-24 18:46:02.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:02.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:02.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:02.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.332ms +2024-05-24 18:46:11.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:11.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:12.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:12.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2703ms +2024-05-24 18:46:15.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:15.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:15.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8772ms +2024-05-24 18:46:17.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:17.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:17.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:17.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9776ms +2024-05-24 18:46:26.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:27.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:27.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9035ms +2024-05-24 18:46:30.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:30.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:30.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0673ms +2024-05-24 18:46:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:32.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:32.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:32.280 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.1207ms +2024-05-24 18:46:41.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:41.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:42.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:42.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8632ms +2024-05-24 18:46:45.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:45.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:45.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7557ms +2024-05-24 18:46:47.246 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:47.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:47.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:47.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4281ms +2024-05-24 18:46:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:46:56.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:57.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:46:57.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6926ms +2024-05-24 18:47:00.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:00.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:00.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:00.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2269ms +2024-05-24 18:47:02.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:02.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:02.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:02.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8407ms +2024-05-24 18:47:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:12.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:12.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4712ms +2024-05-24 18:47:15.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:15.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:15.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2502ms +2024-05-24 18:47:17.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:17.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:17.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:17.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9976ms +2024-05-24 18:47:26.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:27.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:27.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.787ms +2024-05-24 18:47:30.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:30.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:30.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:30.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8497ms +2024-05-24 18:47:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:32.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:32.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:32.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5683ms +2024-05-24 18:47:41.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:41.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:42.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:42.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7351ms +2024-05-24 18:47:45.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:45.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:45.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.003ms +2024-05-24 18:47:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:47.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:47.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0386ms +2024-05-24 18:47:56.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:47:56.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:57.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:47:57.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4594ms +2024-05-24 18:48:00.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:00.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:00.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:00.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7782ms +2024-05-24 18:48:02.247 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:02.247 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:02.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:02.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9016ms +2024-05-24 18:48:11.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:12.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:12.026 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6922ms +2024-05-24 18:48:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:15.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:15.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 104.998ms +2024-05-24 18:48:17.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:17.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:17.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:17.268 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0639ms +2024-05-24 18:48:26.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:26.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:27.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:27.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1343ms +2024-05-24 18:48:30.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:30.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:30.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3757ms +2024-05-24 18:48:32.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:32.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:32.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:32.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.225ms +2024-05-24 18:48:41.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:41.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:42.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1609ms +2024-05-24 18:48:45.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:45.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:45.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.2896ms +2024-05-24 18:48:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:47.276 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:47.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2092ms +2024-05-24 18:48:56.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:48:56.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:57.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:48:57.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.1921ms +2024-05-24 18:49:00.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:00.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:00.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:00.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2695ms +2024-05-24 18:49:02.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:02.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:02.280 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:02.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.4147ms +2024-05-24 18:49:11.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:11.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:12.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:12.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2783ms +2024-05-24 18:49:15.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:15.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:15.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:15.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2004ms +2024-05-24 18:49:17.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:17.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:17.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:17.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2253ms +2024-05-24 18:49:26.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:26.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:27.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:27.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0278ms +2024-05-24 18:49:30.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:30.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:30.805 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 126.2237ms +2024-05-24 18:49:32.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:32.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:32.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:32.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.9944ms +2024-05-24 18:49:42.005 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:42.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:42.036 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:42.036 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.15ms +2024-05-24 18:49:45.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:45.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:45.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8159ms +2024-05-24 18:49:47.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:47.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:47.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:47.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3851ms +2024-05-24 18:49:56.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:49:56.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:57.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:49:57.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4508ms +2024-05-24 18:50:00.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:00.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:00.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:00.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3007ms +2024-05-24 18:50:02.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:02.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:02.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:02.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0907ms +2024-05-24 18:50:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:12.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:12.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0285ms +2024-05-24 18:50:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:15.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:15.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8386ms +2024-05-24 18:50:17.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:17.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:17.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:17.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5017ms +2024-05-24 18:50:26.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:26.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:27.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:27.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6706ms +2024-05-24 18:50:30.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:30.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:30.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:30.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1484ms +2024-05-24 18:50:32.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:32.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:32.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:32.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 25.8569ms +2024-05-24 18:50:41.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:41.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:42.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:42.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4281ms +2024-05-24 18:50:45.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:45.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:45.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:45.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8656ms +2024-05-24 18:50:47.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:47.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:47.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3656ms +2024-05-24 18:50:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:50:56.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:57.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:50:57.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6588ms +2024-05-24 18:51:00.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:00.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:00.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:00.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0997ms +2024-05-24 18:51:02.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:02.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:02.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:02.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2569ms +2024-05-24 18:51:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:11.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:12.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:12.028 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.1759ms +2024-05-24 18:51:15.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:15.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:15.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:15.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9551ms +2024-05-24 18:51:17.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:17.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:17.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:17.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.407ms +2024-05-24 18:51:23.234 +02:00 [INF] Deregistering a service [id: notifications-service:8d390f39e420462ab41695996b83a5d2] from Consul... +2024-05-24 18:51:23.235 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8d390f39e420462ab41695996b83a5d2" +2024-05-24 18:51:23.236 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8d390f39e420462ab41695996b83a5d2 +2024-05-24 18:51:23.236 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8d390f39e420462ab41695996b83a5d2 +2024-05-24 18:51:23.245 +02:00 [INF] Received HTTP response headers after 9.1129ms - 200 +2024-05-24 18:51:23.245 +02:00 [INF] End processing HTTP request after 9.7213ms - 200 +2024-05-24 18:51:23.245 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:51:23.246 +02:00 [INF] Deregistered a service [id: notifications-service:8d390f39e420462ab41695996b83a5d2] from Consul. +2024-05-24 18:51:38.110 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 18:51:38.183 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 18:51:38.232 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 18:51:38.301 +02:00 [INF] Registering a service [id: notifications-service:1c80ee0d1608497fb521f6ed1917f6dc] in Consul... +2024-05-24 18:51:38.324 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 18:51:38.327 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:51:38.328 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:51:38.341 +02:00 [INF] Received HTTP response headers after 11.1375ms - 200 +2024-05-24 18:51:38.342 +02:00 [INF] End processing HTTP request after 15.288ms - 200 +2024-05-24 18:51:38.344 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:51:38.345 +02:00 [INF] Registered a service [id: notifications-service:1c80ee0d1608497fb521f6ed1917f6dc] in Consul. +2024-05-24 18:51:38.345 +02:00 [INF] Removed 0 old notifications. +2024-05-24 18:51:38.345 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 18:51:38.354 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 18:51:38.367 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 18:51:38.371 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 18:51:38.373 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 18:51:38.375 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 18:51:38.378 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 18:51:38.381 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 18:51:38.384 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 18:51:42.023 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:42.074 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:42.151 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:42.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 138.2336ms +2024-05-24 18:51:43.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:51:43.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:43.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:43.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 36.07ms +2024-05-24 18:51:45.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:45.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:45.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:45.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.803ms +2024-05-24 18:51:47.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:47.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:47.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1309ms +2024-05-24 18:51:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:51:56.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:57.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:51:57.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.769ms +2024-05-24 18:52:00.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:00.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:00.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:00.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.143ms +2024-05-24 18:52:02.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:02.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:02.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:02.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3603ms +2024-05-24 18:52:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:12.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:12.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.7139ms +2024-05-24 18:52:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:15.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:15.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4601ms +2024-05-24 18:52:16.131 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 18:52:16.131 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:52:16.323 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 18:52:16.324 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:52:16.325 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 194.1967ms +2024-05-24 18:52:17.189 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 18:52:17.190 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:52:17.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:17.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:17.318 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 18:52:17.319 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 18:52:17.319 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 129.9234ms +2024-05-24 18:52:17.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:17.539 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 290.9668ms +2024-05-24 18:52:21.542 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:21.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:21.572 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:21.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6055ms +2024-05-24 18:52:21.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:21.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:21.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:21.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9354ms +2024-05-24 18:52:23.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:52:23.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.6507ms +2024-05-24 18:52:23.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:23.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.458ms +2024-05-24 18:52:23.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:23.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.736 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:23.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1563ms +2024-05-24 18:52:26.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:26.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:27.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:27.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7151ms +2024-05-24 18:52:30.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:30.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:30.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:30.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2764ms +2024-05-24 18:52:32.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:32.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:32.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:32.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1538ms +2024-05-24 18:52:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:36.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:36.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:36.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7874ms +2024-05-24 18:52:38.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:38.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:38.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:38.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4385ms +2024-05-24 18:52:41.994 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:41.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:42.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:42.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7703ms +2024-05-24 18:52:45.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:45.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:45.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:45.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8595ms +2024-05-24 18:52:47.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:47.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:47.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:47.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6518ms +2024-05-24 18:52:51.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:51.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:51.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:51.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9412ms +2024-05-24 18:52:53.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:53.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:53.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:53.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8137ms +2024-05-24 18:52:56.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:52:56.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:57.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:52:57.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1534ms +2024-05-24 18:53:00.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:00.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:00.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:00.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0307ms +2024-05-24 18:53:02.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:02.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:02.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:02.275 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.456ms +2024-05-24 18:53:05.503 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 18:53:05.505 +02:00 [INF] Executing endpoint '405 HTTP Method Not Supported' +2024-05-24 18:53:05.505 +02:00 [INF] Executed endpoint '405 HTTP Method Not Supported' +2024-05-24 18:53:05.514 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - 405 0 null 10.8505ms +2024-05-24 18:53:06.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:06.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:06.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:06.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6662ms +2024-05-24 18:53:08.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:08.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:08.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:08.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1699ms +2024-05-24 18:53:11.476 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 18:53:11.477 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:11.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:11.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/c4819385-2bdf-41c3-a21c-5a9e0f195fda?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 29.3379ms +2024-05-24 18:53:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:11.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:12.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:12.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1782ms +2024-05-24 18:53:15.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:15.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:15.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:15.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.804ms +2024-05-24 18:53:17.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:17.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:17.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:17.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1488ms +2024-05-24 18:53:21.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:21.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:21.622 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:21.622 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.5722ms +2024-05-24 18:53:23.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:23.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:23.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:23.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2105ms +2024-05-24 18:53:26.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:26.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:27.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:27.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 93.7517ms +2024-05-24 18:53:30.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:30.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:30.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:30.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8265ms +2024-05-24 18:53:32.238 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:32.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:32.265 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:32.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1099ms +2024-05-24 18:53:36.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:36.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:36.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0551ms +2024-05-24 18:53:38.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:38.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:38.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:38.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.155ms +2024-05-24 18:53:41.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 18:53:41.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:41.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:41.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-22&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 28.5864ms +2024-05-24 18:53:41.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:41.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:42.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:42.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1836ms +2024-05-24 18:53:45.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:45.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:45.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:45.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.718ms +2024-05-24 18:53:47.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:47.239 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:47.278 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:47.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.0016ms +2024-05-24 18:53:50.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 18:53:50.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:50.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:50.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 27.8591ms +2024-05-24 18:53:51.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:51.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:51.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:51.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9423ms +2024-05-24 18:53:53.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:53.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:53.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:53.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8818ms +2024-05-24 18:53:56.990 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:53:56.990 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:57.021 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:53:57.021 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2017ms +2024-05-24 18:54:00.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:00.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:00.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:00.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.939ms +2024-05-24 18:54:02.245 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:02.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:02.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:02.274 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8081ms +2024-05-24 18:54:06.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:06.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:06.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:06.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3224ms +2024-05-24 18:54:08.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:08.698 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:08.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:08.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5563ms +2024-05-24 18:54:11.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:11.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:12.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:12.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3512ms +2024-05-24 18:54:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:15.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:15.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:15.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2626ms +2024-05-24 18:54:17.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:17.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:17.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:17.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4455ms +2024-05-24 18:54:21.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:21.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:21.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:21.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3251ms +2024-05-24 18:54:23.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:23.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:23.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:23.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 60.248ms +2024-05-24 18:54:26.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:26.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:27.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:27.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5241ms +2024-05-24 18:54:30.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:30.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:30.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:30.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8807ms +2024-05-24 18:54:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:32.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:32.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:32.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5217ms +2024-05-24 18:54:36.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:36.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:36.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:36.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5485ms +2024-05-24 18:54:38.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:38.702 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:38.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:38.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8541ms +2024-05-24 18:54:41.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:41.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:42.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:42.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6964ms +2024-05-24 18:54:45.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:45.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:45.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:45.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1977ms +2024-05-24 18:54:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:47.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:47.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:47.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5411ms +2024-05-24 18:54:51.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:51.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:51.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:51.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9117ms +2024-05-24 18:54:53.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:53.700 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:53.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:53.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0164ms +2024-05-24 18:54:56.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:54:56.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:57.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:54:57.023 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6899ms +2024-05-24 18:55:00.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:00.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:00.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:00.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0253ms +2024-05-24 18:55:02.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:02.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:02.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:02.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.0288ms +2024-05-24 18:55:06.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:06.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:06.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:06.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5982ms +2024-05-24 18:55:08.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:08.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:08.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:08.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1813ms +2024-05-24 18:55:11.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:11.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:12.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:12.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5894ms +2024-05-24 18:55:15.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:15.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:15.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:15.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.016ms +2024-05-24 18:55:17.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:17.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:17.273 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:17.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1724ms +2024-05-24 18:55:21.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:21.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:21.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:21.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.5143ms +2024-05-24 18:55:23.700 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:23.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:23.731 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:23.731 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3913ms +2024-05-24 18:55:26.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:26.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:27.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:27.018 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2503ms +2024-05-24 18:55:30.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:30.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:30.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:30.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3317ms +2024-05-24 18:55:32.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:32.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:32.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:32.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1951ms +2024-05-24 18:55:36.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:36.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:36.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:36.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.684ms +2024-05-24 18:55:38.702 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:38.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:38.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:38.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.1319ms +2024-05-24 18:55:41.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:41.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:42.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:42.019 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4103ms +2024-05-24 18:55:45.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:45.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:45.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:45.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7496ms +2024-05-24 18:55:47.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:47.243 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:47.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:47.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9813ms +2024-05-24 18:55:51.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:51.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:51.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:51.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2137ms +2024-05-24 18:55:53.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:53.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:53.730 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:53.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0813ms +2024-05-24 18:55:56.995 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:55:56.996 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:57.022 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:55:57.022 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2443ms +2024-05-24 18:56:00.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:56:00.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:00.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:00.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4287ms +2024-05-24 18:56:00.953 +02:00 [INF] Deregistering a service [id: notifications-service:1c80ee0d1608497fb521f6ed1917f6dc] from Consul... +2024-05-24 18:56:00.954 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:1c80ee0d1608497fb521f6ed1917f6dc" +2024-05-24 18:56:00.954 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1c80ee0d1608497fb521f6ed1917f6dc +2024-05-24 18:56:00.954 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:1c80ee0d1608497fb521f6ed1917f6dc +2024-05-24 18:56:00.957 +02:00 [INF] Received HTTP response headers after 2.4828ms - 200 +2024-05-24 18:56:00.957 +02:00 [INF] End processing HTTP request after 2.9549ms - 200 +2024-05-24 18:56:00.957 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:56:00.958 +02:00 [INF] Deregistered a service [id: notifications-service:1c80ee0d1608497fb521f6ed1917f6dc] from Consul. +2024-05-24 18:56:08.628 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 18:56:08.690 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 18:56:08.769 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 18:56:08.861 +02:00 [INF] Registering a service [id: notifications-service:200d4e2fb1104b90bcf71c37e980b677] in Consul... +2024-05-24 18:56:08.883 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 18:56:08.886 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:56:08.887 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:56:08.898 +02:00 [INF] Received HTTP response headers after 7.455ms - 200 +2024-05-24 18:56:08.899 +02:00 [INF] End processing HTTP request after 13.4162ms - 200 +2024-05-24 18:56:08.904 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:56:08.904 +02:00 [INF] Registered a service [id: notifications-service:200d4e2fb1104b90bcf71c37e980b677] in Consul. +2024-05-24 18:56:08.911 +02:00 [INF] Removed 0 old notifications. +2024-05-24 18:56:08.911 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 18:56:08.912 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 18:56:08.925 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 18:56:08.928 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 18:56:08.930 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 18:56:08.933 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 18:56:08.937 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 18:56:08.942 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 18:56:08.945 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 18:56:10.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:56:10.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:10.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:10.843 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:56:10.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 124.8576ms +2024-05-24 18:56:11.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:56:11.995 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:11.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:11.998 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:56:12.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 6.4395ms +2024-05-24 18:56:12.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:56:12.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:12.586 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:12.587 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:56:12.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 6.6224ms +2024-05-24 18:56:15.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:56:15.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:15.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:15.689 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:56:15.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 8.6004ms +2024-05-24 18:56:16.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:56:16.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:16.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:56:16.311 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:56:16.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 400 null application/json 58.5794ms +2024-05-24 18:59:07.401 +02:00 [INF] Deregistering a service [id: notifications-service:200d4e2fb1104b90bcf71c37e980b677] from Consul... +2024-05-24 18:59:07.402 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:200d4e2fb1104b90bcf71c37e980b677" +2024-05-24 18:59:07.402 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:200d4e2fb1104b90bcf71c37e980b677 +2024-05-24 18:59:07.402 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:200d4e2fb1104b90bcf71c37e980b677 +2024-05-24 18:59:07.405 +02:00 [INF] Received HTTP response headers after 2.4855ms - 200 +2024-05-24 18:59:07.405 +02:00 [INF] End processing HTTP request after 2.9917ms - 200 +2024-05-24 18:59:07.405 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:59:07.406 +02:00 [INF] Deregistered a service [id: notifications-service:200d4e2fb1104b90bcf71c37e980b677] from Consul. +2024-05-24 18:59:13.027 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 18:59:13.078 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 18:59:13.120 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 18:59:13.180 +02:00 [INF] Registering a service [id: notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66] in Consul... +2024-05-24 18:59:13.198 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 18:59:13.202 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:59:13.203 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 18:59:13.211 +02:00 [INF] Received HTTP response headers after 6.6735ms - 200 +2024-05-24 18:59:13.212 +02:00 [INF] End processing HTTP request after 10.8874ms - 200 +2024-05-24 18:59:13.215 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 18:59:13.215 +02:00 [INF] Registered a service [id: notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66] in Consul. +2024-05-24 18:59:13.222 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 18:59:13.230 +02:00 [INF] Removed 0 old notifications. +2024-05-24 18:59:13.230 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 18:59:13.231 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 18:59:13.234 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 18:59:13.236 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 18:59:13.239 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 18:59:13.240 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 18:59:13.243 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 18:59:13.245 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 18:59:24.376 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:24.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:24.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:24.492 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:24.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 140.1239ms +2024-05-24 18:59:24.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:24.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:24.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:24.528 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:24.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 13.1945ms +2024-05-24 18:59:35.159 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:59:35.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:35.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:35.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 69.336ms +2024-05-24 18:59:36.819 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:36.820 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:36.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:36.822 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:36.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 5.8679ms +2024-05-24 18:59:36.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:36.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:36.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:36.834 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:36.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.7801ms +2024-05-24 18:59:38.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 18:59:38.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 41.1252ms +2024-05-24 18:59:38.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:38.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.577 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:38.579 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.8327ms +2024-05-24 18:59:38.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:38.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.593 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:38.594 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:38.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.4434ms +2024-05-24 18:59:39.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:39.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:39.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:39.520 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:39.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 5.0281ms +2024-05-24 18:59:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:51.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:51.829 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:51.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.1427ms +2024-05-24 18:59:53.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:53.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:53.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:53.584 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:53.586 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 5.0584ms +2024-05-24 18:59:54.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 18:59:54.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:54.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 18:59:54.523 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 18:59:54.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 7.0813ms +2024-05-24 19:00:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:06.830 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:06.830 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:06.832 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 5.092ms +2024-05-24 19:00:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:08.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:08.584 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:08.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 2.9193ms +2024-05-24 19:00:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:09.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:09.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:09.520 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:09.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.1356ms +2024-05-24 19:00:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:21.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:21.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:21.834 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:21.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.1401ms +2024-05-24 19:00:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:23.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:23.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:23.585 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:23.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.9292ms +2024-05-24 19:00:24.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:24.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:24.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:24.521 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:24.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.7717ms +2024-05-24 19:00:36.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:36.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:36.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:36.839 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:36.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 10.6248ms +2024-05-24 19:00:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:38.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:38.585 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:38.585 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:38.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.2903ms +2024-05-24 19:00:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:39.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:39.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:39.522 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:39.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.5202ms +2024-05-24 19:00:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:51.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:51.832 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 48 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:00:51.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 2.9738ms +2024-05-24 19:00:52.987 +02:00 [INF] Deregistering a service [id: notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66] from Consul... +2024-05-24 19:00:52.988 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66" +2024-05-24 19:00:52.988 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66 +2024-05-24 19:00:52.988 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66 +2024-05-24 19:00:52.990 +02:00 [INF] Received HTTP response headers after 1.8039ms - 200 +2024-05-24 19:00:52.990 +02:00 [INF] End processing HTTP request after 2.2091ms - 200 +2024-05-24 19:00:52.991 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:00:52.991 +02:00 [INF] Deregistered a service [id: notifications-service:7d65ecb1d4a34e91af0dcb80a17ded66] from Consul. +2024-05-24 19:00:58.751 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:00:58.802 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:00:58.848 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:00:58.910 +02:00 [INF] Registering a service [id: notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3] in Consul... +2024-05-24 19:00:58.927 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:00:58.930 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:00:58.931 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:00:58.941 +02:00 [INF] Received HTTP response headers after 7.9741ms - 200 +2024-05-24 19:00:58.942 +02:00 [INF] End processing HTTP request after 12.025ms - 200 +2024-05-24 19:00:58.944 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:00:58.945 +02:00 [INF] Registered a service [id: notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3] in Consul. +2024-05-24 19:00:58.951 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:00:58.959 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:00:58.959 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:00:58.961 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:00:58.963 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:00:58.965 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:00:58.968 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:00:58.970 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:00:58.973 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:00:58.975 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:00:59.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:00:59.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:59.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:00:59.850 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 159.9511ms +2024-05-24 19:01:00.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:00.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:00.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:00.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7291ms +2024-05-24 19:01:04.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:04.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:04.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:04.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9702ms +2024-05-24 19:01:04.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:04.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:04.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:04.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6875ms +2024-05-24 19:01:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:06.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:06.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9234ms +2024-05-24 19:01:08.230 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:01:08.231 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.2731ms +2024-05-24 19:01:08.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:08.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8033ms +2024-05-24 19:01:08.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:08.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2415ms +2024-05-24 19:01:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:08.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2136ms +2024-05-24 19:01:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:09.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:09.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6111ms +2024-05-24 19:01:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:19.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:19.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6049ms +2024-05-24 19:01:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:21.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:21.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:21.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9578ms +2024-05-24 19:01:22.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:01:22.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.002 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 40.4958ms +2024-05-24 19:01:23.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4205ms +2024-05-24 19:01:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:23.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:23.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9948ms +2024-05-24 19:01:24.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:24.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:24.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:24.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8317ms +2024-05-24 19:01:34.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:34.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:34.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:34.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6699ms +2024-05-24 19:01:36.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:36.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:36.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:36.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4431ms +2024-05-24 19:01:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:38.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:38.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:38.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7583ms +2024-05-24 19:01:38.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:38.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:38.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7757ms +2024-05-24 19:01:39.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:39.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:39.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:39.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7194ms +2024-05-24 19:01:49.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:49.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:49.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:49.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7646ms +2024-05-24 19:01:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:51.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:51.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3495ms +2024-05-24 19:01:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:53.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:53.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:53.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6845ms +2024-05-24 19:01:53.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:53.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:53.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2455ms +2024-05-24 19:01:54.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:01:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:54.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:01:54.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0209ms +2024-05-24 19:02:04.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:04.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8385ms +2024-05-24 19:02:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:06.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:06.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:06.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2153ms +2024-05-24 19:02:08.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:08.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:08.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.91ms +2024-05-24 19:02:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:08.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:08.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4629ms +2024-05-24 19:02:09.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:09.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9091ms +2024-05-24 19:02:19.871 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:19.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:19.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:19.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6206ms +2024-05-24 19:02:21.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:21.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:21.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:21.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1565ms +2024-05-24 19:02:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:23.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:23.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9319ms +2024-05-24 19:02:23.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:23.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:23.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:23.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7609ms +2024-05-24 19:02:24.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:24.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:24.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9498ms +2024-05-24 19:02:34.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:34.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:34.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:34.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3493ms +2024-05-24 19:02:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:36.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8107ms +2024-05-24 19:02:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:38.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:38.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:38.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0373ms +2024-05-24 19:02:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:38.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:38.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0363ms +2024-05-24 19:02:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:39.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:39.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0046ms +2024-05-24 19:02:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:49.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:49.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:49.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2324ms +2024-05-24 19:02:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:51.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:51.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4056ms +2024-05-24 19:02:53.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:53.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:53.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7693ms +2024-05-24 19:02:53.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:53.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:53.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4687ms +2024-05-24 19:02:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:02:54.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:54.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:02:54.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2309ms +2024-05-24 19:03:04.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:04.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:04.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4477ms +2024-05-24 19:03:06.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:06.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:06.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:06.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.926ms +2024-05-24 19:03:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:08.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:08.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6845ms +2024-05-24 19:03:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:08.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:08.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.525ms +2024-05-24 19:03:09.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:09.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:09.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:09.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3151ms +2024-05-24 19:03:19.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:19.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:19.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.392ms +2024-05-24 19:03:21.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:21.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:21.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2049ms +2024-05-24 19:03:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:23.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:23.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6622ms +2024-05-24 19:03:23.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:23.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:23.646 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:23.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.51ms +2024-05-24 19:03:24.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:24.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:24.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:24.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5113ms +2024-05-24 19:03:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:34.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:34.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:34.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1275ms +2024-05-24 19:03:36.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:36.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:36.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7672ms +2024-05-24 19:03:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:38.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:38.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9871ms +2024-05-24 19:03:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:38.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:38.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.483ms +2024-05-24 19:03:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:39.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:39.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1474ms +2024-05-24 19:03:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:49.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:49.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:49.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5464ms +2024-05-24 19:03:51.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:51.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:51.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8256ms +2024-05-24 19:03:53.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:53.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:53.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3353ms +2024-05-24 19:03:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:53.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:53.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7612ms +2024-05-24 19:03:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:03:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:54.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:03:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2255ms +2024-05-24 19:04:04.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:04.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1159ms +2024-05-24 19:04:06.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:06.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:06.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:06.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5776ms +2024-05-24 19:04:08.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:08.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:08.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3361ms +2024-05-24 19:04:08.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:08.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:08.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9186ms +2024-05-24 19:04:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:09.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2058ms +2024-05-24 19:04:19.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:19.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:19.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:19.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3465ms +2024-05-24 19:04:21.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:21.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:21.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:21.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7671ms +2024-05-24 19:04:23.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:23.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:23.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:23.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9032ms +2024-05-24 19:04:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:23.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:23.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:23.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0517ms +2024-05-24 19:04:24.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:24.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:24.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0646ms +2024-05-24 19:04:34.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:34.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:34.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:34.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3465ms +2024-05-24 19:04:36.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:36.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2395ms +2024-05-24 19:04:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:38.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:38.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6903ms +2024-05-24 19:04:38.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:38.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:38.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8915ms +2024-05-24 19:04:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:39.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:39.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:39.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.937ms +2024-05-24 19:04:43.202 +02:00 [INF] Deregistering a service [id: notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3] from Consul... +2024-05-24 19:04:43.203 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3" +2024-05-24 19:04:43.203 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3 +2024-05-24 19:04:43.203 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3 +2024-05-24 19:04:43.205 +02:00 [INF] Received HTTP response headers after 1.9123ms - 200 +2024-05-24 19:04:43.206 +02:00 [INF] End processing HTTP request after 2.3309ms - 200 +2024-05-24 19:04:43.206 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:04:43.206 +02:00 [INF] Deregistered a service [id: notifications-service:34dc2fbaff8d4de8aafb53ed9cb58ef3] from Consul. +2024-05-24 19:04:48.856 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:04:48.914 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:04:48.956 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:04:49.019 +02:00 [INF] Registering a service [id: notifications-service:dc1fe938ba7549558953e939c4f41ad7] in Consul... +2024-05-24 19:04:49.040 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:04:49.043 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:04:49.044 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:04:49.055 +02:00 [INF] Received HTTP response headers after 8.1726ms - 200 +2024-05-24 19:04:49.056 +02:00 [INF] End processing HTTP request after 13.2917ms - 200 +2024-05-24 19:04:49.059 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:04:49.060 +02:00 [INF] Registered a service [id: notifications-service:dc1fe938ba7549558953e939c4f41ad7] in Consul. +2024-05-24 19:04:49.067 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:04:49.067 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:04:49.068 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:04:49.079 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:04:49.082 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:04:49.086 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:04:49.089 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:04:49.093 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:04:49.095 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:04:49.098 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:04:49.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:49.958 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:50.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:50.018 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:50.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 139.3368ms +2024-05-24 19:04:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:51.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:51.833 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:51.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 5.6274ms +2024-05-24 19:04:52.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:04:52.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:52.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:52.912 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:52.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 400 null application/json 7.5865ms +2024-05-24 19:04:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:53.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:53.321 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:53.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.8251ms +2024-05-24 19:04:53.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:53.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:53.581 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:53.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.8207ms +2024-05-24 19:04:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:04:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:54.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:04:54.517 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:04:54.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.0216ms +2024-05-24 19:05:04.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:04.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:04.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:04.873 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:04.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 12.5134ms +2024-05-24 19:05:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:06.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:06.830 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:06.831 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.3289ms +2024-05-24 19:05:08.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:08.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:08.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:08.329 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:08.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 13.0185ms +2024-05-24 19:05:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:08.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:08.581 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:08.582 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.1093ms +2024-05-24 19:05:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:09.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:09.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:09.524 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:09.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 10.6652ms +2024-05-24 19:05:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:19.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:19.866 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:19.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 6.8395ms +2024-05-24 19:05:21.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:21.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:21.829 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:21.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.2617ms +2024-05-24 19:05:23.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:23.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:23.320 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:23.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.3707ms +2024-05-24 19:05:23.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:23.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:23.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:23.594 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:23.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 18.0536ms +2024-05-24 19:05:24.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:24.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:24.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:24.527 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:24.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 8.2951ms +2024-05-24 19:05:34.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:34.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:34.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:34.875 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:34.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 8.1007ms +2024-05-24 19:05:36.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:05:36.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:36.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:36.588 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:36.590 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 400 null application/json 3.6971ms +2024-05-24 19:05:36.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:36.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:36.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:36.829 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:36.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 3.5928ms +2024-05-24 19:05:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:38.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:38.321 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:38.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.5269ms +2024-05-24 19:05:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:38.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:38.585 +02:00 [ERR] Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). +System.ArgumentException: Unsupported filter: {document}{status}.Equals("Unread", OrdinalIgnoreCase). + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate(Expression node, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.Translators.PredicateTranslator.Translate[TDocument](Expression`1 predicate, IBsonSerializer`1 parameterSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.Linq.Linq2Implementation.LinqProviderAdapterV2.TranslateExpressionToFilter[TDocument](Expression`1 expression, IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry) + at MongoDB.Driver.ExpressionFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.ElementMatchFilterDefinition`2.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.AndFilterDefinition`1.Render(IBsonSerializer`1 documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider) + at MongoDB.Driver.MongoCollectionImpl`1.CreateFindOperation[TProjection](FilterDefinition`1 filter, FindOptions`2 options) + at MongoDB.Driver.MongoCollectionImpl`1.FindAsync[TProjection](IClientSessionHandle session, FilterDefinition`1 filter, FindOptions`2 options, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.<>c__DisplayClass48_0`1.b__0(IClientSessionHandle session) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:05:38.588 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 4.8782ms +2024-05-24 19:05:39.098 +02:00 [INF] Deregistering a service [id: notifications-service:dc1fe938ba7549558953e939c4f41ad7] from Consul... +2024-05-24 19:05:39.101 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:dc1fe938ba7549558953e939c4f41ad7" +2024-05-24 19:05:39.102 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:dc1fe938ba7549558953e939c4f41ad7 +2024-05-24 19:05:39.102 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:dc1fe938ba7549558953e939c4f41ad7 +2024-05-24 19:05:39.109 +02:00 [INF] Received HTTP response headers after 6.5409ms - 200 +2024-05-24 19:05:39.110 +02:00 [INF] End processing HTTP request after 8.2039ms - 200 +2024-05-24 19:05:39.111 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:05:39.113 +02:00 [INF] Deregistered a service [id: notifications-service:dc1fe938ba7549558953e939c4f41ad7] from Consul. +2024-05-24 19:05:44.909 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:05:44.959 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:05:45.013 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:05:45.079 +02:00 [INF] Registering a service [id: notifications-service:c022b8f187f04fe4b94417d42854d3b7] in Consul... +2024-05-24 19:05:45.102 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:05:45.105 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:05:45.106 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:05:45.113 +02:00 [INF] Received HTTP response headers after 4.2139ms - 200 +2024-05-24 19:05:45.115 +02:00 [INF] End processing HTTP request after 9.7713ms - 200 +2024-05-24 19:05:45.118 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:05:45.119 +02:00 [INF] Registered a service [id: notifications-service:c022b8f187f04fe4b94417d42854d3b7] in Consul. +2024-05-24 19:05:45.127 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:05:45.127 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:05:45.129 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:05:45.138 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:05:45.142 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:05:45.144 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:05:45.149 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:05:45.151 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:05:45.155 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:05:45.158 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:05:45.554 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:45.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:45.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:45.719 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 166.2662ms +2024-05-24 19:05:49.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:49.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:49.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:49.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3339ms +2024-05-24 19:05:51.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:51.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:51.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0647ms +2024-05-24 19:05:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:53.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:53.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:53.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.78ms +2024-05-24 19:05:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:53.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:53.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2499ms +2024-05-24 19:05:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:05:54.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:54.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:05:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.877ms +2024-05-24 19:06:04.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:04.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:04.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:04.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3062ms +2024-05-24 19:06:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:06.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:06.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:06.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9585ms +2024-05-24 19:06:08.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:08.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:08.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:08.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4273ms +2024-05-24 19:06:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:08.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:08.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3854ms +2024-05-24 19:06:09.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:09.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:09.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:09.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.0682ms +2024-05-24 19:06:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:19.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3615ms +2024-05-24 19:06:21.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:21.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:21.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5359ms +2024-05-24 19:06:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:23.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5358ms +2024-05-24 19:06:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:23.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:23.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:23.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.9274ms +2024-05-24 19:06:24.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:24.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:24.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0011ms +2024-05-24 19:06:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:34.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:34.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:34.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2935ms +2024-05-24 19:06:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:36.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3754ms +2024-05-24 19:06:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:38.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2531ms +2024-05-24 19:06:38.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:38.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:38.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:38.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.839ms +2024-05-24 19:06:39.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:39.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:39.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:39.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3452ms +2024-05-24 19:06:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:49.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:49.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:49.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1657ms +2024-05-24 19:06:51.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:51.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:51.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:51.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.595ms +2024-05-24 19:06:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:53.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:53.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7691ms +2024-05-24 19:06:53.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:53.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:53.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:53.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4609ms +2024-05-24 19:06:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:06:54.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:54.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:06:54.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6041ms +2024-05-24 19:07:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:04.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:04.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9866ms +2024-05-24 19:07:06.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:06.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:06.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0198ms +2024-05-24 19:07:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:08.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:08.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7177ms +2024-05-24 19:07:08.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:08.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:08.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.593ms +2024-05-24 19:07:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:09.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:09.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.4448ms +2024-05-24 19:07:19.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:19.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:19.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:19.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0173ms +2024-05-24 19:07:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:21.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:21.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:21.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4962ms +2024-05-24 19:07:23.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:23.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:23.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:23.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0023ms +2024-05-24 19:07:23.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:23.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:23.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:23.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5257ms +2024-05-24 19:07:24.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:24.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:24.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.814ms +2024-05-24 19:07:34.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:34.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:34.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:34.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7307ms +2024-05-24 19:07:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:36.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:36.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6254ms +2024-05-24 19:07:38.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:38.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:38.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:38.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2022ms +2024-05-24 19:07:38.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:38.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:38.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:38.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.6561ms +2024-05-24 19:07:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:39.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6411ms +2024-05-24 19:07:49.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:49.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:49.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:49.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4248ms +2024-05-24 19:07:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:51.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:51.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:51.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2407ms +2024-05-24 19:07:53.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:53.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:53.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4145ms +2024-05-24 19:07:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:53.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:53.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:53.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9572ms +2024-05-24 19:07:54.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:07:54.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:54.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:07:54.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9162ms +2024-05-24 19:08:04.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:04.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:04.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:04.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9824ms +2024-05-24 19:08:06.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:06.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:06.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:06.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4259ms +2024-05-24 19:08:08.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:08.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:08.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:08.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0874ms +2024-05-24 19:08:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:08.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:08.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3661ms +2024-05-24 19:08:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:09.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4574ms +2024-05-24 19:08:19.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:19.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:19.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:19.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4853ms +2024-05-24 19:08:21.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:21.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:21.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:21.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6297ms +2024-05-24 19:08:23.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:23.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:23.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0967ms +2024-05-24 19:08:23.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:23.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:23.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:23.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5883ms +2024-05-24 19:08:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:24.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7996ms +2024-05-24 19:08:34.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:34.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:34.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:34.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9529ms +2024-05-24 19:08:36.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:36.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:36.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:36.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.518ms +2024-05-24 19:08:38.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:38.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:38.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:38.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7304ms +2024-05-24 19:08:38.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:38.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:38.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7613ms +2024-05-24 19:08:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:39.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:39.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8611ms +2024-05-24 19:08:49.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:49.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:49.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:49.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8569ms +2024-05-24 19:08:51.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:51.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:51.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:51.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.03ms +2024-05-24 19:08:53.323 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:53.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:53.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:53.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6689ms +2024-05-24 19:08:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:53.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:53.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0186ms +2024-05-24 19:08:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:08:54.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:08:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7802ms +2024-05-24 19:09:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:04.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9751ms +2024-05-24 19:09:06.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:06.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:06.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:06.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0452ms +2024-05-24 19:09:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:08.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:08.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.58ms +2024-05-24 19:09:08.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:08.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:08.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:08.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.167ms +2024-05-24 19:09:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:09.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:09.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:09.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7045ms +2024-05-24 19:09:19.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:19.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:19.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:19.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.01ms +2024-05-24 19:09:21.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:21.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:21.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:21.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8075ms +2024-05-24 19:09:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:23.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:23.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2646ms +2024-05-24 19:09:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:23.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:23.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5965ms +2024-05-24 19:09:24.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:24.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7428ms +2024-05-24 19:09:34.183 +02:00 [INF] Deregistering a service [id: notifications-service:c022b8f187f04fe4b94417d42854d3b7] from Consul... +2024-05-24 19:09:34.184 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:c022b8f187f04fe4b94417d42854d3b7" +2024-05-24 19:09:34.184 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c022b8f187f04fe4b94417d42854d3b7 +2024-05-24 19:09:34.184 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c022b8f187f04fe4b94417d42854d3b7 +2024-05-24 19:09:34.187 +02:00 [INF] Received HTTP response headers after 2.1362ms - 200 +2024-05-24 19:09:34.187 +02:00 [INF] End processing HTTP request after 2.5985ms - 200 +2024-05-24 19:09:34.187 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:09:34.187 +02:00 [INF] Deregistered a service [id: notifications-service:c022b8f187f04fe4b94417d42854d3b7] from Consul. +2024-05-24 19:09:40.012 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:09:40.066 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:09:40.103 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:09:40.163 +02:00 [INF] Registering a service [id: notifications-service:20e73dc8bede41928ee16c4a87c6285e] in Consul... +2024-05-24 19:09:40.182 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:09:40.185 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:09:40.186 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:09:40.195 +02:00 [INF] Received HTTP response headers after 6.9572ms - 200 +2024-05-24 19:09:40.196 +02:00 [INF] End processing HTTP request after 11.3626ms - 200 +2024-05-24 19:09:40.199 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:09:40.200 +02:00 [INF] Registered a service [id: notifications-service:20e73dc8bede41928ee16c4a87c6285e] in Consul. +2024-05-24 19:09:40.206 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:09:40.217 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:09:40.220 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:09:40.221 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:09:40.221 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:09:40.223 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:09:40.233 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:09:40.235 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:09:40.238 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:09:40.240 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:09:40.355 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:40.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.518 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:40.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 183.3647ms +2024-05-24 19:09:40.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:40.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.615 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:40.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 35.3758ms +2024-05-24 19:09:40.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:40.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:40.903 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:40.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 35.8824ms +2024-05-24 19:09:41.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:41.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:41.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:41.551 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:41.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 35.783ms +2024-05-24 19:09:42.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:42.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:42.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:42.877 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:42.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 48.1586ms +2024-05-24 19:09:49.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:49.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:49.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:49.894 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:49.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 33.5707ms +2024-05-24 19:09:51.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:51.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:51.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:51.865 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:51.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 38.1247ms +2024-05-24 19:09:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:53.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:53.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:53.352 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:53.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 34.5964ms +2024-05-24 19:09:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:53.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:53.608 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:53.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.5084ms +2024-05-24 19:09:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:09:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:54.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:09:54.549 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:09:54.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.2682ms +2024-05-24 19:10:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:04.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:04.893 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:04.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.9636ms +2024-05-24 19:10:06.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:06.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:06.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:06.857 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:06.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.6288ms +2024-05-24 19:10:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:08.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:08.353 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:08.356 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 37.4917ms +2024-05-24 19:10:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:08.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:08.612 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:08.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 40.1715ms +2024-05-24 19:10:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:09.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:09.545 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 33.1817ms +2024-05-24 19:10:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:19.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:19.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:19.893 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:19.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.9267ms +2024-05-24 19:10:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:21.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:21.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:21.858 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:21.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.9695ms +2024-05-24 19:10:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:23.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:23.350 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:23.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.4826ms +2024-05-24 19:10:23.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:23.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:23.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:23.608 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:23.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.1003ms +2024-05-24 19:10:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:24.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:24.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:24.551 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:24.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 34.2763ms +2024-05-24 19:10:34.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:34.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:34.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:34.893 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:34.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.9175ms +2024-05-24 19:10:36.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:36.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:36.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:36.903 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:36.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 36.4833ms +2024-05-24 19:10:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:38.349 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:38.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.1741ms +2024-05-24 19:10:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:38.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:38.608 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:38.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.5272ms +2024-05-24 19:10:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:39.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:39.557 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:39.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 45.091ms +2024-05-24 19:10:49.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:49.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:49.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:49.894 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:49.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.5328ms +2024-05-24 19:10:51.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:51.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:51.856 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:51.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 29.9205ms +2024-05-24 19:10:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:53.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:53.346 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:53.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 29.4156ms +2024-05-24 19:10:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:53.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:53.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:53.608 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:53.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 28.9655ms +2024-05-24 19:10:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:10:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:54.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:10:54.543 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:10:54.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.0541ms +2024-05-24 19:11:04.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:04.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:04.893 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:04.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 31.3085ms +2024-05-24 19:11:06.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:06.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:06.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:06.857 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:06.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.7758ms +2024-05-24 19:11:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:08.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:08.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:08.358 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:08.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 40.3968ms +2024-05-24 19:11:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:08.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:08.607 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:08.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.1832ms +2024-05-24 19:11:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:09.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:09.542 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:09.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.0909ms +2024-05-24 19:11:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:19.896 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:19.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 40.4793ms +2024-05-24 19:11:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:21.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:21.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:21.856 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:21.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 29.7269ms +2024-05-24 19:11:23.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:23.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:23.354 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:23.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 35.6149ms +2024-05-24 19:11:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:23.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:23.611 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:23.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 33.986ms +2024-05-24 19:11:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:24.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:24.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:24.549 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:24.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 38.2749ms +2024-05-24 19:11:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:34.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:34.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:34.891 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:34.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.4526ms +2024-05-24 19:11:36.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:36.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:36.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:36.858 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:36.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 30.3681ms +2024-05-24 19:11:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:38.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:38.346 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:38.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 28.9145ms +2024-05-24 19:11:38.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:38.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:38.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:38.617 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:38.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 39.403ms +2024-05-24 19:11:39.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:39.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:39.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:39.547 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:39.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 29.9492ms +2024-05-24 19:11:49.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:49.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:49.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:49.909 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:49.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 43.3462ms +2024-05-24 19:11:51.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:51.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:51.856 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 59 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:11:51.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 400 null application/json 32.4306ms +2024-05-24 19:11:52.262 +02:00 [INF] Deregistering a service [id: notifications-service:20e73dc8bede41928ee16c4a87c6285e] from Consul... +2024-05-24 19:11:52.264 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:20e73dc8bede41928ee16c4a87c6285e" +2024-05-24 19:11:52.264 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:20e73dc8bede41928ee16c4a87c6285e +2024-05-24 19:11:52.264 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:20e73dc8bede41928ee16c4a87c6285e +2024-05-24 19:11:52.266 +02:00 [INF] Received HTTP response headers after 2.2242ms - 200 +2024-05-24 19:11:52.266 +02:00 [INF] End processing HTTP request after 2.6152ms - 200 +2024-05-24 19:11:52.267 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:11:52.267 +02:00 [INF] Deregistered a service [id: notifications-service:20e73dc8bede41928ee16c4a87c6285e] from Consul. +2024-05-24 19:11:57.827 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:11:57.879 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:11:57.926 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:11:57.985 +02:00 [INF] Registering a service [id: notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93] in Consul... +2024-05-24 19:11:58.003 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:11:58.007 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:11:58.007 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:11:58.015 +02:00 [INF] Received HTTP response headers after 5.019ms - 200 +2024-05-24 19:11:58.016 +02:00 [INF] End processing HTTP request after 10.0195ms - 200 +2024-05-24 19:11:58.018 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:11:58.019 +02:00 [INF] Registered a service [id: notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93] in Consul. +2024-05-24 19:11:58.025 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:11:58.034 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:11:58.034 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:11:58.035 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:11:58.037 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:11:58.040 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:11:58.042 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:11:58.045 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:11:58.047 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:11:58.049 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:11:59.362 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:59.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:59.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:59.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 139.601ms +2024-05-24 19:11:59.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:11:59.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:59.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:11:59.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.4708ms +2024-05-24 19:12:00.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:00.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:00.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:00.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5532ms +2024-05-24 19:12:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:04.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:04.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.288ms +2024-05-24 19:12:06.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:06.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:06.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:06.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.7221ms +2024-05-24 19:12:08.267 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:12:08.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 48.7827ms +2024-05-24 19:12:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0378ms +2024-05-24 19:12:08.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:08.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8019ms +2024-05-24 19:12:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:09.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:09.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:09.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7154ms +2024-05-24 19:12:19.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:19.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:19.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:19.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8866ms +2024-05-24 19:12:21.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:21.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:21.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:21.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5179ms +2024-05-24 19:12:23.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:23.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:23.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1689ms +2024-05-24 19:12:23.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:23.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:23.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:23.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9811ms +2024-05-24 19:12:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:24.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1891ms +2024-05-24 19:12:30.633 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:12:30.634 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:30.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:30.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 35.1199ms +2024-05-24 19:12:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:34.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:34.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:34.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8056ms +2024-05-24 19:12:36.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:36.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:36.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:36.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4157ms +2024-05-24 19:12:38.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:38.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:38.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:38.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5203ms +2024-05-24 19:12:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:38.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:38.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:38.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8116ms +2024-05-24 19:12:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:39.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:39.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2212ms +2024-05-24 19:12:49.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:49.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:49.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:49.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9114ms +2024-05-24 19:12:51.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:51.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:51.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2294ms +2024-05-24 19:12:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:53.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:53.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:53.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1869ms +2024-05-24 19:12:53.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:53.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:53.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:53.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7423ms +2024-05-24 19:12:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:12:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:12:54.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3443ms +2024-05-24 19:12:55.306 +02:00 [INF] Deregistering a service [id: notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93] from Consul... +2024-05-24 19:12:55.307 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93" +2024-05-24 19:12:55.307 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93 +2024-05-24 19:12:55.307 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93 +2024-05-24 19:12:55.308 +02:00 [INF] Received HTTP response headers after 1.4565ms - 200 +2024-05-24 19:12:55.309 +02:00 [INF] End processing HTTP request after 1.848ms - 200 +2024-05-24 19:12:55.309 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:12:55.309 +02:00 [INF] Deregistered a service [id: notifications-service:d9457a0a3ce64e67b85ec2d1183f5e93] from Consul. +2024-05-24 19:13:00.924 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:13:00.978 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:13:01.041 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:13:01.105 +02:00 [INF] Registering a service [id: notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f] in Consul... +2024-05-24 19:13:01.127 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:13:01.131 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:13:01.132 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:13:01.144 +02:00 [INF] Received HTTP response headers after 8.3288ms - 200 +2024-05-24 19:13:01.146 +02:00 [INF] End processing HTTP request after 15.0277ms - 200 +2024-05-24 19:13:01.150 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:13:01.151 +02:00 [INF] Registered a service [id: notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f] in Consul. +2024-05-24 19:13:01.160 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:13:01.160 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:13:01.162 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:13:01.173 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:13:01.176 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:13:01.179 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:13:01.184 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:13:01.187 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:13:01.190 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:13:01.192 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:13:04.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:04.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:05.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:05.056 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 160.9854ms +2024-05-24 19:13:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:06.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:06.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:06.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4978ms +2024-05-24 19:13:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:08.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:08.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:08.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2181ms +2024-05-24 19:13:08.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:08.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:08.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:08.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2312ms +2024-05-24 19:13:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:09.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:09.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:09.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 47.1616ms +2024-05-24 19:13:19.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:19.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:19.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:19.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.5869ms +2024-05-24 19:13:21.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:21.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:21.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:21.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9271ms +2024-05-24 19:13:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:23.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:23.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1497ms +2024-05-24 19:13:23.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:23.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:23.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:23.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8197ms +2024-05-24 19:13:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:24.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:24.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:24.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3233ms +2024-05-24 19:13:34.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:34.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:34.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:34.901 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3806ms +2024-05-24 19:13:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1056ms +2024-05-24 19:13:38.325 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:38.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:38.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:38.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1015ms +2024-05-24 19:13:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:38.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:38.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:38.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1434ms +2024-05-24 19:13:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:39.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:39.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2213ms +2024-05-24 19:13:49.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:49.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:49.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:49.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3804ms +2024-05-24 19:13:51.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:51.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:51.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:51.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0792ms +2024-05-24 19:13:53.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:53.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:53.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6999ms +2024-05-24 19:13:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:53.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:53.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:53.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7979ms +2024-05-24 19:13:54.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:13:54.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:13:54.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4862ms +2024-05-24 19:14:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:04.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:04.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.6817ms +2024-05-24 19:14:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:06.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:06.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9093ms +2024-05-24 19:14:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:08.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:08.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3327ms +2024-05-24 19:14:08.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:08.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:08.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:08.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.282ms +2024-05-24 19:14:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:09.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:09.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2036ms +2024-05-24 19:14:19.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:19.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:19.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:19.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4514ms +2024-05-24 19:14:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:21.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:21.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:21.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2808ms +2024-05-24 19:14:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:23.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:23.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8382ms +2024-05-24 19:14:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:23.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:23.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:23.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7206ms +2024-05-24 19:14:24.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:24.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:24.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0845ms +2024-05-24 19:14:30.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:14:30.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:30.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:30.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.1575ms +2024-05-24 19:14:31.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:31.403 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:31.431 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:31.432 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5111ms +2024-05-24 19:14:31.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:31.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:31.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:31.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8383ms +2024-05-24 19:14:33.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:14:33.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 27.3479ms +2024-05-24 19:14:33.501 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:33.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2189ms +2024-05-24 19:14:33.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:33.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:33.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9965ms +2024-05-24 19:14:34.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:34.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:34.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:34.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0638ms +2024-05-24 19:14:36.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:36.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:36.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:36.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2318ms +2024-05-24 19:14:38.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:38.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:38.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:38.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7628ms +2024-05-24 19:14:38.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:38.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:38.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:38.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4132ms +2024-05-24 19:14:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:39.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:39.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:39.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0047ms +2024-05-24 19:14:46.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:46.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:46.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:46.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8347ms +2024-05-24 19:14:48.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:48.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:48.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:48.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4506ms +2024-05-24 19:14:49.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:49.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:49.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:49.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9698ms +2024-05-24 19:14:51.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:51.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:51.886 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:51.887 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.5122ms +2024-05-24 19:14:53.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:53.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:53.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:53.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.9561ms +2024-05-24 19:14:53.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:53.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:53.630 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:53.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.0395ms +2024-05-24 19:14:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:14:54.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:54.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:14:54.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.7119ms +2024-05-24 19:15:01.458 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:01.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:01.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:01.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6827ms +2024-05-24 19:15:03.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:03.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:03.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:03.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4512ms +2024-05-24 19:15:04.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:04.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:04.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:04.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.6117ms +2024-05-24 19:15:06.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:06.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:06.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4722ms +2024-05-24 19:15:08.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:08.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:08.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:08.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9607ms +2024-05-24 19:15:08.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:08.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:08.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:08.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7821ms +2024-05-24 19:15:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:09.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:09.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:09.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9292ms +2024-05-24 19:15:16.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:16.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:16.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:16.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0843ms +2024-05-24 19:15:18.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:18.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:18.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:18.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2429ms +2024-05-24 19:15:19.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:19.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:19.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:19.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2817ms +2024-05-24 19:15:21.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:21.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:21.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9798ms +2024-05-24 19:15:23.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:23.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:23.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9674ms +2024-05-24 19:15:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:23.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:23.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:23.619 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5387ms +2024-05-24 19:15:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:24.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:24.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:24.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7378ms +2024-05-24 19:15:31.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:31.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:31.475 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:31.475 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.5261ms +2024-05-24 19:15:33.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:33.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:33.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:33.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9584ms +2024-05-24 19:15:34.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:34.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:34.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:34.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2394ms +2024-05-24 19:15:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:36.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:36.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7786ms +2024-05-24 19:15:38.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:38.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:38.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:38.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.3199ms +2024-05-24 19:15:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:38.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:38.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:38.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6215ms +2024-05-24 19:15:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:39.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:39.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4756ms +2024-05-24 19:15:41.506 +02:00 [INF] Deregistering a service [id: notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f] from Consul... +2024-05-24 19:15:41.507 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f" +2024-05-24 19:15:41.508 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f +2024-05-24 19:15:41.508 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f +2024-05-24 19:15:41.511 +02:00 [INF] Received HTTP response headers after 3.2752ms - 200 +2024-05-24 19:15:41.512 +02:00 [INF] End processing HTTP request after 3.8423ms - 200 +2024-05-24 19:15:41.512 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:15:41.513 +02:00 [INF] Deregistered a service [id: notifications-service:d08a1e1bf3e14ca3a4bfe09653d1d30f] from Consul. +2024-05-24 19:15:56.585 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:15:56.644 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:15:56.688 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:15:56.750 +02:00 [INF] Registering a service [id: notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57] in Consul... +2024-05-24 19:15:56.767 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:15:56.770 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:15:56.771 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:15:56.781 +02:00 [INF] Received HTTP response headers after 7.4004ms - 200 +2024-05-24 19:15:56.782 +02:00 [INF] End processing HTTP request after 11.8269ms - 200 +2024-05-24 19:15:56.785 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:15:56.786 +02:00 [INF] Registered a service [id: notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57] in Consul. +2024-05-24 19:15:56.792 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:15:56.794 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:15:56.795 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:15:56.804 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:15:56.806 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:15:56.808 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:15:56.811 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:15:56.816 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:15:56.819 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:15:56.821 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:15:57.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:57.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:58.018 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:58.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 153.9099ms +2024-05-24 19:15:59.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:59.326 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:59.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:59.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.8062ms +2024-05-24 19:15:59.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:15:59.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:59.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:15:59.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0868ms +2024-05-24 19:16:00.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:00.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:00.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:00.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.5717ms +2024-05-24 19:16:01.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:01.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:01.471 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6035ms +2024-05-24 19:16:03.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:03.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:03.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:03.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.75ms +2024-05-24 19:16:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:04.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:04.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2922ms +2024-05-24 19:16:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:06.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:07.124 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:07.125 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 294.1562ms +2024-05-24 19:16:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:08.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:08.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:08.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1711ms +2024-05-24 19:16:08.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:08.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:08.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:08.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3596ms +2024-05-24 19:16:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:09.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1419ms +2024-05-24 19:16:16.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:16.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:16.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:16.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4104ms +2024-05-24 19:16:18.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:18.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:18.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:18.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4463ms +2024-05-24 19:16:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:19.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:19.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5988ms +2024-05-24 19:16:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:21.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:21.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:21.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9129ms +2024-05-24 19:16:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:23.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:23.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7065ms +2024-05-24 19:16:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:23.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:23.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:23.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0438ms +2024-05-24 19:16:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:24.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:24.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.7428ms +2024-05-24 19:16:31.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:31.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:31.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:31.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3929ms +2024-05-24 19:16:33.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:33.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:33.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:33.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7831ms +2024-05-24 19:16:34.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:34.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:34.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:34.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9198ms +2024-05-24 19:16:36.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:36.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:36.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:36.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4514ms +2024-05-24 19:16:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:38.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:38.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5712ms +2024-05-24 19:16:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:38.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:38.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.7373ms +2024-05-24 19:16:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:39.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:39.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6924ms +2024-05-24 19:16:46.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:46.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:46.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:46.469 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.458ms +2024-05-24 19:16:48.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:48.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:48.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:48.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0225ms +2024-05-24 19:16:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:49.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:49.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:49.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8547ms +2024-05-24 19:16:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:51.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:51.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:51.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9156ms +2024-05-24 19:16:53.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:53.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:53.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:53.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2463ms +2024-05-24 19:16:53.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:53.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:53.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:53.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1035ms +2024-05-24 19:16:54.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:16:54.523 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:54.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:16:54.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9628ms +2024-05-24 19:17:01.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:01.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:01.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5146ms +2024-05-24 19:17:03.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:03.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:03.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:03.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2226ms +2024-05-24 19:17:04.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:04.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:04.896 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:04.897 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7385ms +2024-05-24 19:17:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:06.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4834ms +2024-05-24 19:17:08.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:08.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:08.351 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:08.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0733ms +2024-05-24 19:17:08.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:08.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:08.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:08.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5448ms +2024-05-24 19:17:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:09.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.063ms +2024-05-24 19:17:16.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:16.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:16.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:16.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.524ms +2024-05-24 19:17:18.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:18.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:18.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:18.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.235ms +2024-05-24 19:17:19.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:19.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:19.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0722ms +2024-05-24 19:17:21.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:21.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:21.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4689ms +2024-05-24 19:17:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:23.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:23.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.543ms +2024-05-24 19:17:23.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:23.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:23.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:23.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8166ms +2024-05-24 19:17:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:24.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7057ms +2024-05-24 19:17:31.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:31.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:31.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:31.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5504ms +2024-05-24 19:17:33.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:33.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:33.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:33.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3045ms +2024-05-24 19:17:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:34.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:34.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:34.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9457ms +2024-05-24 19:17:36.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:36.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:36.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2423ms +2024-05-24 19:17:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:38.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:38.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2487ms +2024-05-24 19:17:38.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:38.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:38.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:38.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5541ms +2024-05-24 19:17:39.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:39.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:39.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:39.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2464ms +2024-05-24 19:17:46.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:46.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:46.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:46.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2465ms +2024-05-24 19:17:48.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:48.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:48.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:48.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3078ms +2024-05-24 19:17:49.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:49.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:49.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:49.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.6136ms +2024-05-24 19:17:51.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:51.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:51.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:51.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0975ms +2024-05-24 19:17:53.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:53.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:53.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:53.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3256ms +2024-05-24 19:17:53.586 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:53.588 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:53.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:53.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9739ms +2024-05-24 19:17:54.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:17:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:54.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:17:54.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.8466ms +2024-05-24 19:18:01.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:01.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:01.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:01.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0462ms +2024-05-24 19:18:03.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:03.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:03.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:03.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9031ms +2024-05-24 19:18:04.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:04.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:04.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1424ms +2024-05-24 19:18:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:06.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:06.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:06.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7961ms +2024-05-24 19:18:08.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:08.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:08.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:08.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2161ms +2024-05-24 19:18:08.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:08.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:08.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:08.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7205ms +2024-05-24 19:18:09.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:09.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:09.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:09.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3982ms +2024-05-24 19:18:16.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:16.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:16.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:16.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3826ms +2024-05-24 19:18:18.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:18.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:18.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:18.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0657ms +2024-05-24 19:18:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:19.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:19.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:19.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6202ms +2024-05-24 19:18:21.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:21.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:21.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:21.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2276ms +2024-05-24 19:18:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:23.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:23.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:23.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.828ms +2024-05-24 19:18:23.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:23.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:23.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.517ms +2024-05-24 19:18:24.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:24.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:24.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8072ms +2024-05-24 19:18:31.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:31.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:31.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:31.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3381ms +2024-05-24 19:18:33.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:33.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:33.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:33.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2742ms +2024-05-24 19:18:34.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:34.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:34.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:34.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8865ms +2024-05-24 19:18:36.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:36.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:36.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5212ms +2024-05-24 19:18:38.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:38.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:38.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2007ms +2024-05-24 19:18:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:38.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:38.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7478ms +2024-05-24 19:18:39.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:39.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:39.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:39.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7483ms +2024-05-24 19:18:46.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:46.446 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:46.477 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:46.477 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6571ms +2024-05-24 19:18:48.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:48.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:48.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:48.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7612ms +2024-05-24 19:18:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:49.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:49.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:49.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0096ms +2024-05-24 19:18:51.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:51.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:51.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:51.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7532ms +2024-05-24 19:18:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:53.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:53.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:53.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6298ms +2024-05-24 19:18:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:53.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:53.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:53.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5533ms +2024-05-24 19:18:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:18:54.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:54.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:18:54.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.224ms +2024-05-24 19:19:01.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:01.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:01.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:01.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8547ms +2024-05-24 19:19:03.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:03.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:03.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:03.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6893ms +2024-05-24 19:19:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:04.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:04.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:04.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0809ms +2024-05-24 19:19:06.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:06.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:06.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:06.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9738ms +2024-05-24 19:19:08.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:08.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:08.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:08.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1033ms +2024-05-24 19:19:08.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:08.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:08.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:08.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9357ms +2024-05-24 19:19:09.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:09.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:09.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9332ms +2024-05-24 19:19:16.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:16.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:16.467 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:16.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2811ms +2024-05-24 19:19:18.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:18.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:18.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:18.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4234ms +2024-05-24 19:19:19.866 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:19.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:19.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:19.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7501ms +2024-05-24 19:19:21.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:21.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:21.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:21.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3854ms +2024-05-24 19:19:23.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:23.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:23.356 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:23.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7608ms +2024-05-24 19:19:23.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:23.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:23.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:23.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2061ms +2024-05-24 19:19:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:24.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:24.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:24.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0225ms +2024-05-24 19:19:31.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:31.441 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:31.470 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:31.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1061ms +2024-05-24 19:19:33.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:33.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:33.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:33.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.113ms +2024-05-24 19:19:34.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:34.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:34.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:34.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3631ms +2024-05-24 19:19:36.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:36.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:36.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:36.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4346ms +2024-05-24 19:19:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:38.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:38.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:38.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6432ms +2024-05-24 19:19:38.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:38.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:38.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:38.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8637ms +2024-05-24 19:19:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:39.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:39.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9058ms +2024-05-24 19:19:46.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:46.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:46.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:46.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9051ms +2024-05-24 19:19:48.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:48.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:48.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:48.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4349ms +2024-05-24 19:19:49.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:49.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:49.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:49.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7304ms +2024-05-24 19:19:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:51.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:51.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.087ms +2024-05-24 19:19:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:19:53.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:53.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:19:53.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.1692ms +2024-05-24 19:19:53.501 +02:00 [INF] Deregistering a service [id: notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57] from Consul... +2024-05-24 19:19:53.504 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57" +2024-05-24 19:19:53.505 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57 +2024-05-24 19:19:53.505 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57 +2024-05-24 19:19:53.515 +02:00 [INF] Received HTTP response headers after 9.4768ms - 200 +2024-05-24 19:19:53.516 +02:00 [INF] End processing HTTP request after 11.0106ms - 200 +2024-05-24 19:19:53.516 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:19:53.518 +02:00 [INF] Deregistered a service [id: notifications-service:ed6d3fe1083a4e5f80f56cea4dd4ce57] from Consul. +2024-05-24 19:20:10.213 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:20:10.272 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:20:10.337 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:20:10.417 +02:00 [INF] Registering a service [id: notifications-service:f340dd5b404b4e2f94e671780489f10f] in Consul... +2024-05-24 19:20:10.441 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:20:10.447 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:20:10.449 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:20:10.460 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:20:10.460 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:20:10.462 +02:00 [INF] Received HTTP response headers after 10.3337ms - 200 +2024-05-24 19:20:10.464 +02:00 [INF] End processing HTTP request after 17.9665ms - 200 +2024-05-24 19:20:10.468 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:20:10.469 +02:00 [INF] Registered a service [id: notifications-service:f340dd5b404b4e2f94e671780489f10f] in Consul. +2024-05-24 19:20:10.477 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:20:10.490 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:20:10.492 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:20:10.494 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:20:10.499 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:20:10.502 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:20:10.506 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:20:10.508 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:20:10.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:10.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:10.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:10.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 174.5613ms +2024-05-24 19:20:10.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:10.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:10.898 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:10.899 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7497ms +2024-05-24 19:20:11.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:11.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:11.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:11.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4584ms +2024-05-24 19:20:12.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:12.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:12.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:12.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.3123ms +2024-05-24 19:20:13.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:20:13.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:13.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:13.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 35.328ms +2024-05-24 19:20:14.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:14.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:14.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:14.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.8086ms +2024-05-24 19:20:16.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:16.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:16.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:16.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3629ms +2024-05-24 19:20:18.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:18.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:18.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:18.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 336.9807ms +2024-05-24 19:20:19.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:19.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:19.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3785ms +2024-05-24 19:20:21.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:21.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:21.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5214ms +2024-05-24 19:20:23.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:23.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:23.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:23.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3527ms +2024-05-24 19:20:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:23.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:23.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8767ms +2024-05-24 19:20:24.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:24.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:24.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:24.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8157ms +2024-05-24 19:20:31.439 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:31.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:31.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:31.479 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.7859ms +2024-05-24 19:20:33.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:33.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:33.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:33.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.958ms +2024-05-24 19:20:34.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:34.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:34.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:34.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7786ms +2024-05-24 19:20:36.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:36.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:36.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:36.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8853ms +2024-05-24 19:20:38.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:38.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:38.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2469ms +2024-05-24 19:20:38.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:38.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:38.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.509ms +2024-05-24 19:20:39.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:39.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:39.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8167ms +2024-05-24 19:20:46.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:46.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:46.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:46.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1125ms +2024-05-24 19:20:48.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:48.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:48.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:48.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4866ms +2024-05-24 19:20:49.867 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:49.869 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:49.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:49.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.9114ms +2024-05-24 19:20:51.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:51.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:51.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:51.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9651ms +2024-05-24 19:20:53.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:53.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:53.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:53.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8764ms +2024-05-24 19:20:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:53.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:53.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:53.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7557ms +2024-05-24 19:20:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:20:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:54.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:20:54.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9281ms +2024-05-24 19:21:01.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:01.466 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:01.467 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0772ms +2024-05-24 19:21:03.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:03.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:03.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:03.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7295ms +2024-05-24 19:21:04.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:04.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:04.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:04.893 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5558ms +2024-05-24 19:21:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:06.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:06.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4742ms +2024-05-24 19:21:08.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:08.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:08.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:08.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.107ms +2024-05-24 19:21:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:08.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:08.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1094ms +2024-05-24 19:21:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:09.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:09.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5156ms +2024-05-24 19:21:16.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:16.442 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:16.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:16.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0356ms +2024-05-24 19:21:18.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:18.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:18.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:18.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5175ms +2024-05-24 19:21:19.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:19.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:19.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:19.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4384ms +2024-05-24 19:21:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:21.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:21.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8039ms +2024-05-24 19:21:23.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:23.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:23.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:23.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6839ms +2024-05-24 19:21:23.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:23.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:23.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:23.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9308ms +2024-05-24 19:21:24.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:24.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:24.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:24.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7969ms +2024-05-24 19:21:31.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:31.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:31.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:31.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.6833ms +2024-05-24 19:21:33.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:33.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:33.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:33.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3613ms +2024-05-24 19:21:34.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:34.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:34.893 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:34.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2921ms +2024-05-24 19:21:36.857 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:36.859 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:36.897 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:36.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.4597ms +2024-05-24 19:21:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:38.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:38.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:38.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3139ms +2024-05-24 19:21:38.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:38.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:38.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:38.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.265ms +2024-05-24 19:21:39.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:39.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:39.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:39.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2476ms +2024-05-24 19:21:46.441 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:46.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:46.479 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:46.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.4593ms +2024-05-24 19:21:48.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:48.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:48.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:48.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5104ms +2024-05-24 19:21:49.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:49.862 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:49.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:49.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.4387ms +2024-05-24 19:21:51.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:51.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:51.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1289ms +2024-05-24 19:21:53.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:53.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:53.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:53.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1141ms +2024-05-24 19:21:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:53.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:53.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:53.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2356ms +2024-05-24 19:21:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:21:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:54.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:21:54.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3914ms +2024-05-24 19:22:01.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:01.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:01.463 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:01.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.479ms +2024-05-24 19:22:03.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:03.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:03.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:03.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0297ms +2024-05-24 19:22:04.869 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:04.870 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:04.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:04.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.3626ms +2024-05-24 19:22:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:06.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:06.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0151ms +2024-05-24 19:22:08.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:08.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:08.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:08.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3097ms +2024-05-24 19:22:08.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:08.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:08.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:08.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4507ms +2024-05-24 19:22:09.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:09.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:09.588 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:09.589 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.2184ms +2024-05-24 19:22:16.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:16.439 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:16.469 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:16.470 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9206ms +2024-05-24 19:22:18.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:18.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:18.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:18.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0564ms +2024-05-24 19:22:19.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:19.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:19.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:19.891 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.187ms +2024-05-24 19:22:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:21.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:21.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9584ms +2024-05-24 19:22:23.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:23.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:23.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:23.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.2055ms +2024-05-24 19:22:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:23.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:23.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4991ms +2024-05-24 19:22:24.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:24.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:24.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:24.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9056ms +2024-05-24 19:22:31.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:31.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:31.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:31.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2504ms +2024-05-24 19:22:33.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:33.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:33.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:33.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.1339ms +2024-05-24 19:22:34.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:34.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:34.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:34.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7285ms +2024-05-24 19:22:36.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:36.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:36.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:36.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0405ms +2024-05-24 19:22:38.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:38.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:38.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:38.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0299ms +2024-05-24 19:22:38.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:38.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:38.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.2747ms +2024-05-24 19:22:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:39.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:39.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:39.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.188ms +2024-05-24 19:22:46.434 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:46.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:46.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:46.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8129ms +2024-05-24 19:22:48.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:48.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:48.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:48.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 69.0441ms +2024-05-24 19:22:49.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:49.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:49.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:49.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4357ms +2024-05-24 19:22:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:51.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:51.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0812ms +2024-05-24 19:22:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:53.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:53.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3884ms +2024-05-24 19:22:53.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:53.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:53.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:53.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8965ms +2024-05-24 19:22:54.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:22:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:54.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:22:54.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1921ms +2024-05-24 19:23:01.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:01.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:01.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:01.463 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.056ms +2024-05-24 19:23:03.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:03.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:03.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:03.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4351ms +2024-05-24 19:23:04.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:04.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:04.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:04.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7403ms +2024-05-24 19:23:06.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:06.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8954ms +2024-05-24 19:23:08.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:08.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:08.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:08.350 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5966ms +2024-05-24 19:23:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:08.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:08.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4909ms +2024-05-24 19:23:09.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:09.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:09.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:09.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2047ms +2024-05-24 19:23:16.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:16.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:16.474 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:16.474 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.7656ms +2024-05-24 19:23:18.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:18.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:18.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:18.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.5703ms +2024-05-24 19:23:19.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:19.872 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:19.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:19.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.9772ms +2024-05-24 19:23:21.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:21.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9158ms +2024-05-24 19:23:23.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:23.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:23.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:23.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5948ms +2024-05-24 19:23:23.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:23.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:23.619 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:23.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1798ms +2024-05-24 19:23:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:24.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:24.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.257ms +2024-05-24 19:23:30.706 +02:00 [INF] Deregistering a service [id: notifications-service:f340dd5b404b4e2f94e671780489f10f] from Consul... +2024-05-24 19:23:30.713 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:f340dd5b404b4e2f94e671780489f10f" +2024-05-24 19:23:30.714 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f340dd5b404b4e2f94e671780489f10f +2024-05-24 19:23:30.714 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:f340dd5b404b4e2f94e671780489f10f +2024-05-24 19:23:30.728 +02:00 [INF] Received HTTP response headers after 13.8131ms - 200 +2024-05-24 19:23:30.729 +02:00 [INF] End processing HTTP request after 15.4627ms - 200 +2024-05-24 19:23:30.730 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:23:30.732 +02:00 [INF] Deregistered a service [id: notifications-service:f340dd5b404b4e2f94e671780489f10f] from Consul. +2024-05-24 19:23:36.567 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:23:36.638 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:23:36.695 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:23:36.760 +02:00 [INF] Registering a service [id: notifications-service:93e4aeb35e9a41819a08d5885f1ec12c] in Consul... +2024-05-24 19:23:36.780 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:23:36.785 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:23:36.786 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:23:36.795 +02:00 [INF] Received HTTP response headers after 6.8766ms - 200 +2024-05-24 19:23:36.796 +02:00 [INF] End processing HTTP request after 11.8403ms - 200 +2024-05-24 19:23:36.800 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:23:36.801 +02:00 [INF] Registered a service [id: notifications-service:93e4aeb35e9a41819a08d5885f1ec12c] in Consul. +2024-05-24 19:23:36.806 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:23:36.806 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:23:36.810 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:23:36.821 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:23:36.825 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:23:36.827 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:23:36.830 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:23:36.833 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:23:36.837 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:23:36.839 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:23:36.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:36.955 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:37.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:37.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 144.2362ms +2024-05-24 19:23:37.436 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:37.438 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:37.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:37.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.269ms +2024-05-24 19:23:38.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:38.324 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.354 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8243ms +2024-05-24 19:23:38.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:38.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8435ms +2024-05-24 19:23:38.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:38.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:38.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0271ms +2024-05-24 19:23:39.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:39.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:39.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:39.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:39.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:39.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3355ms +2024-05-24 19:23:39.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:39.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6753ms +2024-05-24 19:23:46.446 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:46.450 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:46.483 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:46.483 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.3385ms +2024-05-24 19:23:48.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:48.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:48.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:48.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1987ms +2024-05-24 19:23:49.864 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:49.865 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:49.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:49.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8142ms +2024-05-24 19:23:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:51.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:51.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:51.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.972ms +2024-05-24 19:23:53.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:53.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:53.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:53.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3266ms +2024-05-24 19:23:53.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:53.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:53.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5411ms +2024-05-24 19:23:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:23:54.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:54.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:23:54.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3771ms +2024-05-24 19:24:01.437 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:01.437 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:01.464 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:01.464 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0392ms +2024-05-24 19:24:03.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:03.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:03.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:03.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5873ms +2024-05-24 19:24:04.870 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:04.871 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:04.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:04.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1239ms +2024-05-24 19:24:06.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:06.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:06.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3986ms +2024-05-24 19:24:08.321 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:08.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:08.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:08.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.084ms +2024-05-24 19:24:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:08.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:08.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:08.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5405ms +2024-05-24 19:24:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:24:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:24:09.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0479ms +2024-05-24 19:24:55.485 +02:00 [INF] Deregistering a service [id: notifications-service:93e4aeb35e9a41819a08d5885f1ec12c] from Consul... +2024-05-24 19:24:55.486 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:93e4aeb35e9a41819a08d5885f1ec12c" +2024-05-24 19:24:55.487 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:93e4aeb35e9a41819a08d5885f1ec12c +2024-05-24 19:24:55.487 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:93e4aeb35e9a41819a08d5885f1ec12c +2024-05-24 19:24:55.489 +02:00 [INF] Received HTTP response headers after 2.2159ms - 200 +2024-05-24 19:24:55.489 +02:00 [INF] End processing HTTP request after 2.7015ms - 200 +2024-05-24 19:24:55.490 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:24:55.490 +02:00 [INF] Deregistered a service [id: notifications-service:93e4aeb35e9a41819a08d5885f1ec12c] from Consul. +2024-05-24 19:25:02.349 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:25:02.410 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:25:02.497 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:25:02.618 +02:00 [INF] Registering a service [id: notifications-service:5e8d7996e7d44b9aaba0315bb273f53e] in Consul... +2024-05-24 19:25:02.651 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:25:02.659 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:25:02.660 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:25:02.665 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:25:02.666 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:25:02.674 +02:00 [INF] Received HTTP response headers after 9.7244ms - 200 +2024-05-24 19:25:02.677 +02:00 [INF] End processing HTTP request after 21.4011ms - 200 +2024-05-24 19:25:02.682 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:25:02.682 +02:00 [INF] Registered a service [id: notifications-service:5e8d7996e7d44b9aaba0315bb273f53e] in Consul. +2024-05-24 19:25:02.689 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:25:02.704 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:25:02.706 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:25:02.708 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:25:02.711 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:25:02.714 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:25:02.717 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:25:02.720 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:25:17.545 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:25:17.632 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:25:17.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:25:17.777 +02:00 [ERR] Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. +MongoDB.Driver.MongoCommandException: Command find failed: FieldPath field names may not start with '$'. Consider using $getField or $setField.. + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ProcessResponse(ConnectionId connectionId, CommandMessage responseMessage) + at MongoDB.Driver.Core.WireProtocol.CommandUsingCommandMessageWireProtocol`1.ExecuteAsync(IConnection connection, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Servers.Server.ServerChannel.ExecuteProtocolAsync[TResult](IWireProtocol`1 protocol, ICoreSession session, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.RetryableReadOperationExecutor.ExecuteAsync[TResult](IRetryableReadOperation`1 operation, RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.ReadCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindCommandOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(RetryableReadContext context, CancellationToken cancellationToken) + at MongoDB.Driver.Core.Operations.FindOperation`1.ExecuteAsync(IReadBinding binding, CancellationToken cancellationToken) + at MongoDB.Driver.OperationExecutor.ExecuteReadOperationAsync[TResult](IReadBinding binding, IReadOperation`1 operation, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.ExecuteReadOperationAsync[TResult](IClientSessionHandle session, IReadOperation`1 operation, ReadPreference readPreference, CancellationToken cancellationToken) + at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken) + at MongoDB.Driver.IAsyncCursorSourceExtensions.ToListAsync[TDocument](IAsyncCursorSource`1 source, CancellationToken cancellationToken) + at MiniSpace.Services.Notifications.Infrastructure.Mongo.Queries.Handlers.GetNotificationsByUserHandler.HandleAsync(GetNotificationsByUser query, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/Mongo/Queries/Handlers/GetNotificationsByUserHandler.cs:line 45 + at Convey.CQRS.Queries.Dispatchers.QueryDispatcher.QueryAsync[TQuery,TResult](TQuery query, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.<>c__DisplayClass3_0`2.<b__0>d.MoveNext() +--- End of stack trace from previous location --- + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 19:25:17.822 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 400 null application/json 278.1717ms +2024-05-24 19:25:28.173 +02:00 [INF] Deregistering a service [id: notifications-service:5e8d7996e7d44b9aaba0315bb273f53e] from Consul... +2024-05-24 19:25:28.178 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:5e8d7996e7d44b9aaba0315bb273f53e" +2024-05-24 19:25:28.186 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5e8d7996e7d44b9aaba0315bb273f53e +2024-05-24 19:25:28.191 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:5e8d7996e7d44b9aaba0315bb273f53e +2024-05-24 19:25:28.207 +02:00 [INF] Received HTTP response headers after 12.7975ms - 200 +2024-05-24 19:25:28.212 +02:00 [INF] End processing HTTP request after 22.4125ms - 200 +2024-05-24 19:25:28.215 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:25:28.218 +02:00 [INF] Deregistered a service [id: notifications-service:5e8d7996e7d44b9aaba0315bb273f53e] from Consul. +2024-05-24 19:25:35.977 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:25:36.054 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:25:36.150 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:25:36.248 +02:00 [INF] Registering a service [id: notifications-service:d5291067e5254abfa5f74bd1dde9265b] in Consul... +2024-05-24 19:25:36.280 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:25:36.286 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:25:36.287 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:25:36.299 +02:00 [INF] Received HTTP response headers after 8.1528ms - 200 +2024-05-24 19:25:36.302 +02:00 [INF] End processing HTTP request after 16.8186ms - 200 +2024-05-24 19:25:36.303 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:25:36.303 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:25:36.307 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:25:36.308 +02:00 [INF] Registered a service [id: notifications-service:d5291067e5254abfa5f74bd1dde9265b] in Consul. +2024-05-24 19:25:36.322 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:25:36.340 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:25:36.343 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:25:36.347 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:25:36.353 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:25:36.355 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:25:36.358 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:25:36.365 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:26:27.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:27.136 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:27.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:27.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 203.0939ms +2024-05-24 19:26:27.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:27.273 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:27.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:27.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.633ms +2024-05-24 19:26:36.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:36.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:36.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:36.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0833ms +2024-05-24 19:26:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:38.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:38.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:38.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1382ms +2024-05-24 19:26:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:39.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:39.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:39.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0704ms +2024-05-24 19:26:42.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:42.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:42.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:42.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.5124ms +2024-05-24 19:26:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:51.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:51.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7667ms +2024-05-24 19:26:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:53.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:53.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:53.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9339ms +2024-05-24 19:26:54.522 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:54.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:54.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:54.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2223ms +2024-05-24 19:26:57.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:26:57.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:57.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:26:57.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7908ms +2024-05-24 19:27:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:06.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:06.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6094ms +2024-05-24 19:27:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:08.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:08.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:08.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7544ms +2024-05-24 19:27:09.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:09.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:09.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:09.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1575ms +2024-05-24 19:27:12.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:12.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:12.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:12.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0123ms +2024-05-24 19:27:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:21.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0276ms +2024-05-24 19:27:22.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:27:22.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:22.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:22.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 30.4398ms +2024-05-24 19:27:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:23.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:23.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1646ms +2024-05-24 19:27:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:24.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:24.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8982ms +2024-05-24 19:27:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:27.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:27.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9385ms +2024-05-24 19:27:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:36.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3489ms +2024-05-24 19:27:38.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:38.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:38.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:38.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5989ms +2024-05-24 19:27:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:39.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:39.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:39.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2005ms +2024-05-24 19:27:42.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:42.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:42.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:42.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8166ms +2024-05-24 19:27:51.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:51.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:51.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7642ms +2024-05-24 19:27:53.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:53.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:53.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:53.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9718ms +2024-05-24 19:27:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:54.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:54.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:54.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5147ms +2024-05-24 19:27:57.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:27:57.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:57.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:27:57.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1919ms +2024-05-24 19:28:06.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:06.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:06.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8811ms +2024-05-24 19:28:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:08.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:08.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:08.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3672ms +2024-05-24 19:28:09.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:09.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:09.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:09.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3824ms +2024-05-24 19:28:12.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:12.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:12.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:12.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3125ms +2024-05-24 19:28:21.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:21.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7856ms +2024-05-24 19:28:23.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:23.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:23.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:23.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3185ms +2024-05-24 19:28:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:24.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:24.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:24.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1645ms +2024-05-24 19:28:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:27.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:27.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:27.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9836ms +2024-05-24 19:28:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:36.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1034ms +2024-05-24 19:28:38.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:38.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:38.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:38.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6985ms +2024-05-24 19:28:39.520 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:39.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:39.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:39.553 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8729ms +2024-05-24 19:28:42.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:42.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:42.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:42.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3372ms +2024-05-24 19:28:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:51.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:51.854 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2678ms +2024-05-24 19:28:53.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:53.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:53.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8669ms +2024-05-24 19:28:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:54.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:54.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6396ms +2024-05-24 19:28:57.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:28:57.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:57.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:28:57.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2419ms +2024-05-24 19:29:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:06.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:06.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:06.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7529ms +2024-05-24 19:29:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:08.618 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:08.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8056ms +2024-05-24 19:29:09.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:09.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:09.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:09.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7549ms +2024-05-24 19:29:12.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:12.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:12.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:12.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3493ms +2024-05-24 19:29:21.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:21.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:21.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:21.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4915ms +2024-05-24 19:29:23.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:23.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:23.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:23.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4152ms +2024-05-24 19:29:24.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:24.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:24.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:24.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0477ms +2024-05-24 19:29:27.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:27.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:27.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2586ms +2024-05-24 19:29:36.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1581ms +2024-05-24 19:29:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:38.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:38.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:38.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8655ms +2024-05-24 19:29:39.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:39.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:39.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4263ms +2024-05-24 19:29:42.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:42.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:42.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:42.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5086ms +2024-05-24 19:29:51.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:51.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:51.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6681ms +2024-05-24 19:29:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:53.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:53.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:53.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3733ms +2024-05-24 19:29:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:54.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:54.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4935ms +2024-05-24 19:29:57.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:29:57.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:57.297 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:29:57.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.3747ms +2024-05-24 19:30:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:06.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:06.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:06.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.5581ms +2024-05-24 19:30:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:08.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:08.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0212ms +2024-05-24 19:30:09.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:09.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:09.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0411ms +2024-05-24 19:30:12.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:12.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:12.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:12.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9672ms +2024-05-24 19:30:21.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:21.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7045ms +2024-05-24 19:30:23.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:23.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:23.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:23.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3728ms +2024-05-24 19:30:24.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:24.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:24.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:24.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5492ms +2024-05-24 19:30:27.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:27.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:27.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:27.295 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2455ms +2024-05-24 19:30:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:36.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:36.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2098ms +2024-05-24 19:30:38.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:38.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:38.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:38.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9074ms +2024-05-24 19:30:39.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:39.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:39.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:39.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2772ms +2024-05-24 19:30:42.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:42.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:42.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:42.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.0191ms +2024-05-24 19:30:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:51.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:51.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5772ms +2024-05-24 19:30:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:53.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:53.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:53.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.941ms +2024-05-24 19:30:54.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:54.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:54.552 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:54.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0407ms +2024-05-24 19:30:57.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:30:57.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:57.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:30:57.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0052ms +2024-05-24 19:31:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:06.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:06.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:06.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7755ms +2024-05-24 19:31:08.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:08.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:08.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:08.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.7741ms +2024-05-24 19:31:09.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:09.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:09.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:09.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.122ms +2024-05-24 19:31:12.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:12.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:12.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:12.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 47.0692ms +2024-05-24 19:31:21.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:21.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:21.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:21.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7057ms +2024-05-24 19:31:23.588 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:23.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:23.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:23.628 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1734ms +2024-05-24 19:31:24.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:24.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:24.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:24.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4432ms +2024-05-24 19:31:26.547 +02:00 [INF] Deregistering a service [id: notifications-service:d5291067e5254abfa5f74bd1dde9265b] from Consul... +2024-05-24 19:31:26.548 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:d5291067e5254abfa5f74bd1dde9265b" +2024-05-24 19:31:26.548 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d5291067e5254abfa5f74bd1dde9265b +2024-05-24 19:31:26.548 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:d5291067e5254abfa5f74bd1dde9265b +2024-05-24 19:31:26.551 +02:00 [INF] Received HTTP response headers after 2.6687ms - 200 +2024-05-24 19:31:26.551 +02:00 [INF] End processing HTTP request after 3.1528ms - 200 +2024-05-24 19:31:26.552 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:31:26.553 +02:00 [INF] Deregistered a service [id: notifications-service:d5291067e5254abfa5f74bd1dde9265b] from Consul. +2024-05-24 19:31:38.012 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 19:31:38.074 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 19:31:38.127 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 19:31:38.195 +02:00 [INF] Registering a service [id: notifications-service:b184870af9ca41c8978cd70e5af464d3] in Consul... +2024-05-24 19:31:38.216 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 19:31:38.219 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:31:38.220 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 19:31:38.227 +02:00 [INF] Received HTTP response headers after 4.2698ms - 200 +2024-05-24 19:31:38.229 +02:00 [INF] End processing HTTP request after 10.2462ms - 200 +2024-05-24 19:31:38.233 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 19:31:38.235 +02:00 [INF] Registered a service [id: notifications-service:b184870af9ca41c8978cd70e5af464d3] in Consul. +2024-05-24 19:31:38.243 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 19:31:38.247 +02:00 [INF] Removed 0 old notifications. +2024-05-24 19:31:38.247 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 19:31:38.253 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 19:31:38.257 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 19:31:38.262 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 19:31:38.265 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 19:31:38.267 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 19:31:38.269 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 19:31:38.272 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 19:31:38.704 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:38.758 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:38.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:38.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:38.850 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:38.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 157.3985ms +2024-05-24 19:31:38.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:38.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.264ms +2024-05-24 19:31:39.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 19:31:39.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:39.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:39.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 39.7616ms +2024-05-24 19:31:39.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:39.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:39.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1085ms +2024-05-24 19:31:42.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:42.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:42.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:42.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1948ms +2024-05-24 19:31:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:51.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:51.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:51.860 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8894ms +2024-05-24 19:31:51.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:31:51.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:51.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:51.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.165ms +2024-05-24 19:31:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:53.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:53.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:53.618 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7098ms +2024-05-24 19:31:53.676 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 19:31:53.677 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:31:53.864 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 19:31:53.866 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:31:53.867 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 191.3114ms +2024-05-24 19:31:54.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:54.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:54.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:54.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5914ms +2024-05-24 19:31:57.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:31:57.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:57.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:31:57.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0957ms +2024-05-24 19:32:01.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - null null +2024-05-24 19:32:01.703 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:32:01.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:32:01.768 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - 200 null application/json 67.6473ms +2024-05-24 19:32:01.779 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 19:32:01.781 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:32:01.909 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 19:32:01.909 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:32:01.909 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 129.9324ms +2024-05-24 19:32:03.778 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:32:03.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:03.810 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:03.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.0822ms +2024-05-24 19:32:06.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:06.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:06.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:06.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0114ms +2024-05-24 19:32:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:08.585 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:08.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:08.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7251ms +2024-05-24 19:32:09.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:09.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:09.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4772ms +2024-05-24 19:32:12.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:12.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:12.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:12.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4951ms +2024-05-24 19:32:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:21.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:21.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:21.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4344ms +2024-05-24 19:32:23.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:23.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:23.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:23.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8831ms +2024-05-24 19:32:24.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:24.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:24.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:24.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1579ms +2024-05-24 19:32:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:27.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:27.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:27.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9527ms +2024-05-24 19:32:36.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:36.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:36.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:36.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.0837ms +2024-05-24 19:32:38.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:38.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:38.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:38.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9201ms +2024-05-24 19:32:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:39.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:39.546 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:39.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7939ms +2024-05-24 19:32:42.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:42.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:42.294 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:42.294 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.7722ms +2024-05-24 19:32:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:51.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:51.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:51.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6302ms +2024-05-24 19:32:53.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:53.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:53.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:53.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6308ms +2024-05-24 19:32:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:54.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:54.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6656ms +2024-05-24 19:32:57.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:32:57.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:57.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:32:57.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6991ms +2024-05-24 19:33:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:06.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:06.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9643ms +2024-05-24 19:33:08.582 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:08.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:08.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6148ms +2024-05-24 19:33:09.523 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:09.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:09.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:09.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0687ms +2024-05-24 19:33:12.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:12.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:12.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:12.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1556ms +2024-05-24 19:33:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:21.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:21.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2296ms +2024-05-24 19:33:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:23.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:23.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1229ms +2024-05-24 19:33:24.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:24.522 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:24.554 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:24.554 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4683ms +2024-05-24 19:33:27.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:27.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:27.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.515ms +2024-05-24 19:33:36.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:36.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:36.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9434ms +2024-05-24 19:33:38.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:38.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:38.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:38.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4392ms +2024-05-24 19:33:39.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:39.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:39.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:39.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8582ms +2024-05-24 19:33:42.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:42.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:42.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:42.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3198ms +2024-05-24 19:33:51.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:51.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:51.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:51.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0428ms +2024-05-24 19:33:53.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:53.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:53.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:53.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3346ms +2024-05-24 19:33:54.517 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:54.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:54.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:54.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7536ms +2024-05-24 19:33:57.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:33:57.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:57.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:33:57.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.317ms +2024-05-24 19:34:06.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:06.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:06.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:06.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3251ms +2024-05-24 19:34:08.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:08.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:08.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:08.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6818ms +2024-05-24 19:34:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:09.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7833ms +2024-05-24 19:34:10.438 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c - null null +2024-05-24 19:34:10.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:10.495 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:10.496 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c - 200 null application/json 57.4224ms +2024-05-24 19:34:10.499 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 19:34:10.500 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:10.637 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Read. +2024-05-24 19:34:10.637 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:10.637 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 137.7779ms +2024-05-24 19:34:12.088 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:34:12.089 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:12.119 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:12.120 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.0527ms +2024-05-24 19:34:12.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:12.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:12.295 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:12.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.9221ms +2024-05-24 19:34:13.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - null null +2024-05-24 19:34:13.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:13.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:13.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - 200 null application/json 27.9798ms +2024-05-24 19:34:16.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:34:16.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:16.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:16.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 27.3726ms +2024-05-24 19:34:18.604 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - application/json null +2024-05-24 19:34:18.605 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:18.727 +02:00 [INF] Updated the status of notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c to: Unread. +2024-05-24 19:34:18.727 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:18.728 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c/status - 200 0 null 123.8141ms +2024-05-24 19:34:21.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 19:34:21.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:21.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 19:34:21.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 null application/json 27.0324ms +2024-05-24 19:34:21.366 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - application/json null +2024-05-24 19:34:21.366 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:21.485 +02:00 [INF] Updated the status of notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947 to: Read. +2024-05-24 19:34:21.485 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 19:34:21.485 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947/status - 200 0 null 119.4409ms +2024-05-24 19:34:21.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:21.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:21.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:21.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6774ms +2024-05-24 19:34:23.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:23.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:23.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.769ms +2024-05-24 19:34:24.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:24.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:24.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:24.549 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1439ms +2024-05-24 19:34:27.259 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:27.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:27.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:27.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7965ms +2024-05-24 19:34:36.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:36.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:36.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:36.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7342ms +2024-05-24 19:34:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:38.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:38.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:38.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0819ms +2024-05-24 19:34:39.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:39.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:39.549 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:39.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2034ms +2024-05-24 19:34:42.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:42.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:42.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:42.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7406ms +2024-05-24 19:34:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:51.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:51.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:51.857 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0729ms +2024-05-24 19:34:53.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:53.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:53.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3463ms +2024-05-24 19:34:54.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:54.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:54.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:54.547 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7293ms +2024-05-24 19:34:57.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:34:57.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:57.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:34:57.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6116ms +2024-05-24 19:35:06.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:06.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:06.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:06.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.149ms +2024-05-24 19:35:08.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:08.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:08.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:08.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9808ms +2024-05-24 19:35:09.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:09.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:09.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:09.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.425ms +2024-05-24 19:35:12.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:12.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:12.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:12.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0031ms +2024-05-24 19:35:21.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:21.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:21.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:21.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7398ms +2024-05-24 19:35:23.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:23.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:23.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:23.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0682ms +2024-05-24 19:35:24.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:24.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:24.548 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:24.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2998ms +2024-05-24 19:35:27.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:27.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:27.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:27.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8834ms +2024-05-24 19:35:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:36.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4206ms +2024-05-24 19:35:38.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:38.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:38.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:38.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3309ms +2024-05-24 19:35:39.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:39.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:39.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:39.545 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5436ms +2024-05-24 19:35:42.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:42.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:42.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:42.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7217ms +2024-05-24 19:35:51.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:51.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:51.854 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:51.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4919ms +2024-05-24 19:35:53.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:53.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:53.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8138ms +2024-05-24 19:35:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:54.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4203ms +2024-05-24 19:35:57.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:35:57.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:57.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:35:57.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8278ms +2024-05-24 19:36:06.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:06.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:06.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:06.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3865ms +2024-05-24 19:36:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:08.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:08.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:08.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8106ms +2024-05-24 19:36:09.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:09.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:09.555 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:09.555 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.917ms +2024-05-24 19:36:12.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:12.264 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:12.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:12.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.038ms +2024-05-24 19:36:21.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:21.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:21.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:21.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.046ms +2024-05-24 19:36:23.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:23.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:23.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:23.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3388ms +2024-05-24 19:36:24.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:24.518 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:24.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:24.551 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5263ms +2024-05-24 19:36:27.263 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:27.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:27.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:27.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4954ms +2024-05-24 19:36:36.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:36.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:36.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:36.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9806ms +2024-05-24 19:36:38.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:38.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:38.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:38.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7432ms +2024-05-24 19:36:39.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:39.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:39.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:39.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7068ms +2024-05-24 19:36:42.264 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:42.266 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:42.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:42.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6151ms +2024-05-24 19:36:51.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:51.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:51.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:51.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0775ms +2024-05-24 19:36:53.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:53.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:53.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:53.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1061ms +2024-05-24 19:36:54.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:54.515 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:54.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:54.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5935ms +2024-05-24 19:36:57.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:36:57.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:57.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:36:57.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.391ms +2024-05-24 19:37:06.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:06.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:06.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:06.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0869ms +2024-05-24 19:37:08.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:08.583 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:08.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:08.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0312ms +2024-05-24 19:37:09.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:09.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:09.545 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:09.546 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8104ms +2024-05-24 19:37:12.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:12.263 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:12.291 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:12.291 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.005ms +2024-05-24 19:37:21.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:21.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:21.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:21.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.4245ms +2024-05-24 19:37:23.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:23.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:23.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:23.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0614ms +2024-05-24 19:37:24.515 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:24.516 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:24.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:24.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.322ms +2024-05-24 19:37:27.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:27.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:27.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:27.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2311ms +2024-05-24 19:37:52.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:52.745 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:52.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:52.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3358ms +2024-05-24 19:37:52.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:37:52.946 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:52.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:52.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7139ms +2024-05-24 19:37:56.433 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 19:37:56.434 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:56.462 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:37:56.462 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.9393ms +2024-05-24 19:38:07.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:38:07.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:07.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:07.918 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4183ms +2024-05-24 19:38:22.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:38:22.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:22.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:22.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5049ms +2024-05-24 19:38:37.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:38:37.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:37.922 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:37.924 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7697ms +2024-05-24 19:38:52.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:38:52.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:52.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:38:52.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1689ms +2024-05-24 19:39:07.888 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:07.888 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:07.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:07.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8018ms +2024-05-24 19:39:18.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:18.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:18.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:18.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2523ms +2024-05-24 19:39:18.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:18.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:18.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:18.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.9291ms +2024-05-24 19:39:22.894 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:22.896 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:22.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:22.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.4249ms +2024-05-24 19:39:33.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:33.589 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:33.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:33.623 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6544ms +2024-05-24 19:39:37.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:37.889 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:37.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:37.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9852ms +2024-05-24 19:39:48.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:48.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:48.612 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:48.613 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8888ms +2024-05-24 19:39:52.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:39:52.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:52.920 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:39:52.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8433ms +2024-05-24 19:40:17.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:40:17.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:17.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:17.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.8319ms +2024-05-24 19:40:17.366 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:40:17.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:17.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:17.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9144ms +2024-05-24 19:40:32.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:40:32.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:32.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:32.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4859ms +2024-05-24 19:40:47.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:40:47.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:47.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:40:47.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0928ms +2024-05-24 19:41:02.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:41:02.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:02.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:02.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6578ms +2024-05-24 19:41:17.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:41:17.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:17.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:17.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.5901ms +2024-05-24 19:41:32.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:41:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:32.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:32.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5355ms +2024-05-24 19:41:47.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:41:47.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:47.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:41:47.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5033ms +2024-05-24 19:42:02.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:02.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:02.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:02.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4421ms +2024-05-24 19:42:17.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:17.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.538ms +2024-05-24 19:42:17.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:17.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.836 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1341ms +2024-05-24 19:42:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:17.848 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:17.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3611ms +2024-05-24 19:42:32.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:32.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:32.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:32.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2798ms +2024-05-24 19:42:32.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:32.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:32.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:32.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0471ms +2024-05-24 19:42:47.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:47.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:47.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:47.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.38ms +2024-05-24 19:42:47.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:42:47.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:47.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:42:47.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4595ms +2024-05-24 19:43:02.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:02.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:02.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:02.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0844ms +2024-05-24 19:43:02.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:02.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:02.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.0361ms +2024-05-24 19:43:17.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:17.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:17.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:17.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4187ms +2024-05-24 19:43:17.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:17.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:17.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:17.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9929ms +2024-05-24 19:43:26.025 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:26.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:26.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:26.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3933ms +2024-05-24 19:43:26.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:26.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:26.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:26.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9015ms +2024-05-24 19:43:32.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:32.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:32.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.637ms +2024-05-24 19:43:32.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:32.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2758ms +2024-05-24 19:43:41.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:41.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:41.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:41.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4275ms +2024-05-24 19:43:47.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:47.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:47.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:47.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0685ms +2024-05-24 19:43:47.851 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:47.852 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:47.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:47.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3746ms +2024-05-24 19:43:56.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:43:56.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:56.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:43:56.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.8768ms +2024-05-24 19:44:02.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:02.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:02.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:02.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0291ms +2024-05-24 19:44:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:02.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:02.879 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.9374ms +2024-05-24 19:44:11.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:11.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:11.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:11.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8257ms +2024-05-24 19:44:17.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:17.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:17.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:17.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6775ms +2024-05-24 19:44:17.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:17.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:17.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4059ms +2024-05-24 19:44:26.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:26.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:26.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:26.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0271ms +2024-05-24 19:44:32.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:32.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:32.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:32.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2176ms +2024-05-24 19:44:32.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:32.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0341ms +2024-05-24 19:44:41.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:41.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:41.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:41.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9145ms +2024-05-24 19:44:47.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:47.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:47.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:47.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3159ms +2024-05-24 19:44:47.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:47.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:47.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8569ms +2024-05-24 19:44:56.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:44:56.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:56.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:44:56.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9403ms +2024-05-24 19:45:02.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:02.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:02.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:02.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5609ms +2024-05-24 19:45:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:02.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:02.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:02.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1468ms +2024-05-24 19:45:11.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:11.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:11.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:11.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6234ms +2024-05-24 19:45:17.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:17.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:17.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:17.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0046ms +2024-05-24 19:45:17.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:17.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:17.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:17.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6089ms +2024-05-24 19:45:26.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:26.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:26.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:26.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9501ms +2024-05-24 19:45:32.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:32.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:32.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:32.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0666ms +2024-05-24 19:45:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:32.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:32.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.244ms +2024-05-24 19:45:41.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:41.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:41.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:41.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4417ms +2024-05-24 19:45:47.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:47.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:47.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:47.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.668ms +2024-05-24 19:45:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:47.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:47.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8377ms +2024-05-24 19:45:56.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:45:56.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:56.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:45:56.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5233ms +2024-05-24 19:46:02.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:02.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:02.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:02.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2696ms +2024-05-24 19:46:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:02.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:02.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:02.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7002ms +2024-05-24 19:46:11.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:11.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:11.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:11.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4984ms +2024-05-24 19:46:17.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:17.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:17.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:17.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5099ms +2024-05-24 19:46:17.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:17.851 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:17.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:17.881 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9666ms +2024-05-24 19:46:26.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:26.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:26.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:26.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7524ms +2024-05-24 19:46:32.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:32.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:32.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9074ms +2024-05-24 19:46:32.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:32.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:32.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:32.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5043ms +2024-05-24 19:46:41.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:41.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:41.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:41.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4918ms +2024-05-24 19:46:46.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:46.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:46.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:46.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5468ms +2024-05-24 19:46:47.021 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:47.022 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.058 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.5837ms +2024-05-24 19:46:47.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:47.356 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8993ms +2024-05-24 19:46:47.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:47.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:47.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.3555ms +2024-05-24 19:46:56.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:46:56.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:56.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:46:56.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1587ms +2024-05-24 19:47:01.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:01.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:01.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:01.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7232ms +2024-05-24 19:47:02.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:02.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:02.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:02.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8251ms +2024-05-24 19:47:02.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:02.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:02.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:02.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9ms +2024-05-24 19:47:11.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:11.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:11.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:11.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6252ms +2024-05-24 19:47:15.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:15.825 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:15.857 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:15.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7402ms +2024-05-24 19:47:15.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:15.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:15.972 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:15.973 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.4039ms +2024-05-24 19:47:16.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:16.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:16.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5744ms +2024-05-24 19:47:17.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:17.365 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:17.399 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:17.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.2255ms +2024-05-24 19:47:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:17.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:17.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2057ms +2024-05-24 19:47:26.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:26.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:26.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:26.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6584ms +2024-05-24 19:47:30.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:30.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:30.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:30.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3539ms +2024-05-24 19:47:31.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:31.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:31.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:31.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9535ms +2024-05-24 19:47:32.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:32.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:32.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:32.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2841ms +2024-05-24 19:47:32.840 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:32.840 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:32.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:32.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7175ms +2024-05-24 19:47:41.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:41.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:41.099 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:41.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4156ms +2024-05-24 19:47:45.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:45.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:45.954 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:45.954 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.0772ms +2024-05-24 19:47:46.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:46.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:46.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:46.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4721ms +2024-05-24 19:47:47.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:47.353 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:47.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:47.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1286ms +2024-05-24 19:47:47.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:47.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:47.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:47.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8892ms +2024-05-24 19:47:53.273 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:53.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:53.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:53.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.7849ms +2024-05-24 19:47:53.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:53.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:53.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:53.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.6286ms +2024-05-24 19:47:56.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:56.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:56.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:56.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1069ms +2024-05-24 19:47:59.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:59.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:59.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:59.657 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.654ms +2024-05-24 19:47:59.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:47:59.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:59.892 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:47:59.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.2256ms +2024-05-24 19:48:00.898 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:00.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:00.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:00.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7289ms +2024-05-24 19:48:01.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:01.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:01.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:01.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1402ms +2024-05-24 19:48:02.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:02.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:02.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:02.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5472ms +2024-05-24 19:48:02.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:02.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:02.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:02.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7232ms +2024-05-24 19:48:08.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:08.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:08.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:08.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4573ms +2024-05-24 19:48:11.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:11.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:11.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:11.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1065ms +2024-05-24 19:48:14.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:14.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:14.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:14.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4185ms +2024-05-24 19:48:15.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:15.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:15.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:15.931 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3893ms +2024-05-24 19:48:16.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:16.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:16.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:16.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9618ms +2024-05-24 19:48:17.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:17.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:17.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:17.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2184ms +2024-05-24 19:48:17.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:17.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:17.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:17.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0835ms +2024-05-24 19:48:23.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:23.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:23.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:23.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7168ms +2024-05-24 19:48:26.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:26.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:26.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:26.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.75ms +2024-05-24 19:48:29.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:29.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:29.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:29.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.783ms +2024-05-24 19:48:30.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:30.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:30.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:30.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4583ms +2024-05-24 19:48:31.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:31.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:31.910 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:31.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3886ms +2024-05-24 19:48:32.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:32.390 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:32.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.5512ms +2024-05-24 19:48:32.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:32.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:32.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:32.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1092ms +2024-05-24 19:48:38.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:38.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:38.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:38.367 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7606ms +2024-05-24 19:48:41.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:41.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:41.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:41.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6805ms +2024-05-24 19:48:44.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:44.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:44.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:44.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9803ms +2024-05-24 19:48:45.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:45.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:45.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:45.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3052ms +2024-05-24 19:48:46.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:46.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:46.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2462ms +2024-05-24 19:48:47.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:47.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:47.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:47.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1916ms +2024-05-24 19:48:47.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:47.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:47.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:47.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5631ms +2024-05-24 19:48:53.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:53.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:53.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:53.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2118ms +2024-05-24 19:48:56.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:56.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:56.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:56.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.868ms +2024-05-24 19:48:59.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:48:59.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:59.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:48:59.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5959ms +2024-05-24 19:49:00.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:00.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:00.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:00.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9254ms +2024-05-24 19:49:01.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:01.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:01.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:01.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4365ms +2024-05-24 19:49:02.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:02.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:02.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:02.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0224ms +2024-05-24 19:49:02.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:02.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:02.880 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:02.880 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9788ms +2024-05-24 19:49:08.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:08.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:08.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:08.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5097ms +2024-05-24 19:49:11.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:11.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:11.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:11.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4066ms +2024-05-24 19:49:14.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:14.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:14.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:14.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8771ms +2024-05-24 19:49:15.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:15.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:15.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:15.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5106ms +2024-05-24 19:49:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:16.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2802ms +2024-05-24 19:49:17.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:17.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:17.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:17.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9963ms +2024-05-24 19:49:17.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:17.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:17.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:17.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.706ms +2024-05-24 19:49:23.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:23.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:23.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:23.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6802ms +2024-05-24 19:49:26.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:26.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:26.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:26.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5059ms +2024-05-24 19:49:29.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:29.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:29.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:29.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7549ms +2024-05-24 19:49:30.899 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:30.899 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:30.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:30.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2349ms +2024-05-24 19:49:31.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:31.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:31.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:31.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7554ms +2024-05-24 19:49:32.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:32.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:32.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:32.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9184ms +2024-05-24 19:49:32.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:32.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:32.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4002ms +2024-05-24 19:49:38.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:38.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:38.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:38.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0873ms +2024-05-24 19:49:41.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:41.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:41.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:41.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5848ms +2024-05-24 19:49:44.677 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:44.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:44.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:44.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1545ms +2024-05-24 19:49:45.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:45.903 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:45.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:45.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.1321ms +2024-05-24 19:49:46.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:46.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4171ms +2024-05-24 19:49:47.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:47.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:47.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:47.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3975ms +2024-05-24 19:49:47.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:47.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:47.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:47.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7523ms +2024-05-24 19:49:53.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:53.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:53.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:53.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1828ms +2024-05-24 19:49:56.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:56.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:56.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:56.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4095ms +2024-05-24 19:49:59.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:49:59.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:59.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:49:59.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0842ms +2024-05-24 19:50:00.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:00.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:00.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:00.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3296ms +2024-05-24 19:50:01.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:01.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:01.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:01.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1152ms +2024-05-24 19:50:02.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:02.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:02.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:02.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0142ms +2024-05-24 19:50:02.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:02.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:02.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:02.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0589ms +2024-05-24 19:50:08.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:08.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:08.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:08.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.872ms +2024-05-24 19:50:11.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:11.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:11.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:11.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.3338ms +2024-05-24 19:50:14.680 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:14.681 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:14.726 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:14.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.0046ms +2024-05-24 19:50:15.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:15.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:15.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:15.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0159ms +2024-05-24 19:50:16.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:16.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:16.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1485ms +2024-05-24 19:50:17.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:17.355 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:17.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:17.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1268ms +2024-05-24 19:50:17.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:17.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:17.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:17.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4263ms +2024-05-24 19:50:23.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:23.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:23.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:23.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0078ms +2024-05-24 19:50:26.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:26.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:26.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:26.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5362ms +2024-05-24 19:50:29.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:29.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:29.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:29.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3835ms +2024-05-24 19:50:30.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:30.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:30.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:30.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4358ms +2024-05-24 19:50:31.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:31.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:31.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:31.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7756ms +2024-05-24 19:50:32.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:32.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:32.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:32.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4531ms +2024-05-24 19:50:32.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:32.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:32.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3066ms +2024-05-24 19:50:38.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:38.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:38.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:38.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3087ms +2024-05-24 19:50:41.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:41.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:41.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:41.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8277ms +2024-05-24 19:50:44.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:44.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:44.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:44.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1758ms +2024-05-24 19:50:45.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:45.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:45.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:45.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6506ms +2024-05-24 19:50:46.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:46.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:46.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:46.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8188ms +2024-05-24 19:50:47.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:47.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:47.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:47.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5748ms +2024-05-24 19:50:47.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:47.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:47.875 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:47.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8461ms +2024-05-24 19:50:53.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:53.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:53.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:53.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6441ms +2024-05-24 19:50:56.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:56.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:56.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:56.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4077ms +2024-05-24 19:50:59.673 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:50:59.673 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:59.707 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:50:59.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7775ms +2024-05-24 19:51:00.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:00.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:00.929 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:00.929 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7371ms +2024-05-24 19:51:01.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:01.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:01.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:01.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9296ms +2024-05-24 19:51:02.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:02.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:02.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:02.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7236ms +2024-05-24 19:51:02.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:02.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:02.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:02.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.378ms +2024-05-24 19:51:08.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:08.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:08.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:08.358 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1951ms +2024-05-24 19:51:11.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:11.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:11.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:11.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6914ms +2024-05-24 19:51:14.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:14.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:14.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:14.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0257ms +2024-05-24 19:51:15.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:15.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:15.927 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:15.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4634ms +2024-05-24 19:51:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:16.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:16.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6996ms +2024-05-24 19:51:17.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:17.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:17.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:17.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.34ms +2024-05-24 19:51:17.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:17.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:17.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:17.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9129ms +2024-05-24 19:51:23.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:23.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:23.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:23.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4157ms +2024-05-24 19:51:26.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:26.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:26.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:26.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9497ms +2024-05-24 19:51:29.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:29.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:29.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:29.722 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.968ms +2024-05-24 19:51:30.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:30.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:30.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:30.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5518ms +2024-05-24 19:51:31.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:31.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:31.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:31.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.8505ms +2024-05-24 19:51:32.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:32.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:32.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:32.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6784ms +2024-05-24 19:51:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:32.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:32.875 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2941ms +2024-05-24 19:51:36.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:36.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:36.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:36.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3495ms +2024-05-24 19:51:36.692 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:36.696 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:36.732 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:36.732 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.4495ms +2024-05-24 19:51:38.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:38.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:38.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:38.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7885ms +2024-05-24 19:51:41.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:41.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:41.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:41.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7413ms +2024-05-24 19:51:44.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:44.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:44.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:44.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5108ms +2024-05-24 19:51:45.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:45.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:45.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:45.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1255ms +2024-05-24 19:51:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:46.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8885ms +2024-05-24 19:51:47.356 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:47.357 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:47.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:47.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2944ms +2024-05-24 19:51:47.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:47.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:47.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:47.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5414ms +2024-05-24 19:51:51.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:51.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:51.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:51.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3802ms +2024-05-24 19:51:53.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:53.330 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:53.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:53.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3837ms +2024-05-24 19:51:56.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:56.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:56.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:56.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1331ms +2024-05-24 19:51:59.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:51:59.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:59.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:51:59.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1764ms +2024-05-24 19:52:00.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:00.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:00.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:00.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2706ms +2024-05-24 19:52:01.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:01.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:01.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4192ms +2024-05-24 19:52:02.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:02.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:02.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:02.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0633ms +2024-05-24 19:52:02.844 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:02.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:02.873 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:02.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0683ms +2024-05-24 19:52:04.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:04.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:04.829 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:04.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2725ms +2024-05-24 19:52:04.950 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:04.951 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:04.985 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:04.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.2786ms +2024-05-24 19:52:06.670 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:06.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:06.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:06.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.121ms +2024-05-24 19:52:08.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:08.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:08.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:08.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.944ms +2024-05-24 19:52:11.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:11.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:11.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:11.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5657ms +2024-05-24 19:52:14.679 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:14.680 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:14.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:14.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6222ms +2024-05-24 19:52:15.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:15.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:15.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:15.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1369ms +2024-05-24 19:52:16.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:16.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:16.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:16.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9364ms +2024-05-24 19:52:17.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:17.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:17.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:17.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3311ms +2024-05-24 19:52:17.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:17.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:17.868 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:17.868 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8528ms +2024-05-24 19:52:19.849 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:19.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:19.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:19.879 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9358ms +2024-05-24 19:52:21.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:21.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:21.694 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:21.695 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2246ms +2024-05-24 19:52:23.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:23.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:23.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:23.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.117ms +2024-05-24 19:52:26.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:26.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:26.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:26.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9913ms +2024-05-24 19:52:29.674 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:29.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:29.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:29.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0044ms +2024-05-24 19:52:30.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:30.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:30.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:30.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5688ms +2024-05-24 19:52:31.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:31.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:31.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:31.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7659ms +2024-05-24 19:52:32.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:32.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:32.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7066ms +2024-05-24 19:52:32.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:32.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:32.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:32.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8221ms +2024-05-24 19:52:34.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:34.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:34.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:34.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4108ms +2024-05-24 19:52:36.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:36.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:36.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:36.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0146ms +2024-05-24 19:52:38.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:38.328 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:38.355 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:38.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6601ms +2024-05-24 19:52:41.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:41.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:41.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:41.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1369ms +2024-05-24 19:52:44.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:44.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:44.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:44.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5928ms +2024-05-24 19:52:45.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:45.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:45.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:45.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.1464ms +2024-05-24 19:52:46.876 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:46.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:46.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6776ms +2024-05-24 19:52:47.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:47.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:47.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:47.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7989ms +2024-05-24 19:52:47.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:47.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:47.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:47.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8531ms +2024-05-24 19:52:49.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:49.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:49.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:49.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9483ms +2024-05-24 19:52:51.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:51.663 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:51.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:51.691 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0247ms +2024-05-24 19:52:53.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:53.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:53.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:53.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6388ms +2024-05-24 19:52:56.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:56.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:56.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:56.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3829ms +2024-05-24 19:52:59.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:52:59.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:59.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:52:59.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8161ms +2024-05-24 19:53:00.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:00.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:00.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:00.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.2882ms +2024-05-24 19:53:01.874 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:01.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:01.900 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:01.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.0599ms +2024-05-24 19:53:02.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:02.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:02.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:02.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.851ms +2024-05-24 19:53:02.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:02.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:02.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:02.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4201ms +2024-05-24 19:53:04.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:04.845 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:04.876 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:04.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1122ms +2024-05-24 19:53:06.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:06.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:06.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:06.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3106ms +2024-05-24 19:53:08.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:08.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:08.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:08.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4666ms +2024-05-24 19:53:11.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:11.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6183ms +2024-05-24 19:53:11.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:11.300 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7109ms +2024-05-24 19:53:11.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:11.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.413 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:11.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7511ms +2024-05-24 19:53:14.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:14.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:14.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:14.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1192ms +2024-05-24 19:53:15.901 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:15.902 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:15.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:15.933 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6261ms +2024-05-24 19:53:16.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:16.875 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:16.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:16.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1086ms +2024-05-24 19:53:17.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:17.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:17.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:17.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6637ms +2024-05-24 19:53:17.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:17.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:17.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:17.876 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3144ms +2024-05-24 19:53:19.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:19.846 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:19.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:19.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2832ms +2024-05-24 19:53:21.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:21.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:21.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:21.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2008ms +2024-05-24 19:53:23.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:23.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:23.353 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:23.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4086ms +2024-05-24 19:53:26.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:26.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:26.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:26.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4799ms +2024-05-24 19:53:26.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:26.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:26.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:26.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4534ms +2024-05-24 19:53:29.675 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:29.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:29.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:29.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4897ms +2024-05-24 19:53:30.903 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:30.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:30.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:30.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8546ms +2024-05-24 19:53:31.877 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:31.877 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:31.904 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:31.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6143ms +2024-05-24 19:53:32.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:32.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:32.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:32.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7937ms +2024-05-24 19:53:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:32.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:32.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5612ms +2024-05-24 19:53:34.846 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:34.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:34.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:34.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5866ms +2024-05-24 19:53:36.663 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:36.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:36.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:36.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9265ms +2024-05-24 19:53:38.326 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:38.327 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:38.354 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:38.355 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1454ms +2024-05-24 19:53:41.070 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:41.071 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:41.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:41.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3564ms +2024-05-24 19:53:41.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:41.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:41.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:41.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8986ms +2024-05-24 19:53:44.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:44.679 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:44.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:44.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0928ms +2024-05-24 19:53:45.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:45.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:45.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:45.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9055ms +2024-05-24 19:53:46.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:46.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:46.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2459ms +2024-05-24 19:53:47.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:47.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:47.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:47.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1996ms +2024-05-24 19:53:47.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:47.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:47.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:47.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0597ms +2024-05-24 19:53:49.848 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:49.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:49.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:49.877 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5076ms +2024-05-24 19:53:51.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:51.674 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:51.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:51.707 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4577ms +2024-05-24 19:53:53.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:53.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:53.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:53.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9996ms +2024-05-24 19:53:53.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:53:53.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:53.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:53:54.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.2128ms +2024-05-24 19:54:08.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:54:08.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:08.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:08.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.264ms +2024-05-24 19:54:24.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:54:24.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:24.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:24.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.7704ms +2024-05-24 19:54:38.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:54:38.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:38.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:38.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8106ms +2024-05-24 19:54:53.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:54:53.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:53.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:54:53.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4448ms +2024-05-24 19:55:08.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:55:08.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:09.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:09.009 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0116ms +2024-05-24 19:55:23.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:55:23.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:23.991 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:23.991 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7829ms +2024-05-24 19:55:38.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:55:38.967 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:38.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:38.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5517ms +2024-05-24 19:55:53.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:55:53.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:53.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:55:53.994 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9465ms +2024-05-24 19:56:08.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:56:08.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:09.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:09.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3076ms +2024-05-24 19:56:23.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:56:23.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:23.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:23.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4634ms +2024-05-24 19:56:38.968 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:56:38.969 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:39.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:39.001 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6015ms +2024-05-24 19:56:53.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:56:53.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:53.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:56:53.990 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7878ms +2024-05-24 19:57:08.971 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:08.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:09.004 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:09.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.84ms +2024-05-24 19:57:14.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:14.689 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:14.721 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:14.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2027ms +2024-05-24 19:57:14.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:14.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:14.773 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:14.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6368ms +2024-05-24 19:57:20.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:20.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:20.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:20.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4181ms +2024-05-24 19:57:35.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:35.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:35.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:35.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6027ms +2024-05-24 19:57:50.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:57:50.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:50.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:57:50.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0789ms +2024-05-24 19:58:03.244 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:03.245 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:03.274 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:03.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1581ms +2024-05-24 19:58:03.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:03.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:03.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:03.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3879ms +2024-05-24 19:58:05.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:05.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:05.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:05.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.809ms +2024-05-24 19:58:18.296 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:18.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:18.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:18.326 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5648ms +2024-05-24 19:58:20.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:20.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:20.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:20.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7109ms +2024-05-24 19:58:21.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:21.019 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:21.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:21.048 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4614ms +2024-05-24 19:58:21.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:21.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:21.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:21.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3612ms +2024-05-24 19:58:36.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:36.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:36.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:36.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9018ms +2024-05-24 19:58:51.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:58:51.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:51.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:58:51.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7368ms +2024-05-24 19:59:06.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:59:06.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:06.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:06.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.642ms +2024-05-24 19:59:21.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:59:21.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:21.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:21.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.123ms +2024-05-24 19:59:36.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:59:36.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:36.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:36.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2662ms +2024-05-24 19:59:51.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 19:59:51.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:51.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 19:59:51.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.859ms +2024-05-24 20:00:06.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:00:06.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:06.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:06.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 61.0776ms +2024-05-24 20:00:21.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:00:21.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:21.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:21.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2513ms +2024-05-24 20:00:30.830 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:00:30.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:30.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:30.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7189ms +2024-05-24 20:00:30.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:00:30.863 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:30.891 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:30.892 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3214ms +2024-05-24 20:00:45.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:00:45.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:45.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:00:45.895 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6419ms +2024-05-24 20:01:00.863 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:01:00.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:00.894 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:00.894 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5442ms +2024-05-24 20:01:32.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:01:32.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:32.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:32.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.058ms +2024-05-24 20:01:32.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:01:32.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:32.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:32.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9835ms +2024-05-24 20:01:47.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:01:47.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:47.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:01:47.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2672ms +2024-05-24 20:02:02.834 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:02:02.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:02.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:02.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5828ms +2024-05-24 20:02:17.839 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:02:17.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:17.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:17.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7684ms +2024-05-24 20:02:25.905 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:02:25.905 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:25.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:25.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.0851ms +2024-05-24 20:02:32.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:02:32.844 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:32.874 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:32.874 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1547ms +2024-05-24 20:02:47.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:02:47.836 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:47.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:02:47.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5193ms +2024-05-24 20:03:02.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:02.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:02.871 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:02.872 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0022ms +2024-05-24 20:03:17.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:17.839 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:17.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:17.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5156ms +2024-05-24 20:03:32.835 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:32.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:32.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:32.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8969ms +2024-05-24 20:03:47.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:47.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:47.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:47.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5034ms +2024-05-24 20:03:51.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:51.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:51.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:51.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9218ms +2024-05-24 20:03:51.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:51.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:51.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:51.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1592ms +2024-05-24 20:03:58.488 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:03:58.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:58.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:03:58.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8136ms +2024-05-24 20:04:07.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:04:07.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:04:07.175 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:04:07.176 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9072ms +2024-05-24 20:04:13.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:04:13.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:04:13.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:04:13.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4611ms +2024-05-24 20:05:16.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:16.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:16.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:16.811 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.366ms +2024-05-24 20:05:16.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:16.920 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:16.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:16.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0411ms +2024-05-24 20:05:18.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:18.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:18.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:18.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5218ms +2024-05-24 20:05:18.602 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:18.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:18.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:18.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9206ms +2024-05-24 20:05:31.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:31.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:31.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:31.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6239ms +2024-05-24 20:05:33.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:33.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:33.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:33.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2062ms +2024-05-24 20:05:46.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:46.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:46.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.573ms +2024-05-24 20:05:48.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:05:48.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:48.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:05:48.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.064ms +2024-05-24 20:06:01.892 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:01.894 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:01.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:01.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0932ms +2024-05-24 20:06:03.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:03.317 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:03.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:03.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4972ms +2024-05-24 20:06:15.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:06:15.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:15.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:15.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.9185ms +2024-05-24 20:06:16.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:16.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4617ms +2024-05-24 20:06:16.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:16.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9905ms +2024-05-24 20:06:16.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:16.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:16.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.2334ms +2024-05-24 20:06:17.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:06:17.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.1926ms +2024-05-24 20:06:17.718 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:17.718 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.687ms +2024-05-24 20:06:17.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:17.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:17.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5522ms +2024-05-24 20:06:18.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:18.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:18.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:18.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2743ms +2024-05-24 20:06:31.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:31.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:31.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:31.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2477ms +2024-05-24 20:06:31.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:31.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:31.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:31.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8535ms +2024-05-24 20:06:32.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:32.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:32.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:32.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2027ms +2024-05-24 20:06:33.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:33.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:33.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:33.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0912ms +2024-05-24 20:06:46.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:46.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:46.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:46.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2862ms +2024-05-24 20:06:46.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:46.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:46.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:46.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4397ms +2024-05-24 20:06:47.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:47.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:47.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:47.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4707ms +2024-05-24 20:06:48.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:06:48.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:48.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:06:48.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6008ms +2024-05-24 20:07:01.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:01.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:01.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:01.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8326ms +2024-05-24 20:07:01.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:01.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:01.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:01.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7472ms +2024-05-24 20:07:02.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:02.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:02.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:02.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1737ms +2024-05-24 20:07:03.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:03.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:03.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:03.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7424ms +2024-05-24 20:07:16.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:07:16.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.3093ms +2024-05-24 20:07:16.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:16.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1191ms +2024-05-24 20:07:16.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:16.893 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:16.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.9118ms +2024-05-24 20:07:17.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:17.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:17.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:17.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8032ms +2024-05-24 20:07:18.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:18.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:18.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:18.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7793ms +2024-05-24 20:07:31.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:31.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:31.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:31.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1295ms +2024-05-24 20:07:31.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:31.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:31.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:31.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5355ms +2024-05-24 20:07:32.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:32.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:32.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:32.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1502ms +2024-05-24 20:07:33.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:33.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:33.365 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:33.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3629ms +2024-05-24 20:07:46.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:46.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:46.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:46.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7913ms +2024-05-24 20:07:46.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:46.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:46.906 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:46.906 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4907ms +2024-05-24 20:07:47.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:47.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:47.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:47.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9899ms +2024-05-24 20:07:48.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:07:48.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:48.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:07:48.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6995ms +2024-05-24 20:08:01.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:01.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:01.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:01.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5548ms +2024-05-24 20:08:01.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:01.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:01.918 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:01.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.907ms +2024-05-24 20:08:02.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:02.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:02.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:02.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0216ms +2024-05-24 20:08:03.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:03.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:03.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:03.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4649ms +2024-05-24 20:08:16.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:16.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:16.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:16.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.864ms +2024-05-24 20:08:16.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:16.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:16.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:16.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1529ms +2024-05-24 20:08:17.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:17.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:17.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:17.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4124ms +2024-05-24 20:08:18.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:18.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:18.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:18.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0842ms +2024-05-24 20:08:31.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:31.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:31.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:31.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8678ms +2024-05-24 20:08:31.884 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:31.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:31.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:31.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9095ms +2024-05-24 20:08:32.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:32.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:32.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:32.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8099ms +2024-05-24 20:08:33.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:33.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:33.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:33.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.013ms +2024-05-24 20:08:46.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:46.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:46.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:46.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4218ms +2024-05-24 20:08:46.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:46.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:46.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5358ms +2024-05-24 20:08:47.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:47.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:47.774 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:47.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2433ms +2024-05-24 20:08:48.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:08:48.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:48.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:08:48.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6926ms +2024-05-24 20:09:01.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:01.250 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:01.279 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:01.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9076ms +2024-05-24 20:09:01.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:01.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:01.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:01.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0487ms +2024-05-24 20:09:02.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:02.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:02.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:02.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6466ms +2024-05-24 20:09:03.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:03.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:03.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:03.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6678ms +2024-05-24 20:09:16.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:16.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:16.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:16.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2587ms +2024-05-24 20:09:16.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:16.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:16.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:16.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3862ms +2024-05-24 20:09:17.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:17.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:17.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:17.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8282ms +2024-05-24 20:09:18.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:18.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:18.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:18.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0938ms +2024-05-24 20:09:31.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:31.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:31.281 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:31.281 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.096ms +2024-05-24 20:09:31.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:31.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:31.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:31.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.491ms +2024-05-24 20:09:32.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:32.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:32.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:32.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4928ms +2024-05-24 20:09:33.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:33.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:33.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:33.341 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0389ms +2024-05-24 20:09:46.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:46.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:46.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:46.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7739ms +2024-05-24 20:09:46.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:46.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:46.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:46.914 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0766ms +2024-05-24 20:09:47.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:47.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:47.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:47.790 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.223ms +2024-05-24 20:09:48.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:09:48.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:48.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:09:48.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4184ms +2024-05-24 20:10:01.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:01.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:01.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:01.282 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5448ms +2024-05-24 20:10:01.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:01.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:01.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8647ms +2024-05-24 20:10:02.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:02.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:02.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:02.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1269ms +2024-05-24 20:10:03.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:03.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:03.336 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:03.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3107ms +2024-05-24 20:10:16.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:16.252 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:16.279 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:16.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6266ms +2024-05-24 20:10:16.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:16.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:16.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:16.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4634ms +2024-05-24 20:10:17.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:17.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:17.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:17.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0555ms +2024-05-24 20:10:18.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:18.311 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:18.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:18.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4403ms +2024-05-24 20:10:31.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:31.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:31.285 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:31.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4626ms +2024-05-24 20:10:31.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:31.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:31.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:31.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5213ms +2024-05-24 20:10:32.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:32.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:32.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:32.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2815ms +2024-05-24 20:10:33.317 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:33.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:33.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:33.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9174ms +2024-05-24 20:10:46.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:46.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:46.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:46.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.094ms +2024-05-24 20:10:46.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:46.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:46.914 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:46.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1701ms +2024-05-24 20:10:47.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:47.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:47.775 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:47.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6612ms +2024-05-24 20:10:48.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:10:48.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:48.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:10:48.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0475ms +2024-05-24 20:11:01.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:01.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:01.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:01.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6396ms +2024-05-24 20:11:01.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:01.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:01.917 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:01.917 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2579ms +2024-05-24 20:11:02.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:02.754 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:02.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:02.785 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5346ms +2024-05-24 20:11:03.315 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:03.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:03.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:03.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2698ms +2024-05-24 20:11:16.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:16.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:16.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:16.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.8959ms +2024-05-24 20:11:16.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:16.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:16.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:16.908 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8309ms +2024-05-24 20:11:17.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:17.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:17.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:17.783 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.008ms +2024-05-24 20:11:18.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:18.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:18.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:18.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4227ms +2024-05-24 20:11:31.252 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:31.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:31.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:31.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3034ms +2024-05-24 20:11:31.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:31.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:31.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:31.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6966ms +2024-05-24 20:11:32.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:32.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:32.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:32.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3028ms +2024-05-24 20:11:33.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:33.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:33.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:33.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9166ms +2024-05-24 20:11:46.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:46.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:46.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:46.287 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1047ms +2024-05-24 20:11:46.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:46.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:46.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:46.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3037ms +2024-05-24 20:11:47.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:47.749 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:47.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:47.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0006ms +2024-05-24 20:11:48.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:11:48.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:48.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:11:48.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.7065ms +2024-05-24 20:12:01.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:01.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:01.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:01.286 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7238ms +2024-05-24 20:12:01.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:01.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:01.908 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:01.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6448ms +2024-05-24 20:12:02.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:02.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:02.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:02.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2081ms +2024-05-24 20:12:03.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:03.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:03.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:03.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.824ms +2024-05-24 20:12:16.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:16.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:16.279 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:16.279 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3634ms +2024-05-24 20:12:16.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:16.884 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:16.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:16.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7367ms +2024-05-24 20:12:17.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:17.756 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:17.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:17.788 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7182ms +2024-05-24 20:12:18.320 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:18.321 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:18.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:18.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.3892ms +2024-05-24 20:12:31.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:31.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:31.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:31.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7086ms +2024-05-24 20:12:31.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:31.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:31.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:31.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4684ms +2024-05-24 20:12:32.749 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:32.750 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:32.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:32.778 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6391ms +2024-05-24 20:12:33.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:33.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:33.341 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:33.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6953ms +2024-05-24 20:12:46.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:46.255 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:46.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:46.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1754ms +2024-05-24 20:12:46.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:46.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:46.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:46.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.145ms +2024-05-24 20:12:47.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:47.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:47.781 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:47.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5327ms +2024-05-24 20:12:48.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:12:48.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:48.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:12:48.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4464ms +2024-05-24 20:13:01.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:01.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:01.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:01.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1697ms +2024-05-24 20:13:01.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:01.879 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:01.907 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:01.907 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3922ms +2024-05-24 20:13:02.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:02.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:02.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:02.781 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9896ms +2024-05-24 20:13:03.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:03.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:03.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:03.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5501ms +2024-05-24 20:13:16.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:16.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:16.287 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:16.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3297ms +2024-05-24 20:13:16.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:16.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:16.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:16.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 50.8007ms +2024-05-24 20:13:17.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:17.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:17.778 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:17.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5195ms +2024-05-24 20:13:18.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:18.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:18.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:18.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.141ms +2024-05-24 20:13:31.261 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:31.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:31.293 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:31.293 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.806ms +2024-05-24 20:13:31.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:31.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:31.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:31.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8443ms +2024-05-24 20:13:32.751 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:32.752 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:32.783 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:32.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0546ms +2024-05-24 20:13:33.307 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:33.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:33.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:33.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6906ms +2024-05-24 20:13:46.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:46.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:46.284 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:46.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7031ms +2024-05-24 20:13:46.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:46.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:46.911 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:46.911 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.961ms +2024-05-24 20:13:47.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:47.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:47.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:47.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1576ms +2024-05-24 20:13:48.311 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:13:48.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:48.339 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:13:48.339 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0957ms +2024-05-24 20:14:01.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:01.258 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:01.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:01.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1373ms +2024-05-24 20:14:01.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:01.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:01.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:01.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3414ms +2024-05-24 20:14:02.746 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:02.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:02.776 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:02.776 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0136ms +2024-05-24 20:14:03.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:03.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:03.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:03.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.166ms +2024-05-24 20:14:16.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:16.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:16.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:16.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8813ms +2024-05-24 20:14:16.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:16.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:16.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:16.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0609ms +2024-05-24 20:14:31.463 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:31.463 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:31.493 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:31.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7179ms +2024-05-24 20:14:46.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:14:46.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:46.419 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:14:46.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1529ms +2024-05-24 20:15:01.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:01.387 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:01.433 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:01.433 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.2739ms +2024-05-24 20:15:10.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:10.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:10.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:10.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3068ms +2024-05-24 20:15:10.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:10.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:10.615 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:10.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.7613ms +2024-05-24 20:15:25.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:25.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:25.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:25.792 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 219.0567ms +2024-05-24 20:15:40.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:40.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:40.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:40.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0459ms +2024-05-24 20:15:54.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:54.137 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:54.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:54.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3902ms +2024-05-24 20:15:54.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:15:54.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:54.207 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:15:54.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8248ms +2024-05-24 20:16:09.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:16:09.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:09.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:09.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6877ms +2024-05-24 20:16:24.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:16:24.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:24.211 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:24.212 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.6846ms +2024-05-24 20:16:39.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:16:39.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:39.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:39.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1084ms +2024-05-24 20:16:54.171 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:16:54.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:54.217 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:16:54.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.64ms +2024-05-24 20:17:09.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:17:09.176 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:09.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:09.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 135.257ms +2024-05-24 20:17:24.185 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:17:24.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:24.218 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:24.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.202ms +2024-05-24 20:17:39.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:17:39.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:39.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:39.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6769ms +2024-05-24 20:17:54.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:17:54.181 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:54.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:17:54.211 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6473ms +2024-05-24 20:18:09.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:18:09.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:09.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:09.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4863ms +2024-05-24 20:18:24.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:18:24.180 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:24.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:24.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6895ms +2024-05-24 20:18:39.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:18:39.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:39.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:39.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9211ms +2024-05-24 20:18:54.175 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:18:54.175 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:54.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:18:54.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 140.5609ms +2024-05-24 20:19:09.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:09.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:09.450 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:09.451 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 278.076ms +2024-05-24 20:19:21.256 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:21.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:21.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:21.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 65.6547ms +2024-05-24 20:19:21.420 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:21.421 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:21.461 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:21.466 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.5979ms +2024-05-24 20:19:24.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:24.225 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:24.279 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:24.285 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 65.5125ms +2024-05-24 20:19:30.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:30.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:30.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:30.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9247ms +2024-05-24 20:19:30.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:30.318 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:30.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:30.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0155ms +2024-05-24 20:19:45.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:45.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:45.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:45.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3982ms +2024-05-24 20:19:47.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:47.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:47.171 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:47.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7371ms +2024-05-24 20:19:47.189 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:19:47.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:47.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:19:47.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9615ms +2024-05-24 20:20:00.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:00.322 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:00.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:00.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.7943ms +2024-05-24 20:20:02.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:02.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:02.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:02.207 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6062ms +2024-05-24 20:20:15.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:15.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:15.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:15.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7002ms +2024-05-24 20:20:17.174 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:17.174 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:17.210 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:17.210 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9358ms +2024-05-24 20:20:30.312 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:30.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:30.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:30.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2527ms +2024-05-24 20:20:32.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:32.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:32.209 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:32.209 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5917ms +2024-05-24 20:20:45.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:45.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:45.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:45.343 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4825ms +2024-05-24 20:20:47.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:20:47.179 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:47.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:20:47.218 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.972ms +2024-05-24 20:21:00.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:00.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:00.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:00.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0636ms +2024-05-24 20:21:02.178 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:02.178 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:02.208 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:02.208 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4242ms +2024-05-24 20:21:07.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:07.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:07.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:07.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.852ms +2024-05-24 20:21:07.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:07.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:08.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:08.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6648ms +2024-05-24 20:21:22.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:22.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:22.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:22.690 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4923ms +2024-05-24 20:21:37.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:37.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:37.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:37.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.239ms +2024-05-24 20:21:52.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:21:52.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:52.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:21:52.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.9344ms +2024-05-24 20:22:07.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:07.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:07.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:07.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9498ms +2024-05-24 20:22:16.721 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:16.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:16.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:16.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2826ms +2024-05-24 20:22:16.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:16.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:16.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:16.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3602ms +2024-05-24 20:22:22.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:22.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:22.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:22.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.782ms +2024-05-24 20:22:31.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:31.762 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:31.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:31.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7977ms +2024-05-24 20:22:37.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:37.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:37.695 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:37.696 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.1332ms +2024-05-24 20:22:37.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:37.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:37.975 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:37.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7612ms +2024-05-24 20:22:38.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:38.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:38.048 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:38.051 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.0471ms +2024-05-24 20:22:45.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:45.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:45.319 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:45.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0989ms +2024-05-24 20:22:45.371 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:45.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:45.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:45.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.6559ms +2024-05-24 20:22:46.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:46.757 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:46.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:46.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 47.4897ms +2024-05-24 20:22:48.973 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:48.973 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:49.003 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:49.003 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1281ms +2024-05-24 20:22:49.038 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:49.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:49.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:49.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.697ms +2024-05-24 20:22:52.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:52.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:52.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:52.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3221ms +2024-05-24 20:22:52.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:52.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:53.015 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:53.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4675ms +2024-05-24 20:22:55.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:55.064 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:55.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:55.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0744ms +2024-05-24 20:22:55.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:55.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:55.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:55.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.778ms +2024-05-24 20:22:56.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:56.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:57.005 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:57.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.5429ms +2024-05-24 20:22:57.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:57.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:57.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:57.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3366ms +2024-05-24 20:22:58.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:58.198 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:58.228 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:58.228 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6727ms +2024-05-24 20:22:58.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:22:58.238 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:58.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:22:58.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2762ms +2024-05-24 20:23:00.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:00.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:00.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:00.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8125ms +2024-05-24 20:23:01.770 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:01.770 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.795 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:01.795 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.805 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.806 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8689ms +2024-05-24 20:23:01.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2032ms +2024-05-24 20:23:01.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:01.841 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.872 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:01.873 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7784ms +2024-05-24 20:23:04.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:04.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9694ms +2024-05-24 20:23:04.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:04.488 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9976ms +2024-05-24 20:23:04.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:04.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:04.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.7107ms +2024-05-24 20:23:06.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:06.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:06.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:06.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7795ms +2024-05-24 20:23:06.086 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:06.088 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:06.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:06.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.9259ms +2024-05-24 20:23:07.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:07.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:07.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:07.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.4174ms +2024-05-24 20:23:07.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:07.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:08.017 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:08.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9621ms +2024-05-24 20:23:10.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:10.690 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:10.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:10.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.5653ms +2024-05-24 20:23:10.739 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:10.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:10.767 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:10.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4011ms +2024-05-24 20:23:25.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:25.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:25.766 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:25.767 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4449ms +2024-05-24 20:23:40.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:40.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:40.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:40.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0045ms +2024-05-24 20:23:54.622 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:54.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:54.654 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:54.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2251ms +2024-05-24 20:23:54.664 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:54.664 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:54.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:54.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9767ms +2024-05-24 20:23:56.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:56.962 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:56.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:56.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1286ms +2024-05-24 20:23:57.004 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:23:57.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:57.035 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:23:57.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.203ms +2024-05-24 20:24:31.659 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:24:31.660 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:31.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:31.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1468ms +2024-05-24 20:24:31.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:24:31.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:31.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:31.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7971ms +2024-05-24 20:24:46.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:24:46.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:46.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:24:46.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.6527ms +2024-05-24 20:25:01.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:25:01.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:01.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:01.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8425ms +2024-05-24 20:25:16.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:25:16.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:16.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:16.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5297ms +2024-05-24 20:25:31.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:25:31.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:31.846 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:31.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 117.4806ms +2024-05-24 20:25:46.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:25:46.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:46.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:25:46.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.665ms +2024-05-24 20:26:01.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:26:01.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:01.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:01.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.9661ms +2024-05-24 20:26:16.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:26:16.729 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:16.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:16.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9262ms +2024-05-24 20:26:44.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:26:44.269 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:44.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:44.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9403ms +2024-05-24 20:26:44.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:26:44.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:44.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:44.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7593ms +2024-05-24 20:26:59.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:26:59.339 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:59.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:26:59.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5307ms +2024-05-24 20:27:14.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:27:14.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:14.363 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:14.363 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7157ms +2024-05-24 20:27:29.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:27:29.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:29.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:29.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8681ms +2024-05-24 20:27:44.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:27:44.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:44.364 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:44.365 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8615ms +2024-05-24 20:27:59.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:27:59.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:59.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:27:59.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2213ms +2024-05-24 20:28:10.753 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:10.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:10.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:10.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3876ms +2024-05-24 20:28:10.788 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:10.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:10.816 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:10.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6235ms +2024-05-24 20:28:25.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:25.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:25.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:25.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4148ms +2024-05-24 20:28:39.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:39.991 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:40.027 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:40.031 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.7013ms +2024-05-24 20:28:40.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:40.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:40.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:40.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7339ms +2024-05-24 20:28:55.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:28:55.037 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:55.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:28:55.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7996ms +2024-05-24 20:29:04.087 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:29:04.088 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:04.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:04.116 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3557ms +2024-05-24 20:29:04.525 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:29:04.526 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:04.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:04.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.329ms +2024-05-24 20:29:19.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:29:19.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:19.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:19.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.7299ms +2024-05-24 20:29:34.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:29:34.123 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:34.150 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:34.150 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3419ms +2024-05-24 20:29:49.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:29:49.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:49.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:29:49.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4403ms +2024-05-24 20:30:04.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:30:04.123 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:04.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:04.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7078ms +2024-05-24 20:30:19.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:30:19.125 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:19.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:19.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.096ms +2024-05-24 20:30:34.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:30:34.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:34.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:34.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8145ms +2024-05-24 20:30:49.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:30:49.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:49.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:30:49.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3172ms +2024-05-24 20:31:04.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:31:04.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:04.164 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:04.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.1083ms +2024-05-24 20:31:19.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:31:19.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:19.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:19.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3927ms +2024-05-24 20:31:34.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:31:34.124 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:34.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:34.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8853ms +2024-05-24 20:31:49.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:31:49.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:49.158 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:31:49.158 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6064ms +2024-05-24 20:32:01.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:01.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:01.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:01.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.3012ms +2024-05-24 20:32:01.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:01.380 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:01.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:01.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 161.7774ms +2024-05-24 20:32:04.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:04.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:04.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:04.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3802ms +2024-05-24 20:32:05.153 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:05.153 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:05.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:05.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8281ms +2024-05-24 20:32:05.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:05.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:05.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:05.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0683ms +2024-05-24 20:32:16.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:16.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:16.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:16.411 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6837ms +2024-05-24 20:32:19.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:19.123 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:19.155 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:19.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1444ms +2024-05-24 20:32:20.191 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:20.192 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:20.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:20.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0947ms +2024-05-24 20:32:31.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:31.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:31.412 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:31.413 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6656ms +2024-05-24 20:32:34.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:34.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:34.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:34.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5033ms +2024-05-24 20:32:35.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:35.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:35.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:35.220 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5084ms +2024-05-24 20:32:46.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:46.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:46.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:46.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4902ms +2024-05-24 20:32:49.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:49.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:49.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:49.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9365ms +2024-05-24 20:32:50.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:32:50.189 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:50.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:32:50.216 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.574ms +2024-05-24 20:33:01.383 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:01.384 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:01.417 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:01.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3411ms +2024-05-24 20:33:04.124 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:04.124 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:04.152 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:04.152 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9446ms +2024-05-24 20:33:05.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:05.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:05.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:05.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7955ms +2024-05-24 20:33:16.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:16.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:16.420 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:16.420 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.5837ms +2024-05-24 20:33:19.125 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:19.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:19.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:19.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8892ms +2024-05-24 20:33:20.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:20.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:20.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:20.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9561ms +2024-05-24 20:33:31.385 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:31.386 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:31.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:31.419 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3878ms +2024-05-24 20:33:34.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:34.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:34.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:34.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4304ms +2024-05-24 20:33:35.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:35.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:35.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:35.229 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9226ms +2024-05-24 20:33:46.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:46.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:46.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:46.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9843ms +2024-05-24 20:33:49.122 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:49.122 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:49.149 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:49.149 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.099ms +2024-05-24 20:33:50.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:33:50.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:50.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:33:50.221 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.444ms +2024-05-24 20:34:01.384 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:01.385 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:01.418 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:01.418 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.0005ms +2024-05-24 20:34:04.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:04.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:04.156 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:04.156 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3795ms +2024-05-24 20:34:05.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:05.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:05.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:05.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.8113ms +2024-05-24 20:34:16.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:16.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:16.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:16.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1604ms +2024-05-24 20:34:19.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:19.126 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:19.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:19.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5632ms +2024-05-24 20:34:20.193 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:20.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:20.224 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:20.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6719ms +2024-05-24 20:34:31.381 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:31.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:31.409 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:31.410 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1017ms +2024-05-24 20:34:34.128 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:34.129 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:34.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:34.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0775ms +2024-05-24 20:34:35.195 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:35.196 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:35.227 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:35.227 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7452ms +2024-05-24 20:34:46.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:46.382 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:46.411 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:46.412 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.79ms +2024-05-24 20:34:49.126 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:49.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:49.158 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:49.159 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2661ms +2024-05-24 20:34:50.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:34:50.195 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:50.226 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:34:50.226 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6004ms +2024-05-24 20:35:01.382 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:01.383 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:01.414 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:01.415 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7384ms +2024-05-24 20:35:04.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:04.124 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:04.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:04.154 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7859ms +2024-05-24 20:35:05.192 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:05.192 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:05.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:05.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9099ms +2024-05-24 20:35:16.379 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:16.379 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:16.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:16.408 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6308ms +2024-05-24 20:35:19.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:19.123 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:19.151 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:19.151 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5687ms +2024-05-24 20:35:20.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:20.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:20.219 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:20.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2231ms +2024-05-24 20:35:29.454 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:29.454 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:29.486 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:29.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1561ms +2024-05-24 20:35:29.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:29.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:29.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:29.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3708ms +2024-05-24 20:35:38.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:35:38.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:38.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:38.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.7791ms +2024-05-24 20:35:44.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:44.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:44.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:44.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1184ms +2024-05-24 20:35:59.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:35:59.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:59.518 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:35:59.518 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8243ms +2024-05-24 20:36:14.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:36:14.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:14.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:14.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9411ms +2024-05-24 20:36:29.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:36:29.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:29.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:29.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8852ms +2024-05-24 20:36:44.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:36:44.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:44.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:44.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8761ms +2024-05-24 20:36:59.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:36:59.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:59.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:36:59.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.8337ms +2024-05-24 20:37:14.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:37:14.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:14.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:14.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7069ms +2024-05-24 20:37:27.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:37:27.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:27.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:27.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.15ms +2024-05-24 20:37:27.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:37:27.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:27.362 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:27.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5689ms +2024-05-24 20:37:29.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:37:29.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:29.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:29.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3882ms +2024-05-24 20:37:42.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:37:42.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:42.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:37:42.362 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1723ms +2024-05-24 20:39:41.521 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:41.521 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:41.551 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:41.552 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8048ms +2024-05-24 20:39:41.597 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:41.602 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:41.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:41.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.196ms +2024-05-24 20:39:44.860 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:39:44.861 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:44.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:44.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.9737ms +2024-05-24 20:39:46.103 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:46.104 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:46.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:46.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7812ms +2024-05-24 20:39:47.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:39:47.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:47.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:47.677 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.0094ms +2024-05-24 20:39:48.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:48.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:48.771 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:48.774 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5608ms +2024-05-24 20:39:52.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:39:52.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:52.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:52.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 27.0254ms +2024-05-24 20:39:54.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:54.484 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:54.510 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:54.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.552ms +2024-05-24 20:39:54.514 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:54.514 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:54.542 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:54.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4641ms +2024-05-24 20:39:56.094 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:39:56.094 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.125 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.9555ms +2024-05-24 20:39:56.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:56.148 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.182 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1242ms +2024-05-24 20:39:56.187 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:56.187 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.968ms +2024-05-24 20:39:56.595 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:39:56.596 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:39:56.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1001ms +2024-05-24 20:40:09.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:40:09.511 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:09.540 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:09.540 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7027ms +2024-05-24 20:40:11.194 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:40:11.194 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:11.221 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:11.222 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3446ms +2024-05-24 20:40:11.591 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:40:11.592 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:11.621 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:40:11.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8379ms +2024-05-24 20:41:06.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:41:06.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:06.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:06.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0364ms +2024-05-24 20:41:06.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:41:06.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:06.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:06.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.959ms +2024-05-24 20:41:07.853 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:41:07.853 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:07.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:07.884 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.7816ms +2024-05-24 20:41:09.200 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 20:41:09.201 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:09.230 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:09.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.44ms +2024-05-24 20:41:21.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:41:21.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:21.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:21.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5078ms +2024-05-24 20:41:36.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:41:36.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:36.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:36.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8293ms +2024-05-24 20:41:51.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:41:51.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:51.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:41:51.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7168ms +2024-05-24 20:42:06.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:42:06.137 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:06.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:06.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0893ms +2024-05-24 20:42:21.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:42:21.135 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:21.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:21.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6488ms +2024-05-24 20:42:36.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:42:36.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:36.159 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:36.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6925ms +2024-05-24 20:42:51.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:42:51.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:51.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:42:51.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9074ms +2024-05-24 20:43:06.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:43:06.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:06.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:06.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1797ms +2024-05-24 20:43:21.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:43:21.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:21.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:21.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5219ms +2024-05-24 20:43:36.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:43:36.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:36.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:36.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4396ms +2024-05-24 20:43:51.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:43:51.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:51.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:43:51.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5349ms +2024-05-24 20:44:06.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:44:06.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:06.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:06.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6645ms +2024-05-24 20:44:21.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:44:21.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:21.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:21.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1999ms +2024-05-24 20:44:36.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:44:36.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:36.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:36.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4981ms +2024-05-24 20:44:51.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:44:51.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:51.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:44:51.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7467ms +2024-05-24 20:45:06.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:45:06.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:06.159 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:06.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8127ms +2024-05-24 20:45:21.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:45:21.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:21.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:21.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3203ms +2024-05-24 20:45:36.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:45:36.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:36.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:36.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2975ms +2024-05-24 20:45:51.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:45:51.131 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:51.160 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:45:51.160 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2834ms +2024-05-24 20:46:06.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:46:06.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:06.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:06.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3551ms +2024-05-24 20:46:21.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:46:21.128 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:21.154 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:21.155 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.691ms +2024-05-24 20:46:36.133 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:46:36.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:36.163 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:36.163 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9953ms +2024-05-24 20:46:51.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:46:51.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:51.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:46:51.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.9668ms +2024-05-24 20:47:06.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:47:06.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:06.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:06.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.592ms +2024-05-24 20:47:21.132 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:47:21.133 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:21.164 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:21.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0362ms +2024-05-24 20:47:36.131 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:47:36.132 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:36.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:47:36.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7624ms +2024-05-24 20:47:42.466 +02:00 [INF] Deregistering a service [id: notifications-service:b184870af9ca41c8978cd70e5af464d3] from Consul... +2024-05-24 20:47:42.469 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:b184870af9ca41c8978cd70e5af464d3" +2024-05-24 20:47:42.470 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:b184870af9ca41c8978cd70e5af464d3 +2024-05-24 20:47:42.470 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:b184870af9ca41c8978cd70e5af464d3 +2024-05-24 20:47:42.507 +02:00 [INF] Received HTTP response headers after 36.389ms - 200 +2024-05-24 20:47:42.508 +02:00 [INF] End processing HTTP request after 38.3212ms - 200 +2024-05-24 20:47:42.509 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 20:47:42.511 +02:00 [INF] Deregistered a service [id: notifications-service:b184870af9ca41c8978cd70e5af464d3] from Consul. +2024-05-24 20:57:54.941 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 20:57:54.989 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 20:57:55.047 +02:00 [INF] Registering a service [id: notifications-service:088ecfe3daac45aca0dfe122ae565a3d] in Consul... +2024-05-24 20:57:55.064 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 20:57:55.068 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 20:57:55.069 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 20:57:55.091 +02:00 [INF] Received HTTP response headers after 19.8904ms - 200 +2024-05-24 20:57:55.092 +02:00 [INF] End processing HTTP request after 24.8844ms - 200 +2024-05-24 20:57:55.094 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 20:57:55.095 +02:00 [INF] Registered a service [id: notifications-service:088ecfe3daac45aca0dfe122ae565a3d] in Consul. +2024-05-24 20:57:55.101 +02:00 [INF] Deregistering a service [id: notifications-service:088ecfe3daac45aca0dfe122ae565a3d] from Consul... +2024-05-24 20:57:55.102 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:088ecfe3daac45aca0dfe122ae565a3d" +2024-05-24 20:57:55.102 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:088ecfe3daac45aca0dfe122ae565a3d +2024-05-24 20:57:55.102 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:088ecfe3daac45aca0dfe122ae565a3d +2024-05-24 20:57:55.105 +02:00 [INF] Received HTTP response headers after 2.932ms - 200 +2024-05-24 20:57:55.106 +02:00 [INF] End processing HTTP request after 3.7305ms - 200 +2024-05-24 20:57:55.106 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 20:57:55.107 +02:00 [INF] Deregistered a service [id: notifications-service:088ecfe3daac45aca0dfe122ae565a3d] from Consul. +2024-05-24 20:58:02.298 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 20:58:02.349 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 20:58:02.405 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 20:58:02.467 +02:00 [INF] Registering a service [id: notifications-service:08ea32d713694526bbb517b7c5b61b73] in Consul... +2024-05-24 20:58:02.487 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 20:58:02.491 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 20:58:02.491 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 20:58:02.499 +02:00 [INF] Received HTTP response headers after 5.3956ms - 200 +2024-05-24 20:58:02.500 +02:00 [INF] End processing HTTP request after 9.6827ms - 200 +2024-05-24 20:58:02.503 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 20:58:02.504 +02:00 [INF] Registered a service [id: notifications-service:08ea32d713694526bbb517b7c5b61b73] in Consul. +2024-05-24 20:58:02.510 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 20:58:02.521 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 20:58:02.524 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 20:58:02.527 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 20:58:02.530 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 20:58:02.533 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 20:58:02.538 +02:00 [INF] Removed 0 old notifications. +2024-05-24 20:58:02.538 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 20:58:02.538 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 20:58:02.540 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 20:58:06.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:58:06.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:06.299 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:06.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 142.1992ms +2024-05-24 20:58:19.527 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:58:19.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:19.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:19.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1964ms +2024-05-24 20:58:19.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:58:19.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:19.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:19.616 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.3032ms +2024-05-24 20:58:34.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:58:34.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:34.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:34.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8985ms +2024-05-24 20:58:35.594 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 20:58:35.595 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:35.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:35.625 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.0299ms +2024-05-24 20:58:49.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:58:49.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:49.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:58:49.615 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7046ms +2024-05-24 20:59:04.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:59:04.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:04.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:04.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1899ms +2024-05-24 20:59:19.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:59:19.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:19.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:19.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1167ms +2024-05-24 20:59:34.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:59:34.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:34.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:34.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0069ms +2024-05-24 20:59:49.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 20:59:49.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:49.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 20:59:49.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3149ms +2024-05-24 21:01:12.906 +02:00 [INF] Deregistering a service [id: notifications-service:08ea32d713694526bbb517b7c5b61b73] from Consul... +2024-05-24 21:01:12.907 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:08ea32d713694526bbb517b7c5b61b73" +2024-05-24 21:01:12.907 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:08ea32d713694526bbb517b7c5b61b73 +2024-05-24 21:01:12.907 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:08ea32d713694526bbb517b7c5b61b73 +2024-05-24 21:01:12.921 +02:00 [INF] Received HTTP response headers after 14.0271ms - 200 +2024-05-24 21:01:12.922 +02:00 [INF] End processing HTTP request after 14.5758ms - 200 +2024-05-24 21:01:12.922 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:01:12.923 +02:00 [INF] Deregistered a service [id: notifications-service:08ea32d713694526bbb517b7c5b61b73] from Consul. +2024-05-24 21:01:19.057 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:01:19.113 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:01:19.167 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:01:19.231 +02:00 [INF] Registering a service [id: notifications-service:45a5430dcadb4b5085aa5815d92b9b9d] in Consul... +2024-05-24 21:01:19.251 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:01:19.255 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:01:19.256 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:01:19.268 +02:00 [INF] Received HTTP response headers after 8.9725ms - 200 +2024-05-24 21:01:19.270 +02:00 [INF] End processing HTTP request after 15.0529ms - 200 +2024-05-24 21:01:19.273 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:01:19.274 +02:00 [INF] Registered a service [id: notifications-service:45a5430dcadb4b5085aa5815d92b9b9d] in Consul. +2024-05-24 21:01:19.283 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:01:19.284 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:01:19.285 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:01:19.294 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:01:19.298 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:01:19.301 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:01:19.304 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:01:19.306 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:01:19.308 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:01:19.310 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:01:19.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:01:19.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:19.803 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:19.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 171.4638ms +2024-05-24 21:01:20.862 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:01:20.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:20.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:20.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1894ms +2024-05-24 21:01:34.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:01:34.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:34.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:34.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7004ms +2024-05-24 21:01:49.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:01:49.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:49.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:01:49.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.7939ms +2024-05-24 21:02:04.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:02:04.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:04.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:04.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8876ms +2024-05-24 21:02:19.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:02:19.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:19.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:19.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.9344ms +2024-05-24 21:02:34.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:02:34.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:34.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:34.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7846ms +2024-05-24 21:02:51.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:02:51.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:51.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:51.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.8407ms +2024-05-24 21:02:51.668 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:02:51.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:51.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:51.697 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0145ms +2024-05-24 21:02:54.895 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:02:54.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:54.930 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:02:54.930 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.6246ms +2024-05-24 21:02:56.536 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:02:56.537 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:02:56.633 +02:00 [ERR] There was an error when processing a message with id: '07c9fddfff624802a757eab1fce18618'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:02:56.656 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:02:56.668 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:02:56.678 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 142.1869ms +2024-05-24 21:03:06.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:03:06.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:06.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:06.686 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3562ms +2024-05-24 21:03:21.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:03:21.689 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:21.723 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:21.724 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.7041ms +2024-05-24 21:03:36.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:03:36.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:36.697 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:36.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5749ms +2024-05-24 21:03:51.660 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:03:51.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:51.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:03:51.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8505ms +2024-05-24 21:04:06.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:04:06.667 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:06.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:06.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.0826ms +2024-05-24 21:04:21.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:04:21.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:21.691 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:21.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7767ms +2024-05-24 21:04:36.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:04:36.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:36.685 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:36.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0115ms +2024-05-24 21:04:51.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:04:51.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:51.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:04:51.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6525ms +2024-05-24 21:05:06.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:05:06.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:06.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:06.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5955ms +2024-05-24 21:05:21.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:05:21.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:21.696 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:21.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.2271ms +2024-05-24 21:05:36.666 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:05:36.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:36.701 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:36.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.2728ms +2024-05-24 21:05:51.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:05:51.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:51.699 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:05:51.699 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.0704ms +2024-05-24 21:06:06.655 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:06:06.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:06.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:06.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3336ms +2024-05-24 21:06:21.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:06:21.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:21.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:21.684 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.853ms +2024-05-24 21:06:36.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:06:36.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:36.693 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:36.694 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4811ms +2024-05-24 21:06:51.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:06:51.656 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:51.684 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:06:51.685 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3009ms +2024-05-24 21:07:06.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:07:06.655 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:06.687 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:06.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.227ms +2024-05-24 21:07:21.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:07:21.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:21.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:21.692 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9425ms +2024-05-24 21:07:36.657 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:07:36.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:36.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:36.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2835ms +2024-05-24 21:07:51.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:07:51.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:51.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:07:51.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5517ms +2024-05-24 21:08:06.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:08:06.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:06.682 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:06.682 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5876ms +2024-05-24 21:08:21.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:08:21.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:21.689 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:21.689 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2467ms +2024-05-24 21:08:36.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:08:36.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:36.728 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:08:36.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.169ms +2024-05-24 21:08:46.780 +02:00 [INF] Deregistering a service [id: notifications-service:45a5430dcadb4b5085aa5815d92b9b9d] from Consul... +2024-05-24 21:08:46.780 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:45a5430dcadb4b5085aa5815d92b9b9d" +2024-05-24 21:08:46.781 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:45a5430dcadb4b5085aa5815d92b9b9d +2024-05-24 21:08:46.781 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:45a5430dcadb4b5085aa5815d92b9b9d +2024-05-24 21:08:46.793 +02:00 [INF] Received HTTP response headers after 12.0802ms - 200 +2024-05-24 21:08:46.794 +02:00 [INF] End processing HTTP request after 12.8526ms - 200 +2024-05-24 21:08:46.794 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:08:46.795 +02:00 [INF] Deregistered a service [id: notifications-service:45a5430dcadb4b5085aa5815d92b9b9d] from Consul. +2024-05-24 21:08:54.843 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:08:54.916 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:08:54.979 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:08:55.054 +02:00 [INF] Registering a service [id: notifications-service:9318b7cbca5c4890bde739e923a300ef] in Consul... +2024-05-24 21:08:55.082 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:08:55.087 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:08:55.087 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:08:55.100 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:08:55.101 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:08:55.107 +02:00 [INF] Received HTTP response headers after 17.342ms - 200 +2024-05-24 21:08:55.108 +02:00 [INF] End processing HTTP request after 21.9491ms - 200 +2024-05-24 21:08:55.111 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:08:55.112 +02:00 [INF] Registered a service [id: notifications-service:9318b7cbca5c4890bde739e923a300ef] in Consul. +2024-05-24 21:08:55.121 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:08:55.134 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:08:55.136 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:08:55.139 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:08:55.142 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:08:55.144 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:08:55.148 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:08:55.150 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:09:06.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:09:06.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:44.412 +02:00 [WRN] As of ""2024-05-24T19:09:20.8938538+00:00"", the heartbeat has been running for ""00:00:13.6990725"" which is longer than ""00:00:01"". This could be caused by thread pool starvation. +2024-05-24 21:09:44.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:44.922 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38883.8763ms +2024-05-24 21:09:51.403 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:09:51.405 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:51.438 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:51.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.7423ms +2024-05-24 21:09:51.861 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:09:51.864 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:51.895 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:51.896 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7625ms +2024-05-24 21:09:55.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:09:55.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:55.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:09:55.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.4766ms +2024-05-24 21:09:57.226 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:09:57.227 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:09:57.320 +02:00 [ERR] There was an error when processing a message with id: '84998028cc774791b823d65b239e0bee'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:09:57.347 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:09:57.360 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:09:57.370 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 143.7745ms +2024-05-24 21:10:04.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:04.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:04.135 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:04.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0889ms +2024-05-24 21:10:04.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:04.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:04.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:04.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5287ms +2024-05-24 21:10:06.129 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:06.130 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:06.162 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:06.162 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2617ms +2024-05-24 21:10:06.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:06.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:06.204 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:06.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1902ms +2024-05-24 21:10:19.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:19.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:19.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:19.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3863ms +2024-05-24 21:10:21.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:21.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:21.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:21.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.9826ms +2024-05-24 21:10:34.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:34.142 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:34.171 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:34.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5924ms +2024-05-24 21:10:36.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:36.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:36.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:36.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.8908ms +2024-05-24 21:10:37.902 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:37.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:37.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:37.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8457ms +2024-05-24 21:10:38.363 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:38.363 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:38.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:38.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7997ms +2024-05-24 21:10:40.327 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:10:40.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:40.420 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:40.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 93.5854ms +2024-05-24 21:10:49.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:49.147 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:49.177 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:49.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3209ms +2024-05-24 21:10:51.172 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:51.173 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:51.201 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:51.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8261ms +2024-05-24 21:10:52.949 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:10:52.949 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:52.980 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:10:52.980 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2379ms +2024-05-24 21:11:04.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:04.146 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:04.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:04.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.6183ms +2024-05-24 21:11:06.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:06.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:06.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:06.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9017ms +2024-05-24 21:11:07.962 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:07.963 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:07.996 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:07.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5524ms +2024-05-24 21:11:19.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:19.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:19.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:19.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4404ms +2024-05-24 21:11:21.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:21.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:21.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:21.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1732ms +2024-05-24 21:11:22.948 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:22.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:22.989 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:22.989 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.4932ms +2024-05-24 21:11:34.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:34.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:34.175 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:34.175 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4352ms +2024-05-24 21:11:36.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:36.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:36.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:36.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.272ms +2024-05-24 21:11:37.947 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:37.948 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:37.974 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:37.975 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1623ms +2024-05-24 21:11:45.063 +02:00 [INF] Deregistering a service [id: notifications-service:9318b7cbca5c4890bde739e923a300ef] from Consul... +2024-05-24 21:11:45.064 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:9318b7cbca5c4890bde739e923a300ef" +2024-05-24 21:11:45.065 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9318b7cbca5c4890bde739e923a300ef +2024-05-24 21:11:45.065 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:9318b7cbca5c4890bde739e923a300ef +2024-05-24 21:11:45.076 +02:00 [INF] Received HTTP response headers after 11.5299ms - 200 +2024-05-24 21:11:45.077 +02:00 [INF] End processing HTTP request after 11.9297ms - 200 +2024-05-24 21:11:45.077 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:11:45.077 +02:00 [INF] Deregistered a service [id: notifications-service:9318b7cbca5c4890bde739e923a300ef] from Consul. +2024-05-24 21:11:52.058 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:11:52.119 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:11:52.177 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:11:52.258 +02:00 [INF] Registering a service [id: notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c] in Consul... +2024-05-24 21:11:52.276 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:11:52.279 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:11:52.279 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:11:52.291 +02:00 [INF] Received HTTP response headers after 9.4538ms - 200 +2024-05-24 21:11:52.291 +02:00 [INF] End processing HTTP request after 13.4905ms - 200 +2024-05-24 21:11:52.294 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:11:52.295 +02:00 [INF] Registered a service [id: notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c] in Consul. +2024-05-24 21:11:52.302 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:11:52.302 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:11:52.302 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:11:52.310 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:11:52.312 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:11:52.315 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:11:52.318 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:11:52.320 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:11:52.323 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:11:52.324 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:11:52.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:53.035 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:53.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:53.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 161.5019ms +2024-05-24 21:11:53.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:53.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:53.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:53.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1218ms +2024-05-24 21:11:54.028 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:11:54.031 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:11:54.111 +02:00 [ERR] There was an error when processing a message with id: '6b1af94f15a94c86ad95576fba4e34ee'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:11:54.122 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:11:54.132 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:11:54.140 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 111.6662ms +2024-05-24 21:11:55.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:11:55.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:55.174 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:11:55.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3528ms +2024-05-24 21:12:04.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:04.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:04.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:04.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.928ms +2024-05-24 21:12:06.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:06.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:06.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:06.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.823ms +2024-05-24 21:12:19.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:19.146 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:19.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:19.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2847ms +2024-05-24 21:12:19.951 +02:00 [INF] Deregistering a service [id: notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c] from Consul... +2024-05-24 21:12:19.954 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c" +2024-05-24 21:12:19.957 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c +2024-05-24 21:12:19.958 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c +2024-05-24 21:12:19.964 +02:00 [INF] Received HTTP response headers after 5.5567ms - 200 +2024-05-24 21:12:19.965 +02:00 [INF] End processing HTTP request after 7.6173ms - 200 +2024-05-24 21:12:19.965 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:12:19.968 +02:00 [INF] Deregistered a service [id: notifications-service:c47b4ac06f604ea8b9bf481a6f8ff90c] from Consul. +2024-05-24 21:12:27.228 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:12:27.280 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:12:27.331 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:12:27.392 +02:00 [INF] Registering a service [id: notifications-service:52b54615f2ef4062ac08a3ad332b4fb1] in Consul... +2024-05-24 21:12:27.411 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:12:27.415 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:12:27.416 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:12:27.425 +02:00 [INF] Received HTTP response headers after 7.3601ms - 200 +2024-05-24 21:12:27.426 +02:00 [INF] End processing HTTP request after 12.4943ms - 200 +2024-05-24 21:12:27.429 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:12:27.430 +02:00 [INF] Registered a service [id: notifications-service:52b54615f2ef4062ac08a3ad332b4fb1] in Consul. +2024-05-24 21:12:27.437 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:12:27.443 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:12:27.443 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:12:27.448 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:12:27.451 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:12:27.453 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:12:27.455 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:12:27.457 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:12:27.459 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:12:27.461 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:12:34.183 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:34.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:34.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:34.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 186.2553ms +2024-05-24 21:12:36.181 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:36.184 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:36.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:36.217 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9243ms +2024-05-24 21:12:49.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:49.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:49.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:49.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1962ms +2024-05-24 21:12:51.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:12:51.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:51.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:12:51.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6289ms +2024-05-24 21:12:54.879 +02:00 [INF] Deregistering a service [id: notifications-service:52b54615f2ef4062ac08a3ad332b4fb1] from Consul... +2024-05-24 21:12:54.881 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:52b54615f2ef4062ac08a3ad332b4fb1" +2024-05-24 21:12:54.882 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:52b54615f2ef4062ac08a3ad332b4fb1 +2024-05-24 21:12:54.882 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:52b54615f2ef4062ac08a3ad332b4fb1 +2024-05-24 21:12:54.887 +02:00 [INF] Received HTTP response headers after 4.2551ms - 200 +2024-05-24 21:12:54.887 +02:00 [INF] End processing HTTP request after 5.2691ms - 200 +2024-05-24 21:12:54.887 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:12:54.888 +02:00 [INF] Deregistered a service [id: notifications-service:52b54615f2ef4062ac08a3ad332b4fb1] from Consul. +2024-05-24 21:13:01.912 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:13:01.963 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:13:02.012 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:13:02.085 +02:00 [INF] Registering a service [id: notifications-service:8bc7652c598d4f998d9cbef6cfcb3033] in Consul... +2024-05-24 21:13:02.105 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:13:02.108 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:13:02.109 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:13:02.119 +02:00 [INF] Received HTTP response headers after 7.379ms - 200 +2024-05-24 21:13:02.119 +02:00 [INF] End processing HTTP request after 11.8418ms - 200 +2024-05-24 21:13:02.122 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:13:02.123 +02:00 [INF] Registered a service [id: notifications-service:8bc7652c598d4f998d9cbef6cfcb3033] in Consul. +2024-05-24 21:13:02.129 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:13:02.141 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:13:02.142 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:13:02.143 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:13:02.145 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:13:02.148 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:13:02.152 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:13:02.154 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:13:02.156 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:13:02.158 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:13:04.173 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:04.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:04.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:04.316 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 143.6926ms +2024-05-24 21:13:06.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:06.172 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:06.503 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:06.504 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 333.375ms +2024-05-24 21:13:19.144 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:19.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:19.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:19.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.4432ms +2024-05-24 21:13:21.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:21.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:21.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:21.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7185ms +2024-05-24 21:13:31.163 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:31.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:31.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:31.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6241ms +2024-05-24 21:13:31.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:31.549 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:31.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:31.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5222ms +2024-05-24 21:13:33.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:13:33.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:33.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:33.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.8756ms +2024-05-24 21:13:34.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:34.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:34.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:34.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2327ms +2024-05-24 21:13:34.642 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:13:34.644 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:13:34.774 +02:00 [ERR] There was an error when processing a message with id: '8cc8af34e7814c59b8c70d4c6f21e603'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:13:34.820 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:13:34.862 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:13:34.874 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 231.9579ms +2024-05-24 21:13:36.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:36.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:36.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:36.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4887ms +2024-05-24 21:13:49.146 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:49.147 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:49.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:49.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8192ms +2024-05-24 21:13:51.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:13:51.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:51.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:13:51.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9005ms +2024-05-24 21:14:04.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:04.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:04.170 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:04.170 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6651ms +2024-05-24 21:14:06.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:06.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:06.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:06.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8884ms +2024-05-24 21:14:19.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:19.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:19.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:19.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8591ms +2024-05-24 21:14:21.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:21.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:21.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:21.204 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.5047ms +2024-05-24 21:14:34.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:34.142 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:34.171 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:34.171 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2282ms +2024-05-24 21:14:36.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:36.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:36.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:36.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6574ms +2024-05-24 21:14:49.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:49.148 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:49.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:49.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2294ms +2024-05-24 21:14:51.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:14:51.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:51.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:14:51.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2625ms +2024-05-24 21:15:04.145 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:04.147 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:04.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:04.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7226ms +2024-05-24 21:15:06.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:06.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:06.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:06.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2413ms +2024-05-24 21:15:19.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:19.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:19.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:19.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1459ms +2024-05-24 21:15:21.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:21.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:21.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:21.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6196ms +2024-05-24 21:15:34.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:34.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:34.171 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:34.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4404ms +2024-05-24 21:15:36.169 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:36.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:36.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:36.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5282ms +2024-05-24 21:15:49.156 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:49.156 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:49.188 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:49.189 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5157ms +2024-05-24 21:15:51.162 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:15:51.162 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:51.203 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:15:51.205 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.5348ms +2024-05-24 21:16:04.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:04.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:04.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:04.168 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0929ms +2024-05-24 21:16:06.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:06.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:06.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:06.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3371ms +2024-05-24 21:16:19.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:19.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:19.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:19.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4118ms +2024-05-24 21:16:21.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:21.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:21.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:21.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5257ms +2024-05-24 21:16:34.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:34.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:34.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:34.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3621ms +2024-05-24 21:16:36.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:36.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:36.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:36.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1626ms +2024-05-24 21:16:49.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:49.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:49.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:49.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0754ms +2024-05-24 21:16:51.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:16:51.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:51.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:16:51.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8259ms +2024-05-24 21:17:04.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:04.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:04.172 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:04.172 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3443ms +2024-05-24 21:17:06.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:06.167 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:06.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:06.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7044ms +2024-05-24 21:17:19.148 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:19.154 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:19.184 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:19.185 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.2459ms +2024-05-24 21:17:21.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:21.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:21.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:21.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8423ms +2024-05-24 21:17:34.150 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:34.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:34.180 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:34.181 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8664ms +2024-05-24 21:17:36.170 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:36.171 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:36.202 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:36.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8421ms +2024-05-24 21:17:49.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:49.175 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:49.180 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.7101ms +2024-05-24 21:17:51.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:17:51.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:51.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:17:51.193 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5866ms +2024-05-24 21:18:04.141 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:04.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:04.182 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:04.183 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.7914ms +2024-05-24 21:18:06.168 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:06.169 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:06.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:06.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3426ms +2024-05-24 21:18:19.144 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:19.145 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:19.178 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:19.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1419ms +2024-05-24 21:18:21.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:21.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:21.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:21.201 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1612ms +2024-05-24 21:18:34.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:34.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:34.169 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:34.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1888ms +2024-05-24 21:18:36.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:36.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:36.191 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:36.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3253ms +2024-05-24 21:18:49.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:49.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:49.167 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:49.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6336ms +2024-05-24 21:18:51.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:18:51.164 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:51.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:18:51.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2998ms +2024-05-24 21:19:04.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:04.138 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:04.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:04.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8926ms +2024-05-24 21:19:06.166 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:06.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:06.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:06.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2058ms +2024-05-24 21:19:19.144 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:19.145 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:19.176 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:19.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1739ms +2024-05-24 21:19:21.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:21.168 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:21.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:21.196 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4524ms +2024-05-24 21:19:27.896 +02:00 [INF] Deregistering a service [id: notifications-service:8bc7652c598d4f998d9cbef6cfcb3033] from Consul... +2024-05-24 21:19:27.896 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8bc7652c598d4f998d9cbef6cfcb3033" +2024-05-24 21:19:27.897 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8bc7652c598d4f998d9cbef6cfcb3033 +2024-05-24 21:19:27.897 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8bc7652c598d4f998d9cbef6cfcb3033 +2024-05-24 21:19:27.899 +02:00 [INF] Received HTTP response headers after 2.1646ms - 200 +2024-05-24 21:19:27.899 +02:00 [INF] End processing HTTP request after 2.5803ms - 200 +2024-05-24 21:19:27.899 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:19:27.900 +02:00 [INF] Deregistered a service [id: notifications-service:8bc7652c598d4f998d9cbef6cfcb3033] from Consul. +2024-05-24 21:19:45.868 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:19:45.945 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:19:46.008 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:19:46.087 +02:00 [INF] Registering a service [id: notifications-service:4cae8561bae0480bbf6271ee5b65301d] in Consul... +2024-05-24 21:19:46.114 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:19:46.119 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:19:46.120 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:19:46.129 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:19:46.130 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:19:46.140 +02:00 [INF] Received HTTP response headers after 17.8233ms - 200 +2024-05-24 21:19:46.141 +02:00 [INF] End processing HTTP request after 23.2463ms - 200 +2024-05-24 21:19:46.144 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:19:46.146 +02:00 [INF] Registered a service [id: notifications-service:4cae8561bae0480bbf6271ee5b65301d] in Consul. +2024-05-24 21:19:46.153 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:19:46.167 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:19:46.169 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:19:46.172 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:19:46.175 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:19:46.178 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:19:46.183 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:19:46.185 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:19:46.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:46.675 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.787 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 173.5216ms +2024-05-24 21:19:46.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:46.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.845 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.6128ms +2024-05-24 21:19:46.859 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:46.867 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.903 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.904 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.0441ms +2024-05-24 21:19:46.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:46.942 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:46.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.9212ms +2024-05-24 21:19:47.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:47.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2125ms +2024-05-24 21:19:47.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:19:47.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.116 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.117 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9464ms +2024-05-24 21:19:47.390 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:19:47.390 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:19:47.423 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.5451ms +2024-05-24 21:20:01.115 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:20:01.116 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:20:01.195 +02:00 [ERR] There was an error when processing a message with id: 'b7323ef55efa4cd98cdf0f185ae2ff1e'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:20:01.209 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:20:01.220 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:20:01.226 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 110.8258ms +2024-05-24 21:20:01.805 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:01.806 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:01.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:01.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.429ms +2024-05-24 21:20:02.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:02.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:02.108 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:02.109 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7229ms +2024-05-24 21:20:16.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:16.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:16.841 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:16.842 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0821ms +2024-05-24 21:20:17.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:17.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:17.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:17.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3558ms +2024-05-24 21:20:31.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:31.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:31.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:31.849 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.4072ms +2024-05-24 21:20:32.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:32.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:32.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:32.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6531ms +2024-05-24 21:20:46.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:46.804 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:46.833 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:46.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4656ms +2024-05-24 21:20:47.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:20:47.081 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:47.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:20:47.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9329ms +2024-05-24 21:21:01.803 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:01.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:01.835 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:01.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5752ms +2024-05-24 21:21:02.080 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:02.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:02.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:02.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.359ms +2024-05-24 21:21:16.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:16.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:16.844 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:16.846 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1125ms +2024-05-24 21:21:17.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:17.084 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:17.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:17.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9021ms +2024-05-24 21:21:31.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:31.807 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:31.838 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:31.839 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2639ms +2024-05-24 21:21:32.082 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:32.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:32.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:32.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2115ms +2024-05-24 21:21:46.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:46.808 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:46.836 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:46.837 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1657ms +2024-05-24 21:21:47.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:21:47.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:47.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:21:47.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5043ms +2024-05-24 21:22:01.811 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:22:01.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:01.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:01.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.1674ms +2024-05-24 21:22:02.079 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:22:02.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:02.112 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:02.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6769ms +2024-05-24 21:22:33.032 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:22:33.033 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:33.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:33.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4935ms +2024-05-24 21:22:33.123 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:22:33.123 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:33.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:33.167 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.3205ms +2024-05-24 21:22:37.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:22:37.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:37.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:22:37.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.3327ms +2024-05-24 21:22:38.831 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:22:38.831 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:22:38.894 +02:00 [ERR] There was an error when processing a message with id: 'a299b4615a7546b38a7867b9354822a1'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:22:38.896 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:22:38.896 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:22:38.899 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 68.3486ms +2024-05-24 21:24:48.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:24:48.711 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:48.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:48.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5122ms +2024-05-24 21:24:48.799 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:24:48.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:48.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:48.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6206ms +2024-05-24 21:24:51.419 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:24:51.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:51.448 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:51.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6066ms +2024-05-24 21:24:51.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:24:51.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:52.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:24:52.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.9656ms +2024-05-24 21:24:53.085 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:24:53.085 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:24:53.144 +02:00 [ERR] There was an error when processing a message with id: 'b59f54cc1a014575a38d99b521f60623'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:24:53.145 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:24:53.146 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:24:53.149 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 63.5755ms +2024-05-24 21:25:54.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:25:54.166 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:25:54.198 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:25:54.198 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0401ms +2024-05-24 21:25:54.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:25:54.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:25:54.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:25:54.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2202ms +2024-05-24 21:26:07.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:26:07.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:07.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:07.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5625ms +2024-05-24 21:26:07.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:26:07.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:07.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:07.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5264ms +2024-05-24 21:26:09.404 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:26:09.406 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:09.437 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:09.437 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4749ms +2024-05-24 21:26:09.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:26:09.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:09.533 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:09.533 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 27.2537ms +2024-05-24 21:26:11.281 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:26:11.281 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:26:11.341 +02:00 [ERR] There was an error when processing a message with id: '4d7711ed464e4c18bad2affc426dbac7'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:26:11.343 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:26:11.343 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:26:11.347 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 65.8051ms +2024-05-24 21:26:24.257 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:26:24.257 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:24.286 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:24.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3299ms +2024-05-24 21:26:39.299 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:26:39.314 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:39.347 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:26:39.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 48.8756ms +2024-05-24 21:29:46.937 +02:00 [INF] Deregistering a service [id: notifications-service:4cae8561bae0480bbf6271ee5b65301d] from Consul... +2024-05-24 21:29:46.939 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4cae8561bae0480bbf6271ee5b65301d" +2024-05-24 21:29:46.939 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4cae8561bae0480bbf6271ee5b65301d +2024-05-24 21:29:46.939 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4cae8561bae0480bbf6271ee5b65301d +2024-05-24 21:29:46.949 +02:00 [INF] Received HTTP response headers after 9.9707ms - 200 +2024-05-24 21:29:46.949 +02:00 [INF] End processing HTTP request after 10.6307ms - 200 +2024-05-24 21:29:46.950 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:29:46.950 +02:00 [INF] Deregistered a service [id: notifications-service:4cae8561bae0480bbf6271ee5b65301d] from Consul. +2024-05-24 21:29:55.326 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:29:55.378 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:29:55.437 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:29:55.525 +02:00 [INF] Registering a service [id: notifications-service:8aac66612ccf4e35ad2da5547febf369] in Consul... +2024-05-24 21:29:55.551 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:29:55.555 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:29:55.556 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:29:55.568 +02:00 [INF] Received HTTP response headers after 10.1882ms - 200 +2024-05-24 21:29:55.570 +02:00 [INF] End processing HTTP request after 15.5076ms - 200 +2024-05-24 21:29:55.572 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:29:55.572 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:29:55.573 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:29:55.574 +02:00 [INF] Registered a service [id: notifications-service:8aac66612ccf4e35ad2da5547febf369] in Consul. +2024-05-24 21:29:55.580 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:29:55.593 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:29:55.596 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:29:55.599 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:29:55.603 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:29:55.606 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:29:55.609 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:29:55.612 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:31:17.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:17.597 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:17.966 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:17.974 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 430.9421ms +2024-05-24 21:31:17.982 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:17.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:18.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:18.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.0044ms +2024-05-24 21:31:21.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:31:21.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:21.823 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:21.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.6884ms +2024-05-24 21:31:23.227 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:31:23.228 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:31:23.318 +02:00 [ERR] There was an error when processing a message with id: 'f5500adc316d4dda867c1465ea67edb0'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:31:23.331 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:31:23.341 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:31:23.347 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 119.9097ms +2024-05-24 21:31:30.515 +02:00 [INF] Deregistering a service [id: notifications-service:8aac66612ccf4e35ad2da5547febf369] from Consul... +2024-05-24 21:31:30.516 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:8aac66612ccf4e35ad2da5547febf369" +2024-05-24 21:31:30.516 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8aac66612ccf4e35ad2da5547febf369 +2024-05-24 21:31:30.517 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:8aac66612ccf4e35ad2da5547febf369 +2024-05-24 21:31:30.524 +02:00 [INF] Received HTTP response headers after 7.1292ms - 200 +2024-05-24 21:31:30.524 +02:00 [INF] End processing HTTP request after 7.6732ms - 200 +2024-05-24 21:31:30.524 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:31:30.525 +02:00 [INF] Deregistered a service [id: notifications-service:8aac66612ccf4e35ad2da5547febf369] from Consul. +2024-05-24 21:31:36.159 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:31:36.210 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:31:36.268 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:31:36.333 +02:00 [INF] Registering a service [id: notifications-service:54b9e7480fa941e9bf1a1298355c0e7c] in Consul... +2024-05-24 21:31:36.351 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:31:36.354 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:31:36.355 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:31:36.368 +02:00 [INF] Received HTTP response headers after 10.6057ms - 200 +2024-05-24 21:31:36.369 +02:00 [INF] End processing HTTP request after 14.8162ms - 200 +2024-05-24 21:31:36.372 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:31:36.373 +02:00 [INF] Registered a service [id: notifications-service:54b9e7480fa941e9bf1a1298355c0e7c] in Consul. +2024-05-24 21:31:36.379 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:31:36.387 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:31:36.387 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:31:36.388 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:31:36.390 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:31:36.397 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:31:36.399 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:31:36.401 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:31:36.404 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:31:36.406 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:31:45.621 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:45.668 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:45.745 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:45.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 136.7732ms +2024-05-24 21:31:45.772 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:45.776 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:45.811 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:45.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.9274ms +2024-05-24 21:31:47.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:31:47.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.449 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.9948ms +2024-05-24 21:31:47.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:47.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.510 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4383ms +2024-05-24 21:31:47.519 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:31:47.520 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.547 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:31:47.548 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0349ms +2024-05-24 21:31:49.625 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:31:49.626 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:31:49.713 +02:00 [ERR] There was an error when processing a message with id: 'cd934a0189ec4fc1909cfafcb343a2f5'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 21:31:49.725 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{notificationId}' +2024-05-24 21:31:49.735 +02:00 [ERR] Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 690cf281-9342-4dee-bd49-d8eefa51e947 was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 31 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 21:31:49.740 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/690cf281-9342-4dee-bd49-d8eefa51e947 - 400 null application/json 115.2237ms +2024-05-24 21:32:36.352 +02:00 [INF] Deregistering a service [id: notifications-service:54b9e7480fa941e9bf1a1298355c0e7c] from Consul... +2024-05-24 21:32:36.353 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:54b9e7480fa941e9bf1a1298355c0e7c" +2024-05-24 21:32:36.353 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:54b9e7480fa941e9bf1a1298355c0e7c +2024-05-24 21:32:36.353 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:54b9e7480fa941e9bf1a1298355c0e7c +2024-05-24 21:32:36.355 +02:00 [INF] Received HTTP response headers after 1.7158ms - 200 +2024-05-24 21:32:36.356 +02:00 [INF] End processing HTTP request after 2.4855ms - 200 +2024-05-24 21:32:36.356 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:32:36.356 +02:00 [INF] Deregistered a service [id: notifications-service:54b9e7480fa941e9bf1a1298355c0e7c] from Consul. +2024-05-24 21:33:13.636 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:33:13.706 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:33:13.771 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:33:13.840 +02:00 [INF] Registering a service [id: notifications-service:ee5e180353414fafa30ff6e8ef833ed9] in Consul... +2024-05-24 21:33:13.859 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:33:13.862 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:33:13.863 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:33:13.880 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:33:13.881 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:33:13.893 +02:00 [INF] Received HTTP response headers after 28.1268ms - 200 +2024-05-24 21:33:13.894 +02:00 [INF] End processing HTTP request after 32.4774ms - 200 +2024-05-24 21:33:13.897 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:33:13.897 +02:00 [INF] Registered a service [id: notifications-service:ee5e180353414fafa30ff6e8ef833ed9] in Consul. +2024-05-24 21:33:13.904 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:33:13.913 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:33:13.915 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:33:13.918 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:33:13.921 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:33:13.923 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:33:13.926 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:33:13.928 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:33:59.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:33:59.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:33:59.994 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:00.005 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 179.6303ms +2024-05-24 21:34:00.066 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:00.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:00.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:00.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.9314ms +2024-05-24 21:34:02.450 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:02.457 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:02.492 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:02.495 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.3231ms +2024-05-24 21:34:03.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:03.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:03.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:03.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.325ms +2024-05-24 21:34:04.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:34:04.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:04.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:04.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.6113ms +2024-05-24 21:34:15.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:15.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:15.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:15.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9879ms +2024-05-24 21:34:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:30.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:30.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5275ms +2024-05-24 21:34:45.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:34:45.091 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:45.118 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:34:45.119 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.9563ms +2024-05-24 21:35:00.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:35:00.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:00.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:00.098 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6111ms +2024-05-24 21:35:15.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:35:15.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:15.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:15.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3959ms +2024-05-24 21:35:30.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:35:30.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:30.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:35:30.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.099ms +2024-05-24 21:39:56.259 +02:00 [INF] Deregistering a service [id: notifications-service:ee5e180353414fafa30ff6e8ef833ed9] from Consul... +2024-05-24 21:39:56.260 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:ee5e180353414fafa30ff6e8ef833ed9" +2024-05-24 21:39:56.260 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ee5e180353414fafa30ff6e8ef833ed9 +2024-05-24 21:39:56.260 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:ee5e180353414fafa30ff6e8ef833ed9 +2024-05-24 21:39:56.271 +02:00 [INF] Received HTTP response headers after 10.3278ms - 200 +2024-05-24 21:39:56.271 +02:00 [INF] End processing HTTP request after 10.9164ms - 200 +2024-05-24 21:39:56.271 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:39:56.272 +02:00 [INF] Deregistered a service [id: notifications-service:ee5e180353414fafa30ff6e8ef833ed9] from Consul. +2024-05-24 21:40:01.863 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:40:01.920 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:40:01.979 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:40:02.044 +02:00 [INF] Registering a service [id: notifications-service:e200acdfe7304404bf81de6deb94bd26] in Consul... +2024-05-24 21:40:02.062 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:40:02.066 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:40:02.067 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:40:02.079 +02:00 [INF] Received HTTP response headers after 10.2806ms - 200 +2024-05-24 21:40:02.080 +02:00 [INF] End processing HTTP request after 14.8592ms - 200 +2024-05-24 21:40:02.083 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:40:02.084 +02:00 [INF] Registered a service [id: notifications-service:e200acdfe7304404bf81de6deb94bd26] in Consul. +2024-05-24 21:40:02.087 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:40:02.087 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:40:02.090 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:40:02.101 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:40:02.103 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:40:02.104 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:40:02.107 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:40:02.110 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:40:02.112 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:40:02.114 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:40:05.422 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:05.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:05.553 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:05.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 141.8826ms +2024-05-24 21:40:06.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:06.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:06.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:06.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9107ms +2024-05-24 21:40:15.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:15.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:15.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:15.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2753ms +2024-05-24 21:40:17.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:17.003 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:17.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:17.041 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.4111ms +2024-05-24 21:40:17.160 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:17.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:17.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:17.202 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.4373ms +2024-05-24 21:40:18.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:40:18.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:18.928 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:18.928 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.1236ms +2024-05-24 21:40:30.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:30.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:30.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:30.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.838ms +2024-05-24 21:40:42.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:42.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:42.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:42.349 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6441ms +2024-05-24 21:40:42.354 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:42.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:42.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:42.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8826ms +2024-05-24 21:40:45.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:45.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:45.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:45.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9123ms +2024-05-24 21:40:53.720 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:40:53.721 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.1769ms +2024-05-24 21:40:53.756 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:53.756 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.784 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.784 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2493ms +2024-05-24 21:40:53.796 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:40:53.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:40:53.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.302ms +2024-05-24 21:41:00.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:41:00.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:00.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:00.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9188ms +2024-05-24 21:41:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:41:15.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:15.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:15.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3009ms +2024-05-24 21:41:30.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:41:30.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:30.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:30.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4441ms +2024-05-24 21:41:45.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:41:45.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:45.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:41:45.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8955ms +2024-05-24 21:42:00.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:42:00.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:00.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:00.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3013ms +2024-05-24 21:42:15.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:42:15.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:15.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:15.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9866ms +2024-05-24 21:42:30.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:42:30.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:30.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:30.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6572ms +2024-05-24 21:42:45.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:42:45.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:45.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:42:45.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0158ms +2024-05-24 21:43:00.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:43:00.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:00.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:00.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1214ms +2024-05-24 21:43:15.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:43:15.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:15.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:15.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4651ms +2024-05-24 21:43:30.064 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:43:30.065 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:30.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:30.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2775ms +2024-05-24 21:43:45.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:43:45.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:45.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:43:45.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6922ms +2024-05-24 21:44:00.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:44:00.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:00.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:00.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0207ms +2024-05-24 21:44:15.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:44:15.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:15.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:15.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7602ms +2024-05-24 21:44:30.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:44:30.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0992ms +2024-05-24 21:44:45.067 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:44:45.067 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:45.104 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:44:45.105 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.2006ms +2024-05-24 21:45:00.069 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:45:00.070 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:45:00.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:45:00.101 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9002ms +2024-05-24 21:46:30.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:46:30.288 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:30.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:30.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7247ms +2024-05-24 21:46:32.868 +02:00 [INF] Deregistering a service [id: notifications-service:e200acdfe7304404bf81de6deb94bd26] from Consul... +2024-05-24 21:46:32.869 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:e200acdfe7304404bf81de6deb94bd26" +2024-05-24 21:46:32.870 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e200acdfe7304404bf81de6deb94bd26 +2024-05-24 21:46:32.870 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:e200acdfe7304404bf81de6deb94bd26 +2024-05-24 21:46:32.872 +02:00 [INF] Received HTTP response headers after 2.0543ms - 200 +2024-05-24 21:46:32.872 +02:00 [INF] End processing HTTP request after 2.5597ms - 200 +2024-05-24 21:46:32.872 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:46:32.873 +02:00 [INF] Deregistered a service [id: notifications-service:e200acdfe7304404bf81de6deb94bd26] from Consul. +2024-05-24 21:46:48.538 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 21:46:48.609 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 21:46:48.666 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 21:46:48.747 +02:00 [INF] Registering a service [id: notifications-service:4233483f88bc4518a32a5c47eda871eb] in Consul... +2024-05-24 21:46:48.766 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 21:46:48.769 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:46:48.770 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 21:46:48.779 +02:00 [INF] Received HTTP response headers after 6.3119ms - 200 +2024-05-24 21:46:48.781 +02:00 [INF] End processing HTTP request after 11.9971ms - 200 +2024-05-24 21:46:48.784 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 21:46:48.785 +02:00 [INF] Registered a service [id: notifications-service:4233483f88bc4518a32a5c47eda871eb] in Consul. +2024-05-24 21:46:48.789 +02:00 [INF] Removed 0 old notifications. +2024-05-24 21:46:48.790 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 21:46:48.792 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 21:46:48.802 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 21:46:48.806 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 21:46:48.810 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 21:46:48.813 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 21:46:48.817 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 21:46:48.821 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 21:46:48.825 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 21:46:49.014 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:46:49.068 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:49.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:49.178 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 165.2111ms +2024-05-24 21:46:49.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:46:49.213 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:49.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:49.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.2426ms +2024-05-24 21:46:50.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:46:50.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:50.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:50.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.2343ms +2024-05-24 21:46:51.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:46:51.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:51.456 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:46:51.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7512ms +2024-05-24 21:47:00.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:47:00.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:00.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:00.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5874ms +2024-05-24 21:47:15.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:47:15.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:15.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:15.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2009ms +2024-05-24 21:47:30.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:47:30.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:30.095 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:30.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.2649ms +2024-05-24 21:47:45.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:47:45.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:45.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:47:45.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0761ms +2024-05-24 21:48:00.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:48:00.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:00.098 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:00.099 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.9831ms +2024-05-24 21:48:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:48:15.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:15.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:15.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4197ms +2024-05-24 21:48:30.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:48:30.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:30.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:30.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6645ms +2024-05-24 21:48:45.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:48:45.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:45.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:48:45.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6196ms +2024-05-24 21:49:00.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:00.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:00.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:00.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0983ms +2024-05-24 21:49:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:15.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:15.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:15.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3028ms +2024-05-24 21:49:30.329 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:30.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:30.359 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:30.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2156ms +2024-05-24 21:49:31.455 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:31.456 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:31.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:31.486 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2563ms +2024-05-24 21:49:31.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:31.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:31.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5622ms +2024-05-24 21:49:32.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:49:32.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:33.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:33.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 975.1074ms +2024-05-24 21:49:34.961 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - null null +2024-05-24 21:49:34.962 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 21:49:35.282 +02:00 [INF] Deleted notification with id: 690cf281-9342-4dee-bd49-d8eefa51e947. +2024-05-24 21:49:35.283 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 21:49:35.284 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/690cf281-9342-4dee-bd49-d8eefa51e947 - 200 0 null 322.6788ms +2024-05-24 21:49:45.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:45.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:45.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:45.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3376ms +2024-05-24 21:49:46.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:46.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:46.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:46.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8055ms +2024-05-24 21:49:54.041 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:49:54.042 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:54.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:54.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9092ms +2024-05-24 21:49:54.526 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 21:49:54.527 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:54.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:49:54.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.6292ms +2024-05-24 21:50:00.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:00.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:00.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:00.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3053ms +2024-05-24 21:50:01.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:01.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:01.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:01.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1439ms +2024-05-24 21:50:15.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:15.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:15.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:15.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8156ms +2024-05-24 21:50:16.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:16.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:16.537 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:16.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.3357ms +2024-05-24 21:50:30.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:30.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:30.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:30.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2351ms +2024-05-24 21:50:31.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:31.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:31.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:31.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3374ms +2024-05-24 21:50:45.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:45.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:45.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:45.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2478ms +2024-05-24 21:50:46.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:50:46.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:46.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:50:46.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8038ms +2024-05-24 21:51:00.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:00.098 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:00.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:00.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.3579ms +2024-05-24 21:51:01.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:01.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:01.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:01.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5859ms +2024-05-24 21:51:15.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:15.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:15.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:15.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0637ms +2024-05-24 21:51:16.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:16.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:16.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:16.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5919ms +2024-05-24 21:51:30.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:30.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:30.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:30.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1713ms +2024-05-24 21:51:31.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:31.500 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:31.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:31.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.6646ms +2024-05-24 21:51:45.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:45.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:45.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:45.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9241ms +2024-05-24 21:51:46.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:51:46.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:46.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:51:46.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7552ms +2024-05-24 21:52:00.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:00.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:00.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:00.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7085ms +2024-05-24 21:52:01.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:01.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:01.521 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:01.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.694ms +2024-05-24 21:52:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:15.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:15.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:15.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6696ms +2024-05-24 21:52:16.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:16.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:16.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:16.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3559ms +2024-05-24 21:52:30.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:30.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6018ms +2024-05-24 21:52:31.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:31.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:31.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7528ms +2024-05-24 21:52:45.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:45.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:45.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:45.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.2266ms +2024-05-24 21:52:46.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:52:46.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:46.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:52:46.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6441ms +2024-05-24 21:53:00.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:00.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:00.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:00.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6365ms +2024-05-24 21:53:01.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:01.498 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:01.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:01.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9134ms +2024-05-24 21:53:15.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:15.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:15.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:15.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7139ms +2024-05-24 21:53:16.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:16.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:16.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:16.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2511ms +2024-05-24 21:53:30.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:30.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:30.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:30.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5071ms +2024-05-24 21:53:31.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:31.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:31.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:31.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.3333ms +2024-05-24 21:53:45.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:45.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:45.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:45.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4403ms +2024-05-24 21:53:46.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:53:46.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:46.532 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:53:46.532 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8382ms +2024-05-24 21:54:00.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:00.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:00.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:00.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6662ms +2024-05-24 21:54:01.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:01.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:01.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:01.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.4699ms +2024-05-24 21:54:15.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:15.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:15.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:15.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5785ms +2024-05-24 21:54:16.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:16.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:16.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:16.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 62.9212ms +2024-05-24 21:54:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:30.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:30.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7527ms +2024-05-24 21:54:31.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:31.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:31.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:31.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1578ms +2024-05-24 21:54:45.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:45.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:45.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:45.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4947ms +2024-05-24 21:54:46.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:54:46.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:46.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:54:46.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2023ms +2024-05-24 21:55:00.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:00.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:00.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:00.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3974ms +2024-05-24 21:55:01.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:01.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:01.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:01.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5345ms +2024-05-24 21:55:15.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:15.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:15.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:15.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8703ms +2024-05-24 21:55:16.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:16.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:16.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:16.522 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8711ms +2024-05-24 21:55:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:30.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:30.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:30.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0401ms +2024-05-24 21:55:31.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:31.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:31.536 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.5466ms +2024-05-24 21:55:45.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:45.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:45.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:45.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0695ms +2024-05-24 21:55:46.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:55:46.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:46.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:55:46.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.0715ms +2024-05-24 21:56:00.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:00.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:00.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:00.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8312ms +2024-05-24 21:56:01.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:01.499 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:01.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:01.541 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.2203ms +2024-05-24 21:56:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:15.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:15.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:15.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6885ms +2024-05-24 21:56:16.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:16.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:16.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:16.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3776ms +2024-05-24 21:56:30.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:30.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:30.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4634ms +2024-05-24 21:56:31.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:31.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:31.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:31.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4573ms +2024-05-24 21:56:45.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:45.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:45.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:45.093 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8331ms +2024-05-24 21:56:46.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:56:46.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:46.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:56:46.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9027ms +2024-05-24 21:57:00.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:00.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:00.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:00.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8104ms +2024-05-24 21:57:01.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:01.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:01.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:01.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7176ms +2024-05-24 21:57:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:15.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:15.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:15.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4128ms +2024-05-24 21:57:16.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:16.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:16.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:16.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4774ms +2024-05-24 21:57:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:30.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3235ms +2024-05-24 21:57:31.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:31.531 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:31.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.0705ms +2024-05-24 21:57:45.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:45.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:45.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:45.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5281ms +2024-05-24 21:57:46.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:57:46.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:46.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:57:46.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6798ms +2024-05-24 21:58:00.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:00.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:00.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:00.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7286ms +2024-05-24 21:58:01.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:01.500 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:01.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:01.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.147ms +2024-05-24 21:58:15.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:15.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:15.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:15.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.846ms +2024-05-24 21:58:16.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:16.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:16.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:16.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4294ms +2024-05-24 21:58:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:30.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3294ms +2024-05-24 21:58:31.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:31.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:31.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:31.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2207ms +2024-05-24 21:58:45.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:45.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:45.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:45.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7428ms +2024-05-24 21:58:46.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:58:46.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:46.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:58:46.530 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.948ms +2024-05-24 21:59:00.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:00.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:00.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:00.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4401ms +2024-05-24 21:59:01.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:01.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:01.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:01.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8537ms +2024-05-24 21:59:15.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:15.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:15.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:15.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5476ms +2024-05-24 21:59:16.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:16.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:16.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:16.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.832ms +2024-05-24 21:59:30.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:30.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:30.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5334ms +2024-05-24 21:59:31.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:31.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1236ms +2024-05-24 21:59:45.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:45.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:45.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:45.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2859ms +2024-05-24 21:59:46.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 21:59:46.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:46.527 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 21:59:46.528 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2414ms +2024-05-24 22:00:00.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:00.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:00.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:00.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6487ms +2024-05-24 22:00:01.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:01.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:01.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:01.817 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 326.0055ms +2024-05-24 22:00:15.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:15.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:16.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:16.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 1040.3844ms +2024-05-24 22:00:16.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:16.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:16.584 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:16.585 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 90.6688ms +2024-05-24 22:00:30.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:30.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:30.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3341ms +2024-05-24 22:00:31.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:31.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:31.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1736ms +2024-05-24 22:00:45.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:45.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:45.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:45.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5431ms +2024-05-24 22:00:46.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:00:46.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:46.522 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:00:46.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6034ms +2024-05-24 22:01:00.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:00.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:00.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:00.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6073ms +2024-05-24 22:01:01.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:01.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:01.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:01.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0639ms +2024-05-24 22:01:15.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:15.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:15.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:15.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8908ms +2024-05-24 22:01:16.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:16.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:16.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:16.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1686ms +2024-05-24 22:01:30.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:30.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2694ms +2024-05-24 22:01:31.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:31.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:31.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:31.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3047ms +2024-05-24 22:01:45.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:45.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:45.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:45.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2796ms +2024-05-24 22:01:46.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:01:46.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:46.516 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:01:46.517 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.1993ms +2024-05-24 22:02:00.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:00.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:00.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:00.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8534ms +2024-05-24 22:02:01.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:01.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:01.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:01.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1547ms +2024-05-24 22:02:03.691 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:03.691 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:03.719 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:03.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4302ms +2024-05-24 22:02:03.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:03.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:03.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:03.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6548ms +2024-05-24 22:02:05.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:02:05.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:05.173 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:05.173 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.8165ms +2024-05-24 22:02:05.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:05.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:05.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:05.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.2479ms +2024-05-24 22:02:07.355 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c - null null +2024-05-24 22:02:07.355 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 22:02:07.536 +02:00 [INF] Deleted notification with id: 27e81c49-74a8-4dfd-9fef-31b00e828c2c. +2024-05-24 22:02:07.536 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 22:02:07.537 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/27e81c49-74a8-4dfd-9fef-31b00e828c2c - 200 0 null 181.5883ms +2024-05-24 22:02:08.882 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:02:08.882 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:08.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:08.910 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 27.9515ms +2024-05-24 22:02:10.424 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507 - null null +2024-05-24 22:02:10.424 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 22:02:10.578 +02:00 [INF] Deleted notification with id: 221d04bf-5aea-4e42-932c-83e09fe20507. +2024-05-24 22:02:10.578 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 22:02:10.578 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/bf759205-b6b2-4f41-ad79-9ab58ccff882/221d04bf-5aea-4e42-932c-83e09fe20507 - 200 0 null 154.7036ms +2024-05-24 22:02:12.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:02:12.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:12.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:12.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.5314ms +2024-05-24 22:02:12.544 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:02:12.545 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:12.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:12.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 27.0873ms +2024-05-24 22:02:13.387 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:13.388 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:13.421 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:13.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2118ms +2024-05-24 22:02:13.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:02:13.786 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:13.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:13.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.1599ms +2024-05-24 22:02:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:15.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:15.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:15.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4294ms +2024-05-24 22:02:16.504 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:16.505 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:16.536 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:16.537 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0103ms +2024-05-24 22:02:18.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:18.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:18.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:18.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.0487ms +2024-05-24 22:02:21.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:02:21.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:21.827 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:21.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.3755ms +2024-05-24 22:02:22.754 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 22:02:22.754 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:22.903 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 22:02:22.904 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:22.904 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 150.0664ms +2024-05-24 22:02:23.451 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 22:02:23.452 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:23.567 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Unread. +2024-05-24 22:02:23.567 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:23.568 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 116.4628ms +2024-05-24 22:02:23.834 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 22:02:23.834 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:23.957 +02:00 [INF] Updated the status of notification with id: 12e290ed-60d0-463b-a765-13948167e4d8 to: Unread. +2024-05-24 22:02:23.957 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:02:23.957 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - 200 0 null 123.8742ms +2024-05-24 22:02:30.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:30.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:30.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:30.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.9678ms +2024-05-24 22:02:31.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:31.528 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:31.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0965ms +2024-05-24 22:02:33.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:33.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:33.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:33.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7459ms +2024-05-24 22:02:45.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:45.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:45.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:45.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8405ms +2024-05-24 22:02:46.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:46.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:46.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:46.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3503ms +2024-05-24 22:02:48.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:02:48.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:48.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:02:48.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6754ms +2024-05-24 22:03:00.077 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:00.080 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:00.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:00.113 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1051ms +2024-05-24 22:03:01.491 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:01.492 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:01.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:01.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.8443ms +2024-05-24 22:03:03.743 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:03.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:03.798 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:03.798 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.9386ms +2024-05-24 22:03:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:15.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:15.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:15.104 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 49.6418ms +2024-05-24 22:03:16.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:16.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:16.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:16.521 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1042ms +2024-05-24 22:03:18.737 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:18.738 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:18.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:18.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8794ms +2024-05-24 22:03:30.085 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:30.089 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:30.122 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:30.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.1047ms +2024-05-24 22:03:31.494 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:31.495 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:31.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5866ms +2024-05-24 22:03:33.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:33.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:33.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:33.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8085ms +2024-05-24 22:03:45.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:45.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:45.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:45.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1172ms +2024-05-24 22:03:46.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:46.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:46.523 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:46.523 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3261ms +2024-05-24 22:03:48.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:03:48.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:48.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:03:48.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.818ms +2024-05-24 22:04:00.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:00.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:00.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:00.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9623ms +2024-05-24 22:04:01.496 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:01.496 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:01.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:01.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3244ms +2024-05-24 22:04:03.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:03.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:03.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:03.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6204ms +2024-05-24 22:04:15.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:15.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:15.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:15.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4018ms +2024-05-24 22:04:16.497 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:16.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:16.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:16.535 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.3297ms +2024-05-24 22:04:18.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:18.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:18.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:18.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5182ms +2024-05-24 22:04:30.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:30.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:30.093 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:30.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1696ms +2024-05-24 22:04:31.495 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:31.497 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:31.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8661ms +2024-05-24 22:04:33.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:33.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:33.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:33.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.238ms +2024-05-24 22:04:45.055 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:45.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:45.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:45.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7437ms +2024-05-24 22:04:46.498 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:46.501 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:46.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:46.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6232ms +2024-05-24 22:04:48.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:04:48.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:48.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:04:48.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5956ms +2024-05-24 22:05:00.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:00.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:00.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:00.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9398ms +2024-05-24 22:05:01.492 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:01.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:01.520 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:01.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8601ms +2024-05-24 22:05:03.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:03.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:03.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:03.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.1776ms +2024-05-24 22:05:15.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:15.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:15.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:15.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5951ms +2024-05-24 22:05:16.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:16.491 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:16.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:16.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0579ms +2024-05-24 22:05:18.730 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:18.731 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:18.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:18.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.774ms +2024-05-24 22:05:30.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:30.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:30.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:30.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2921ms +2024-05-24 22:05:31.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:31.494 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:31.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:31.527 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8506ms +2024-05-24 22:05:33.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:05:33.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:33.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:05:33.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9873ms +2024-05-24 22:07:06.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:07:06.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:06.096 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:06.096 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.4767ms +2024-05-24 22:07:06.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:07:06.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:06.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:06.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3448ms +2024-05-24 22:07:10.698 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:07:10.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:10.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:10.727 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.3617ms +2024-05-24 22:07:11.815 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - null null +2024-05-24 22:07:11.816 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:07:11.853 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:07:11.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - 200 null application/json 37.9875ms +2024-05-24 22:07:11.856 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 22:07:11.857 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:07:11.990 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 22:07:11.990 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:07:11.991 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 134.3159ms +2024-05-24 22:07:21.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:07:21.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:21.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:21.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1166ms +2024-05-24 22:07:36.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:07:36.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:36.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:36.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6388ms +2024-05-24 22:07:51.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:07:51.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:51.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:07:51.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1571ms +2024-05-24 22:08:06.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:08:06.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:06.133 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:06.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7007ms +2024-05-24 22:08:21.102 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:08:21.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:21.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:21.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1717ms +2024-05-24 22:08:36.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:08:36.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:36.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:36.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1623ms +2024-05-24 22:08:51.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:08:51.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:51.136 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:08:51.136 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.4229ms +2024-05-24 22:09:06.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:09:06.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:06.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:06.131 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5294ms +2024-05-24 22:09:21.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:09:21.098 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:21.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:21.135 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.2424ms +2024-05-24 22:09:36.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:09:36.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:36.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:36.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8674ms +2024-05-24 22:09:51.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:09:51.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:51.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:09:51.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3633ms +2024-05-24 22:10:06.099 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:10:06.099 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:06.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:06.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9566ms +2024-05-24 22:10:21.105 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:10:21.106 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:21.134 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:21.134 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8844ms +2024-05-24 22:10:35.090 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8 - null null +2024-05-24 22:10:35.092 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:10:35.123 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:10:35.123 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8 - 200 null application/json 33.8799ms +2024-05-24 22:10:35.128 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 22:10:35.128 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:10:35.263 +02:00 [INF] Updated the status of notification with id: 12e290ed-60d0-463b-a765-13948167e4d8 to: Read. +2024-05-24 22:10:35.263 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:10:35.263 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - 200 0 null 135.7586ms +2024-05-24 22:10:36.104 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:10:36.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:36.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:36.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 160.852ms +2024-05-24 22:10:39.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:10:39.968 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:39.997 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:39.998 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.195ms +2024-05-24 22:10:41.951 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - null null +2024-05-24 22:10:41.952 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:10:41.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:10:41.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813 - 200 null application/json 33.9798ms +2024-05-24 22:10:41.989 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 22:10:41.989 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:10:42.105 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Read. +2024-05-24 22:10:42.106 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:10:42.106 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 117.1754ms +2024-05-24 22:10:48.724 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:10:48.725 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:48.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:48.757 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.0957ms +2024-05-24 22:10:51.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:10:51.100 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:51.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:10:51.130 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0864ms +2024-05-24 22:11:06.101 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:06.102 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:06.131 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:06.132 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6233ms +2024-05-24 22:11:20.909 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 22:11:20.909 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:21.025 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Unread. +2024-05-24 22:11:21.025 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:21.026 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 117.074ms +2024-05-24 22:11:21.100 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:21.101 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:21.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:21.128 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3502ms +2024-05-24 22:11:21.509 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - application/json null +2024-05-24 22:11:21.509 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:21.626 +02:00 [INF] Updated the status of notification with id: 88be150d-6111-470e-9159-b36b5ed2c813 to: Unread. +2024-05-24 22:11:21.626 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:21.627 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/88be150d-6111-470e-9159-b36b5ed2c813/status - 200 0 null 117.798ms +2024-05-24 22:11:22.024 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - application/json null +2024-05-24 22:11:22.025 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:22.140 +02:00 [INF] Updated the status of notification with id: 12e290ed-60d0-463b-a765-13948167e4d8 to: Unread. +2024-05-24 22:11:22.141 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:11:22.141 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/12e290ed-60d0-463b-a765-13948167e4d8/status - 200 0 null 116.6513ms +2024-05-24 22:11:36.098 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:36.098 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:36.126 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:36.126 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2446ms +2024-05-24 22:11:39.262 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:39.262 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:39.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:39.289 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.61ms +2024-05-24 22:11:39.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:39.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:39.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:39.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.273ms +2024-05-24 22:11:54.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:11:54.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:54.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:11:54.322 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2689ms +2024-05-24 22:12:09.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:12:09.291 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:09.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:09.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0308ms +2024-05-24 22:12:24.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:12:24.293 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:24.321 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:24.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.036ms +2024-05-24 22:12:33.158 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:12:33.158 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:33.184 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:33.184 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 26.1118ms +2024-05-24 22:12:36.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:12:36.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:36.804 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:36.804 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.1668ms +2024-05-24 22:12:37.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:12:37.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:37.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:37.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 33.2247ms +2024-05-24 22:12:39.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:12:39.292 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:39.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:39.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5622ms +2024-05-24 22:12:44.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:12:44.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:44.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:44.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.8417ms +2024-05-24 22:12:54.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:12:54.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:54.318 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:12:54.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.057ms +2024-05-24 22:13:09.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:13:09.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:09.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:09.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0101ms +2024-05-24 22:13:24.301 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:13:24.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:24.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:24.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0284ms +2024-05-24 22:13:39.292 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:13:39.294 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:39.322 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:39.323 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1345ms +2024-05-24 22:13:54.295 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:13:54.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:54.324 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:13:54.324 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5512ms +2024-05-24 22:14:09.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:09.291 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:09.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:09.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.1617ms +2024-05-24 22:14:24.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:24.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:24.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:24.333 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.071ms +2024-05-24 22:14:39.291 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:39.291 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:39.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:39.320 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0973ms +2024-05-24 22:14:49.766 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:49.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:49.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:49.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5067ms +2024-05-24 22:14:49.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:49.803 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:49.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:49.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.388ms +2024-05-24 22:14:52.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:52.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:52.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:52.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.964ms +2024-05-24 22:14:53.324 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:14:53.325 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:53.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:14:53.353 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3185ms +2024-05-24 22:15:04.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:15:04.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:15:04.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:15:04.827 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6375ms +2024-05-24 22:15:08.011 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:15:08.012 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:15:08.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:15:08.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0927ms +2024-05-24 22:18:32.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:18:32.503 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:32.534 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:32.534 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1696ms +2024-05-24 22:18:32.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:18:32.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:32.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:32.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4737ms +2024-05-24 22:18:47.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:18:47.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:47.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:18:47.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4572ms +2024-05-24 22:19:02.584 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:02.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:02.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:02.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4547ms +2024-05-24 22:19:38.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:38.629 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:38.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:38.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9325ms +2024-05-24 22:19:38.715 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:38.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:38.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:38.746 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1597ms +2024-05-24 22:19:48.237 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:19:48.237 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:48.267 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:48.267 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.996ms +2024-05-24 22:19:49.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:49.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:49.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:49.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0441ms +2024-05-24 22:19:50.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:19:50.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:50.115 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:50.115 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 31.3137ms +2024-05-24 22:19:52.941 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:19:52.941 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:52.970 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:52.970 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.4556ms +2024-05-24 22:19:53.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:53.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:53.738 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:53.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7073ms +2024-05-24 22:19:55.009 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:19:55.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:55.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:55.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.7337ms +2024-05-24 22:19:55.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:55.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:55.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:55.652 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1619ms +2024-05-24 22:19:56.748 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 22:19:56.748 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:56.777 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:56.777 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.705ms +2024-05-24 22:19:59.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:19:59.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:59.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:19:59.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6572ms +2024-05-24 22:20:08.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:20:08.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:08.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:08.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5502ms +2024-05-24 22:20:23.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:20:23.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:23.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:23.748 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5685ms +2024-05-24 22:20:38.712 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:20:38.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:38.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:38.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8547ms +2024-05-24 22:20:48.718 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:20:48.720 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:48.753 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:48.753 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 35.5534ms +2024-05-24 22:20:49.357 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:20:49.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:49.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:49.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4684ms +2024-05-24 22:20:50.667 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:20:50.669 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:50.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:50.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.72ms +2024-05-24 22:20:51.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:20:51.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:51.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:51.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.1347ms +2024-05-24 22:20:53.708 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:20:53.708 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:53.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:20:53.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6332ms +2024-05-24 22:21:08.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:21:08.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:08.739 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:08.739 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6665ms +2024-05-24 22:21:23.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:21:23.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:23.750 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:23.750 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.7442ms +2024-05-24 22:21:38.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:21:38.707 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:38.735 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:38.735 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2907ms +2024-05-24 22:21:40.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:21:40.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:40.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:40.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 41.1288ms +2024-05-24 22:21:41.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:21:41.284 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:41.312 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:41.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.075ms +2024-05-24 22:21:42.322 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:21:42.323 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:42.350 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:42.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.4538ms +2024-05-24 22:21:53.710 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:21:53.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:53.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:21:53.740 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1756ms +2024-05-24 22:22:08.709 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:08.709 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:08.746 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:08.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.454ms +2024-05-24 22:22:23.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:23.712 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:23.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:23.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5365ms +2024-05-24 22:22:26.272 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:26.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:26.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:26.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8311ms +2024-05-24 22:22:26.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:26.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:26.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:26.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4197ms +2024-05-24 22:22:27.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:27.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:27.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:27.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3307ms +2024-05-24 22:22:27.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:27.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:27.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:27.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.0335ms +2024-05-24 22:22:41.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:41.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:41.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:41.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.146ms +2024-05-24 22:22:42.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:42.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:42.366 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:42.366 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0442ms +2024-05-24 22:22:56.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:56.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:56.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:56.337 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.423ms +2024-05-24 22:22:57.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:22:57.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:57.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:22:57.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4079ms +2024-05-24 22:23:01.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:23:01.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:01.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:01.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.9535ms +2024-05-24 22:23:02.250 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:02.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:02.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:02.277 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4847ms +2024-05-24 22:23:11.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:11.307 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:11.332 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:11.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.0702ms +2024-05-24 22:23:12.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:12.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:12.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:12.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1163ms +2024-05-24 22:23:18.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - null null +2024-05-24 22:23:18.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:23:18.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:23:18.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - 200 null application/json 29.3818ms +2024-05-24 22:23:18.712 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - application/json null +2024-05-24 22:23:18.713 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:23:18.851 +02:00 [INF] Updated the status of notification with id: 53765ae4-e089-41b1-8cd4-df5871fe2df4 to: Read. +2024-05-24 22:23:18.852 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 22:23:18.853 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4/status - 200 0 null 140.8154ms +2024-05-24 22:23:26.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:26.312 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:26.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:26.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6874ms +2024-05-24 22:23:27.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:27.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:27.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:27.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6828ms +2024-05-24 22:23:27.714 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:23:27.715 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:27.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:27.742 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 27.1705ms +2024-05-24 22:23:29.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:29.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:29.275 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:29.276 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2901ms +2024-05-24 22:23:34.398 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:23:34.399 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:34.428 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:34.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.883ms +2024-05-24 22:23:34.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:34.857 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:34.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:34.890 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.9186ms +2024-05-24 22:23:35.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:23:35.228 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:35.257 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:35.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.0909ms +2024-05-24 22:23:36.310 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:36.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:36.337 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:36.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0395ms +2024-05-24 22:23:36.879 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:23:36.880 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:36.909 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:36.909 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.6093ms +2024-05-24 22:23:41.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:41.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:41.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:41.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4801ms +2024-05-24 22:23:42.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:42.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:42.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:42.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3974ms +2024-05-24 22:23:43.641 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:23:43.641 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:43.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:43.671 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.0106ms +2024-05-24 22:23:44.186 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:44.186 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:44.214 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:44.214 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.895ms +2024-05-24 22:23:44.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:23:44.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:44.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:44.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 31.8072ms +2024-05-24 22:23:56.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:56.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:56.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:56.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4338ms +2024-05-24 22:23:57.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:23:57.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:57.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:23:57.369 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8391ms +2024-05-24 22:24:11.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:11.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:11.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:11.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8256ms +2024-05-24 22:24:12.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:12.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:12.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:12.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5126ms +2024-05-24 22:24:26.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:26.302 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:26.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:26.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.56ms +2024-05-24 22:24:27.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:27.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:27.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:27.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.866ms +2024-05-24 22:24:41.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:41.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:41.331 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:41.332 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1694ms +2024-05-24 22:24:42.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:42.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:42.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:42.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2126ms +2024-05-24 22:24:56.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:56.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:56.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:56.345 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9489ms +2024-05-24 22:24:57.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:24:57.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:57.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:24:57.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7124ms +2024-05-24 22:25:11.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:11.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:11.340 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:11.340 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3656ms +2024-05-24 22:25:12.343 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:12.344 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:12.373 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:12.373 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3693ms +2024-05-24 22:25:26.306 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:26.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:26.338 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:26.338 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4934ms +2024-05-24 22:25:27.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:27.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:27.372 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:27.372 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3026ms +2024-05-24 22:25:41.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:41.305 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:41.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:41.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6589ms +2024-05-24 22:25:42.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:42.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:42.369 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:42.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3688ms +2024-05-24 22:25:56.304 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:56.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:56.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:56.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8403ms +2024-05-24 22:25:57.342 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:25:57.343 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:57.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:25:57.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7556ms +2024-05-24 22:26:11.318 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:11.319 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:11.349 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:11.351 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4375ms +2024-05-24 22:26:12.341 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:12.341 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:12.371 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:12.371 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5054ms +2024-05-24 22:26:14.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:26:14.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:15.023 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:15.024 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.9306ms +2024-05-24 22:26:15.672 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:15.672 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:15.698 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:15.698 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9161ms +2024-05-24 22:26:16.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:26:16.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:16.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:16.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.066ms +2024-05-24 22:26:26.308 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:26.308 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:26.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:26.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.089ms +2024-05-24 22:26:27.345 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:27.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:27.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:27.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4686ms +2024-05-24 22:26:41.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:41.304 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:41.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:41.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2193ms +2024-05-24 22:26:42.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:42.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:42.368 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:42.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.508ms +2024-05-24 22:26:56.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:56.310 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:56.343 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:56.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7285ms +2024-05-24 22:26:57.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:26:57.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:57.367 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:26:57.368 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1459ms +2024-05-24 22:27:11.303 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:11.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:11.330 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:11.330 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5519ms +2024-05-24 22:27:12.344 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:12.345 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:12.374 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:12.374 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6539ms +2024-05-24 22:27:22.165 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:22.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:22.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:22.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0916ms +2024-05-24 22:27:22.585 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:22.586 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:22.617 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:22.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8987ms +2024-05-24 22:27:24.548 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:27:24.550 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:24.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:24.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 35.5729ms +2024-05-24 22:27:26.284 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:26.284 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:26.314 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:26.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1863ms +2024-05-24 22:27:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:27:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:26.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 28.6937ms +2024-05-24 22:27:37.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:37.203 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:37.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:37.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9645ms +2024-05-24 22:27:52.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:52.204 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:52.232 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:52.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6485ms +2024-05-24 22:27:57.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:27:57.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:58.020 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:58.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6608ms +2024-05-24 22:27:58.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:27:58.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:58.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:27:58.650 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 39.5942ms +2024-05-24 22:28:00.413 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:28:00.414 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:00.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:00.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.1867ms +2024-05-24 22:28:07.202 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:28:07.202 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:07.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:07.231 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6422ms +2024-05-24 22:28:22.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:28:22.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:22.235 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:22.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9159ms +2024-05-24 22:28:37.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:28:37.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:37.231 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:37.232 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3946ms +2024-05-24 22:28:52.206 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:28:52.207 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:52.244 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:28:52.245 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.0152ms +2024-05-24 22:29:02.978 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:29:02.979 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:03.008 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:03.008 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.8431ms +2024-05-24 22:29:03.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:03.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:03.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:03.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.534ms +2024-05-24 22:29:03.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:29:03.971 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:04.000 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:04.000 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.0292ms +2024-05-24 22:29:07.204 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:07.205 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:07.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:07.235 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0631ms +2024-05-24 22:29:12.205 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:12.206 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:12.234 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:12.236 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5389ms +2024-05-24 22:29:12.249 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:12.249 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:12.277 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:12.278 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9258ms +2024-05-24 22:29:14.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:29:14.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:14.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:14.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.6324ms +2024-05-24 22:29:27.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:27.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:27.266 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:27.266 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9387ms +2024-05-24 22:29:33.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:33.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:33.097 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:33.097 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0385ms +2024-05-24 22:29:33.764 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:29:33.767 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:33.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:33.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.6345ms +2024-05-24 22:29:34.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:34.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:34.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:34.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1418ms +2024-05-24 22:29:42.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:42.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:42.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:42.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6634ms +2024-05-24 22:29:57.239 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:29:57.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:57.268 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:29:57.269 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.359ms +2024-05-24 22:30:12.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:30:12.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:12.272 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:12.273 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7635ms +2024-05-24 22:30:27.240 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:30:27.240 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:27.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:30:27.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:27.498 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:27.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 258.5671ms +2024-05-24 22:30:27.883 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:30:27.883 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:27.932 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:27.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 49.6851ms +2024-05-24 22:30:28.260 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:30:28.260 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:28.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:28.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 119.6896ms +2024-05-24 22:30:32.961 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:32.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 5480.0427ms +2024-05-24 22:30:42.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:30:42.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:42.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:42.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3222ms +2024-05-24 22:30:57.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:30:57.241 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:57.269 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:30:57.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6337ms +2024-05-24 22:31:12.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:31:12.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:12.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:12.271 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6551ms +2024-05-24 22:31:35.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:31:35.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:35.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:35.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0358ms +2024-05-24 22:31:35.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:31:35.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:35.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:35.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6594ms +2024-05-24 22:31:47.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 22:31:47.299 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:47.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:47.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 26.9038ms +2024-05-24 22:31:48.309 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:31:48.309 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:48.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:48.336 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6878ms +2024-05-24 22:31:49.034 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 22:31:49.034 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:49.063 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:49.064 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc - 200 null application/json 30.1487ms +2024-05-24 22:31:50.127 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - null null +2024-05-24 22:31:50.127 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:31:50.157 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 22:31:50.157 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882/53765ae4-e089-41b1-8cd4-df5871fe2df4 - 200 null application/json 30.298ms +2024-05-24 22:31:50.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:31:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:50.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:31:50.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.352ms +2024-05-24 22:32:05.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:32:05.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:05.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:05.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5443ms +2024-05-24 22:32:20.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:32:20.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:20.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:20.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6393ms +2024-05-24 22:32:35.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:32:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:35.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:35.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9934ms +2024-05-24 22:32:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:32:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:50.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:32:50.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6908ms +2024-05-24 22:33:05.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:33:05.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:05.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:05.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4459ms +2024-05-24 22:33:20.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:33:20.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:20.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:20.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6122ms +2024-05-24 22:33:35.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:33:35.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:35.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:35.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4569ms +2024-05-24 22:33:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:33:50.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:50.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:33:50.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4058ms +2024-05-24 22:34:05.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:34:05.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:05.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:05.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0689ms +2024-05-24 22:34:20.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:34:20.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:20.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:20.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6013ms +2024-05-24 22:34:35.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:34:35.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:35.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:35.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5509ms +2024-05-24 22:34:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:34:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:50.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:34:50.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3495ms +2024-05-24 22:35:05.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:35:05.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:35:05.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:35:05.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3466ms +2024-05-24 22:35:20.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 22:35:20.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:35:20.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 22:35:20.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.017ms +2024-05-24 22:35:26.434 +02:00 [INF] Deregistering a service [id: notifications-service:4233483f88bc4518a32a5c47eda871eb] from Consul... +2024-05-24 22:35:26.436 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:4233483f88bc4518a32a5c47eda871eb" +2024-05-24 22:35:26.436 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4233483f88bc4518a32a5c47eda871eb +2024-05-24 22:35:26.437 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:4233483f88bc4518a32a5c47eda871eb +2024-05-24 22:35:26.447 +02:00 [INF] Received HTTP response headers after 10.3398ms - 200 +2024-05-24 22:35:26.447 +02:00 [INF] End processing HTTP request after 11.0021ms - 200 +2024-05-24 22:35:26.447 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 22:35:26.448 +02:00 [INF] Deregistered a service [id: notifications-service:4233483f88bc4518a32a5c47eda871eb] from Consul. +2024-05-24 23:20:47.724 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-24 23:20:47.772 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-24 23:20:47.815 +02:00 [INF] Notification Cleanup Service is running. +2024-05-24 23:20:47.875 +02:00 [INF] Registering a service [id: notifications-service:eef86ac4cb0f47b2813903015c925a09] in Consul... +2024-05-24 23:20:47.892 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-24 23:20:47.895 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 23:20:47.896 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-24 23:20:47.903 +02:00 [INF] Received HTTP response headers after 4.5553ms - 200 +2024-05-24 23:20:47.904 +02:00 [INF] End processing HTTP request after 9.7414ms - 200 +2024-05-24 23:20:47.908 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:20:47.909 +02:00 [INF] Registered a service [id: notifications-service:eef86ac4cb0f47b2813903015c925a09] in Consul. +2024-05-24 23:20:47.917 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-24 23:20:47.930 +02:00 [INF] Removed 0 old notifications. +2024-05-24 23:20:47.931 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-24 23:20:47.932 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-24 23:20:47.934 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-24 23:20:47.936 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-24 23:20:47.939 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-24 23:20:47.942 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-24 23:20:47.945 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-24 23:20:47.947 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-24 23:20:50.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:20:50.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:20:51.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:20:51.146 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 538.8128ms +2024-05-24 23:21:05.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:05.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:05.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:05.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4414ms +2024-05-24 23:21:20.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:20.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:25.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:25.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 4674.2601ms +2024-05-24 23:21:27.167 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:27.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:27.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:27.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.4596ms +2024-05-24 23:21:27.228 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:27.230 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:27.259 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:27.260 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5371ms +2024-05-24 23:21:35.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:35.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:35.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:35.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0068ms +2024-05-24 23:21:39.288 +02:00 [INF] Received a message with ID: '7a2e581f73aa421e887791cd08a32cf0', Correlation ID: '37c47fb0c6d04ce4a26354a086b817ad', timestamp: 1716585699, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-24 23:21:39.288 +02:00 [INF] Received a message with ID: '54ce9cdb3a76402380b50f4c264cf653', Correlation ID: '5d980a5791fd4877b287120dd1ab0959', timestamp: 1716585699, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-24 23:21:39.304 +02:00 [INF] Handling a message: friend_invited with ID: 54ce9cdb3a76402380b50f4c264cf653, Correlation ID: 5d980a5791fd4877b287120dd1ab0959, retry: 0 +2024-05-24 23:21:39.304 +02:00 [INF] Handling a message: friend_request_sent with ID: 7a2e581f73aa421e887791cd08a32cf0, Correlation ID: 37c47fb0c6d04ce4a26354a086b817ad, retry: 0 +2024-05-24 23:21:39.352 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-24 23:21:39.352 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:39.352 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:39.385 +02:00 [INF] Received HTTP response headers after 31.9704ms - 200 +2024-05-24 23:21:39.385 +02:00 [INF] End processing HTTP request after 32.7761ms - 200 +2024-05-24 23:21:39.385 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:21:39.510 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-24 23:21:39.512 +02:00 [INF] Handled a message: friend_request_sent with ID: 7a2e581f73aa421e887791cd08a32cf0, Correlation ID: 37c47fb0c6d04ce4a26354a086b817ad, retry: 0 +2024-05-24 23:21:39.568 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7. +2024-05-24 23:21:39.568 +02:00 [INF] Handled a message: friend_invited with ID: 54ce9cdb3a76402380b50f4c264cf653, Correlation ID: 5d980a5791fd4877b287120dd1ab0959, retry: 0 +2024-05-24 23:21:40.871 +02:00 [INF] Received a message with ID: 'c6b4b2fe6120458fb2806d151bc329bd', Correlation ID: 'af5c0c1f4720465691a7105dfb19d9fd', timestamp: 1716585700, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-24 23:21:40.871 +02:00 [INF] Received a message with ID: '352968fce3e74572be5be1fdee0970ab', Correlation ID: 'e7a608380a054d2a9492ee457f1418fa', timestamp: 1716585700, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-24 23:21:40.872 +02:00 [INF] Handling a message: friend_invited with ID: c6b4b2fe6120458fb2806d151bc329bd, Correlation ID: af5c0c1f4720465691a7105dfb19d9fd, retry: 0 +2024-05-24 23:21:40.885 +02:00 [INF] Handling a message: friend_request_sent with ID: 352968fce3e74572be5be1fdee0970ab, Correlation ID: e7a608380a054d2a9492ee457f1418fa, retry: 0 +2024-05-24 23:21:40.914 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-24 23:21:40.915 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:40.915 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:40.950 +02:00 [INF] Received HTTP response headers after 33.2298ms - 200 +2024-05-24 23:21:40.950 +02:00 [INF] End processing HTTP request after 35.0911ms - 200 +2024-05-24 23:21:40.950 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:21:41.014 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-24 23:21:41.014 +02:00 [INF] Handled a message: friend_request_sent with ID: 352968fce3e74572be5be1fdee0970ab, Correlation ID: e7a608380a054d2a9492ee457f1418fa, retry: 0 +2024-05-24 23:21:41.107 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to 2e69d276-3373-472a-9889-9582d4d93582. +2024-05-24 23:21:41.107 +02:00 [INF] Handled a message: friend_invited with ID: c6b4b2fe6120458fb2806d151bc329bd, Correlation ID: af5c0c1f4720465691a7105dfb19d9fd, retry: 0 +2024-05-24 23:21:42.206 +02:00 [INF] Received a message with ID: '7e116773857b4db8ba04d5641fd5cd07', Correlation ID: 'e6e4affce44a450cb2e49bfc519f680d', timestamp: 1716585702, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-24 23:21:42.206 +02:00 [INF] Received a message with ID: 'db1c959f69e24879bf38cb5e38ef0d95', Correlation ID: '611454522f2440168acb1abc0a4542aa', timestamp: 1716585702, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-24 23:21:42.206 +02:00 [INF] Handling a message: friend_request_sent with ID: db1c959f69e24879bf38cb5e38ef0d95, Correlation ID: 611454522f2440168acb1abc0a4542aa, retry: 0 +2024-05-24 23:21:42.206 +02:00 [INF] Handling a message: friend_invited with ID: 7e116773857b4db8ba04d5641fd5cd07, Correlation ID: e6e4affce44a450cb2e49bfc519f680d, retry: 0 +2024-05-24 23:21:42.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:42.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:42.237 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-24 23:21:42.237 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:42.237 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:21:42.249 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:42.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1672ms +2024-05-24 23:21:42.267 +02:00 [INF] Received HTTP response headers after 29.535ms - 200 +2024-05-24 23:21:42.267 +02:00 [INF] End processing HTTP request after 30.0181ms - 200 +2024-05-24 23:21:42.267 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:21:42.325 +02:00 [INF] Processed friend request sent from bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-24 23:21:42.326 +02:00 [INF] Handled a message: friend_request_sent with ID: db1c959f69e24879bf38cb5e38ef0d95, Correlation ID: 611454522f2440168acb1abc0a4542aa, retry: 0 +2024-05-24 23:21:42.423 +02:00 [INF] Handled invitation sent by bf759205-b6b2-4f41-ad79-9ab58ccff882 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-24 23:21:42.423 +02:00 [INF] Handled a message: friend_invited with ID: 7e116773857b4db8ba04d5641fd5cd07, Correlation ID: e6e4affce44a450cb2e49bfc519f680d, retry: 0 +2024-05-24 23:21:50.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:50.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:50.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:50.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.103ms +2024-05-24 23:21:57.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:21:57.221 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:57.248 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:21:57.249 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5202ms +2024-05-24 23:22:05.579 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:05.581 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:05.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:05.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8825ms +2024-05-24 23:22:12.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:12.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:12.253 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:12.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.293ms +2024-05-24 23:22:20.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:20.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:20.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:20.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0084ms +2024-05-24 23:22:27.219 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:27.219 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:27.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:27.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.6515ms +2024-05-24 23:22:30.010 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:30.010 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:30.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:30.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.448ms +2024-05-24 23:22:30.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:30.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:30.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:30.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8402ms +2024-05-24 23:22:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:35.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:35.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:35.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5692ms +2024-05-24 23:22:36.512 +02:00 [INF] Received a message with ID: '8d29ea3f5dac4e79956b61e0ebcd916b', Correlation ID: '691b42ba11ff42378276030569118a24', timestamp: 1716585756, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-24 23:22:36.515 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 8d29ea3f5dac4e79956b61e0ebcd916b, Correlation ID: 691b42ba11ff42378276030569118a24, retry: 0 +2024-05-24 23:22:36.545 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-24 23:22:36.545 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:22:36.546 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:22:36.576 +02:00 [INF] Received HTTP response headers after 30.3282ms - 200 +2024-05-24 23:22:36.577 +02:00 [INF] End processing HTTP request after 31.3342ms - 200 +2024-05-24 23:22:36.577 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:22:36.578 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-24 23:22:36.578 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:22:36.578 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:22:36.609 +02:00 [INF] Received HTTP response headers after 30.6975ms - 200 +2024-05-24 23:22:36.609 +02:00 [INF] End processing HTTP request after 31.2699ms - 200 +2024-05-24 23:22:36.609 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:22:36.637 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:22:36.672 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:22:36.702 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 8d29ea3f5dac4e79956b61e0ebcd916b, Correlation ID: 691b42ba11ff42378276030569118a24, retry: 0 +2024-05-24 23:22:42.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:42.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:42.251 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:42.251 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1294ms +2024-05-24 23:22:45.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:45.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:45.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:45.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7564ms +2024-05-24 23:22:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:50.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:50.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8799ms +2024-05-24 23:22:57.221 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:22:57.222 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:57.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:22:57.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8438ms +2024-05-24 23:23:00.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:00.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:00.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:00.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3483ms +2024-05-24 23:23:05.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:05.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:05.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:05.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8518ms +2024-05-24 23:23:12.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:12.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:12.243 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:12.243 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1225ms +2024-05-24 23:23:15.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:15.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:15.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:15.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2126ms +2024-05-24 23:23:22.601 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:22.601 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:22.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:22.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6133ms +2024-05-24 23:23:22.636 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:22.637 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:22.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:22.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2516ms +2024-05-24 23:23:28.652 +02:00 [INF] Received a message with ID: '2947d58f59d04bff9e3a79cadcce85a7', Correlation ID: '2414f572e43842649f646d10a151713e', timestamp: 1716585808, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-24 23:23:28.652 +02:00 [INF] Received a message with ID: '7bcc74e7029b4e1f961af6acdec1fb88', Correlation ID: 'ad9bdcfbe616414388ce21042272a103', timestamp: 1716585808, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-24 23:23:28.652 +02:00 [INF] Handling a message: friend_invited with ID: 2947d58f59d04bff9e3a79cadcce85a7, Correlation ID: 2414f572e43842649f646d10a151713e, retry: 0 +2024-05-24 23:23:28.652 +02:00 [INF] Handling a message: friend_request_sent with ID: 7bcc74e7029b4e1f961af6acdec1fb88, Correlation ID: ad9bdcfbe616414388ce21042272a103, retry: 0 +2024-05-24 23:23:28.680 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-24 23:23:28.680 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:23:28.680 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:23:28.709 +02:00 [INF] Received HTTP response headers after 27.8052ms - 200 +2024-05-24 23:23:28.709 +02:00 [INF] End processing HTTP request after 28.4382ms - 200 +2024-05-24 23:23:28.709 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:23:28.775 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-24 23:23:28.776 +02:00 [INF] Handled a message: friend_request_sent with ID: 7bcc74e7029b4e1f961af6acdec1fb88, Correlation ID: ad9bdcfbe616414388ce21042272a103, retry: 0 +2024-05-24 23:23:28.867 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f. +2024-05-24 23:23:28.867 +02:00 [INF] Handled a message: friend_invited with ID: 2947d58f59d04bff9e3a79cadcce85a7, Correlation ID: 2414f572e43842649f646d10a151713e, retry: 0 +2024-05-24 23:23:30.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:30.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:30.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:30.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4692ms +2024-05-24 23:23:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:35.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3866ms +2024-05-24 23:23:37.644 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:37.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:37.675 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:37.675 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7638ms +2024-05-24 23:23:39.729 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - null null +2024-05-24 23:23:39.730 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:39.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:39.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - 200 null application/json 35.5449ms +2024-05-24 23:23:39.769 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d/status - application/json null +2024-05-24 23:23:39.770 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:23:39.926 +02:00 [INF] Updated the status of notification with id: 13caec9a-d32f-46d0-b30a-685b408f4e4d to: Read. +2024-05-24 23:23:39.927 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:23:39.927 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d/status - 200 0 null 157.9249ms +2024-05-24 23:23:45.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:45.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:45.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:45.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.503ms +2024-05-24 23:23:46.353 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - null null +2024-05-24 23:23:46.354 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:46.400 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:46.400 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - 200 null application/json 47.569ms +2024-05-24 23:23:49.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - null null +2024-05-24 23:23:49.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:49.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:49.680 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - 200 null application/json 33.5763ms +2024-05-24 23:23:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:50.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:50.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:50.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.697ms +2024-05-24 23:23:52.207 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - null null +2024-05-24 23:23:52.208 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:52.238 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:52.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - 200 null application/json 30.9943ms +2024-05-24 23:23:52.638 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:23:52.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:52.668 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:23:52.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2606ms +2024-05-24 23:23:56.489 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85 - null null +2024-05-24 23:23:56.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:56.524 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:56.524 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85 - 200 null application/json 35.1627ms +2024-05-24 23:23:56.535 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85/status - application/json null +2024-05-24 23:23:56.536 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:23:56.658 +02:00 [INF] Updated the status of notification with id: c62b9532-90c0-436e-8c9f-69aa396afb85 to: Read. +2024-05-24 23:23:56.658 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:23:56.658 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85/status - 200 0 null 123.367ms +2024-05-24 23:23:59.681 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85 - null null +2024-05-24 23:23:59.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:59.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:23:59.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/c62b9532-90c0-436e-8c9f-69aa396afb85 - 200 null application/json 33.484ms +2024-05-24 23:24:00.054 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:00.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:00.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:00.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.997ms +2024-05-24 23:24:02.423 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - null null +2024-05-24 23:24:02.424 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:24:02.454 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:24:02.455 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f/13caec9a-d32f-46d0-b30a-685b408f4e4d - 200 null application/json 31.8403ms +2024-05-24 23:24:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:05.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:05.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:05.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3389ms +2024-05-24 23:24:07.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:07.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:07.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:07.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7098ms +2024-05-24 23:24:15.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:15.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:15.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:15.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.282ms +2024-05-24 23:24:20.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:20.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:20.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:20.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7995ms +2024-05-24 23:24:22.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:22.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:22.670 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:22.670 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3473ms +2024-05-24 23:24:30.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:30.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:30.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:30.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2349ms +2024-05-24 23:24:35.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:35.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:35.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5164ms +2024-05-24 23:24:37.639 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:37.639 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:37.667 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:37.668 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0412ms +2024-05-24 23:24:45.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:45.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:45.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:45.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.519ms +2024-05-24 23:24:45.147 +02:00 [INF] Received a message with ID: '696c1bdc576c4928bb38fa6301245053', Correlation ID: '2dca260c97b84c71ab2e7fd62ae495b8', timestamp: 1716585885, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-24 23:24:45.147 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 696c1bdc576c4928bb38fa6301245053, Correlation ID: 2dca260c97b84c71ab2e7fd62ae495b8, retry: 0 +2024-05-24 23:24:45.175 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-24 23:24:45.176 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:24:45.176 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:24:45.203 +02:00 [INF] Received HTTP response headers after 26.5963ms - 200 +2024-05-24 23:24:45.203 +02:00 [INF] End processing HTTP request after 27.554ms - 200 +2024-05-24 23:24:45.204 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:24:45.204 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-24 23:24:45.204 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-24 23:24:45.204 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-24 23:24:45.233 +02:00 [INF] Received HTTP response headers after 28.553ms - 200 +2024-05-24 23:24:45.233 +02:00 [INF] End processing HTTP request after 28.994ms - 200 +2024-05-24 23:24:45.233 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:24:45.262 +02:00 [INF] Adding notification to StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:24:45.293 +02:00 [INF] Updated StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:24:45.325 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 696c1bdc576c4928bb38fa6301245053, Correlation ID: 2dca260c97b84c71ab2e7fd62ae495b8, retry: 0 +2024-05-24 23:24:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:50.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:50.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0865ms +2024-05-24 23:24:52.637 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:24:52.638 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:52.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:24:52.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6669ms +2024-05-24 23:25:00.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:00.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:00.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:00.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0292ms +2024-05-24 23:25:02.812 +02:00 [INF] Received a message with ID: '53a84a02375e4395bb48beda08756754', Correlation ID: 'ae1882f1c4c642c9a3f29047208a5ff4', timestamp: 1716585902, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-24 23:25:02.813 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 53a84a02375e4395bb48beda08756754, Correlation ID: ae1882f1c4c642c9a3f29047208a5ff4, retry: 0 +2024-05-24 23:25:02.839 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882" +2024-05-24 23:25:02.839 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:25:02.839 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:25:02.875 +02:00 [INF] Received HTTP response headers after 36.2754ms - 200 +2024-05-24 23:25:02.875 +02:00 [INF] End processing HTTP request after 36.6515ms - 200 +2024-05-24 23:25:02.875 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:25:02.876 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f" +2024-05-24 23:25:02.876 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-24 23:25:02.876 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f +2024-05-24 23:25:02.908 +02:00 [INF] Received HTTP response headers after 31.6306ms - 200 +2024-05-24 23:25:02.908 +02:00 [INF] End processing HTTP request after 32.0229ms - 200 +2024-05-24 23:25:02.909 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:25:02.934 +02:00 [INF] Adding notification to StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:25:02.969 +02:00 [INF] Updated StudentNotifications for UserId=bf759205-b6b2-4f41-ad79-9ab58ccff882 +2024-05-24 23:25:03.003 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 53a84a02375e4395bb48beda08756754, Correlation ID: ae1882f1c4c642c9a3f29047208a5ff4, retry: 0 +2024-05-24 23:25:05.596 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:05.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:05.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:05.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 47.3634ms +2024-05-24 23:25:07.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:07.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:07.686 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:07.687 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.2865ms +2024-05-24 23:25:15.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:15.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:15.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:15.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1169ms +2024-05-24 23:25:20.204 +02:00 [INF] Received a message with ID: 'ec1871fc055d44ba9c7614e44e69ec30', Correlation ID: 'a38ccd8bc7754ba8bbf42119b4a4c717', timestamp: 1716585920, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-24 23:25:20.204 +02:00 [INF] Handling a message: friend_invited with ID: ec1871fc055d44ba9c7614e44e69ec30, Correlation ID: a38ccd8bc7754ba8bbf42119b4a4c717, retry: 0 +2024-05-24 23:25:20.206 +02:00 [INF] Received a message with ID: 'e9fb632f7a254719a9e3a46988ffd19b', Correlation ID: '5a69b6f32bd14754938755e7c7491f4e', timestamp: 1716585920, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-24 23:25:20.206 +02:00 [INF] Handling a message: friend_request_sent with ID: e9fb632f7a254719a9e3a46988ffd19b, Correlation ID: 5a69b6f32bd14754938755e7c7491f4e, retry: 0 +2024-05-24 23:25:20.238 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-24 23:25:20.238 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:20.238 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:20.266 +02:00 [INF] Received HTTP response headers after 27.3088ms - 200 +2024-05-24 23:25:20.266 +02:00 [INF] End processing HTTP request after 27.9232ms - 200 +2024-05-24 23:25:20.266 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:25:20.332 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-24 23:25:20.332 +02:00 [INF] Handled a message: friend_request_sent with ID: e9fb632f7a254719a9e3a46988ffd19b, Correlation ID: 5a69b6f32bd14754938755e7c7491f4e, retry: 0 +2024-05-24 23:25:20.440 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-24 23:25:20.440 +02:00 [INF] Handled a message: friend_invited with ID: ec1871fc055d44ba9c7614e44e69ec30, Correlation ID: a38ccd8bc7754ba8bbf42119b4a4c717, retry: 0 +2024-05-24 23:25:20.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:20.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:20.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:20.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.668ms +2024-05-24 23:25:22.640 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:22.640 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:22.669 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:22.669 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f8d48ed0-acdf-42fc-ac12-6ddfb9135b0f?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.899ms +2024-05-24 23:25:30.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:30.054 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:30.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:30.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6748ms +2024-05-24 23:25:37.188 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:37.188 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:37.247 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:37.248 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.943ms +2024-05-24 23:25:37.254 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:37.254 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:37.282 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:37.283 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5529ms +2024-05-24 23:25:44.016 +02:00 [INF] Received a message with ID: '1db09996a3d94f428358975ba9c7180b', Correlation ID: '21d154463db742ce8faa7ec37ddb10ae', timestamp: 1716585944, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-24 23:25:44.016 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 1db09996a3d94f428358975ba9c7180b, Correlation ID: 21d154463db742ce8faa7ec37ddb10ae, retry: 0 +2024-05-24 23:25:44.045 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-24 23:25:44.045 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:44.045 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:44.072 +02:00 [INF] Received HTTP response headers after 27.4823ms - 200 +2024-05-24 23:25:44.073 +02:00 [INF] End processing HTTP request after 28.1285ms - 200 +2024-05-24 23:25:44.073 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:25:44.073 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-24 23:25:44.073 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-24 23:25:44.073 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-24 23:25:44.112 +02:00 [INF] Received HTTP response headers after 38.6026ms - 200 +2024-05-24 23:25:44.112 +02:00 [INF] End processing HTTP request after 38.9928ms - 200 +2024-05-24 23:25:44.112 +02:00 [INF] End processing HTTP request - "OK" +2024-05-24 23:25:44.142 +02:00 [INF] Adding notification to StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:44.179 +02:00 [INF] Updated StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-24 23:25:44.218 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 1db09996a3d94f428358975ba9c7180b, Correlation ID: 21d154463db742ce8faa7ec37ddb10ae, retry: 0 +2024-05-24 23:25:45.061 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:45.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:45.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:45.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6083ms +2024-05-24 23:25:48.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/418eb74a-3edc-436b-b63d-aae055b5e073 - null null +2024-05-24 23:25:48.676 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:25:48.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:25:48.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/418eb74a-3edc-436b-b63d-aae055b5e073 - 200 null application/json 28.3183ms +2024-05-24 23:25:48.716 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/418eb74a-3edc-436b-b63d-aae055b5e073/status - application/json null +2024-05-24 23:25:48.716 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:25:48.835 +02:00 [INF] Updated the status of notification with id: 418eb74a-3edc-436b-b63d-aae055b5e073 to: Read. +2024-05-24 23:25:48.835 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:25:48.835 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/418eb74a-3edc-436b-b63d-aae055b5e073/status - 200 0 null 119.0479ms +2024-05-24 23:25:50.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:50.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:50.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2954ms +2024-05-24 23:25:52.255 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:25:52.256 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:52.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:25:52.312 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.7665ms +2024-05-24 23:25:56.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/a367f0b1-8879-4912-add6-50867ecaaf6c - null null +2024-05-24 23:25:56.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:25:56.678 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:25:56.678 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/a367f0b1-8879-4912-add6-50867ecaaf6c - 200 null application/json 29.1763ms +2024-05-24 23:25:56.682 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/a367f0b1-8879-4912-add6-50867ecaaf6c/status - application/json null +2024-05-24 23:25:56.682 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:25:56.798 +02:00 [INF] Updated the status of notification with id: a367f0b1-8879-4912-add6-50867ecaaf6c to: Read. +2024-05-24 23:25:56.798 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:25:56.798 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/a367f0b1-8879-4912-add6-50867ecaaf6c/status - 200 0 null 116.1076ms +2024-05-24 23:26:00.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:00.060 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:00.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:00.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.673ms +2024-05-24 23:26:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:05.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:05.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:05.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1038ms +2024-05-24 23:26:07.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:07.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:07.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:07.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.5753ms +2024-05-24 23:26:07.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - null null +2024-05-24 23:26:07.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:07.755 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:07.755 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - 200 null application/json 54.5083ms +2024-05-24 23:26:07.759 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2/status - application/json null +2024-05-24 23:26:07.759 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:07.879 +02:00 [INF] Updated the status of notification with id: 6c3db609-5192-43df-b74d-3265ee2025b2 to: Read. +2024-05-24 23:26:07.880 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:07.880 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2/status - 200 0 null 121.2736ms +2024-05-24 23:26:15.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:15.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:15.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:15.080 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5236ms +2024-05-24 23:26:18.290 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - null null +2024-05-24 23:26:18.290 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:18.346 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:18.347 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - 200 null application/json 56.8121ms +2024-05-24 23:26:18.354 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd/status - application/json null +2024-05-24 23:26:18.355 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:18.473 +02:00 [INF] Updated the status of notification with id: ecaf4ddd-731b-4310-9b35-9171fb2421bd to: Read. +2024-05-24 23:26:18.473 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:18.473 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd/status - 200 0 null 119.6553ms +2024-05-24 23:26:20.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:20.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:20.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:20.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9147ms +2024-05-24 23:26:21.775 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - null null +2024-05-24 23:26:21.775 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:21.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:21.835 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - 200 null application/json 59.4119ms +2024-05-24 23:26:22.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:22.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:22.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:22.304 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.4515ms +2024-05-24 23:26:24.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-24 23:26:24.143 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:24.193 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:24.194 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 50.8456ms +2024-05-24 23:26:24.197 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - application/json null +2024-05-24 23:26:24.197 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:24.332 +02:00 [INF] Updated the status of notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe to: Read. +2024-05-24 23:26:24.332 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:24.332 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - 200 0 null 135.351ms +2024-05-24 23:26:28.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-24 23:26:28.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:28.199 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:28.199 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 59.4884ms +2024-05-24 23:26:30.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:30.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:30.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:30.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.877ms +2024-05-24 23:26:30.713 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - null null +2024-05-24 23:26:30.714 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:30.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:30.770 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - 200 null application/json 57.1481ms +2024-05-24 23:26:30.775 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0/status - application/json null +2024-05-24 23:26:30.775 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:30.901 +02:00 [INF] Updated the status of notification with id: 963c1f13-10f9-42fd-b5c2-c917599a93e0 to: Read. +2024-05-24 23:26:30.901 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:26:30.902 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0/status - 200 0 null 127.1279ms +2024-05-24 23:26:35.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:35.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:35.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:35.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3771ms +2024-05-24 23:26:37.297 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:37.297 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:37.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:37.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 62.2769ms +2024-05-24 23:26:43.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:26:43.362 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:43.420 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:43.421 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 59.4524ms +2024-05-24 23:26:45.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:45.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:45.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:45.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5085ms +2024-05-24 23:26:46.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:26:46.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:46.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:46.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 55.7614ms +2024-05-24 23:26:47.493 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:47.493 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:47.550 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:47.550 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.2347ms +2024-05-24 23:26:48.556 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - null null +2024-05-24 23:26:48.556 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:48.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:26:48.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - 200 null application/json 54.6473ms +2024-05-24 23:26:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:50.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:50.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2696ms +2024-05-24 23:26:52.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:52.251 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:52.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:52.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.1821ms +2024-05-24 23:26:53.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:26:53.814 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:53.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:53.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 69.1385ms +2024-05-24 23:26:54.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:26:54.435 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:54.490 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:26:54.491 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.5267ms +2024-05-24 23:27:00.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:00.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.077 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7469ms +2024-05-24 23:27:00.445 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:00.445 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.499 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.499 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.2127ms +2024-05-24 23:27:00.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:00.511 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.543 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:00.543 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1607ms +2024-05-24 23:27:05.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:05.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:05.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:05.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2611ms +2024-05-24 23:27:15.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:15.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:15.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:15.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4027ms +2024-05-24 23:27:15.509 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:15.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:15.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:15.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.9895ms +2024-05-24 23:27:18.701 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:27:18.701 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:18.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:18.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 59.7858ms +2024-05-24 23:27:20.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:20.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:20.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:20.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7131ms +2024-05-24 23:27:21.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-24 23:27:21.737 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:21.793 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:21.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 57.3074ms +2024-05-24 23:27:24.316 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:27:24.316 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:24.370 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:24.370 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 54.1948ms +2024-05-24 23:27:27.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - null null +2024-05-24 23:27:27.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:27.889 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:27.889 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2 - 200 null application/json 55.8002ms +2024-05-24 23:27:29.374 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:27:29.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:29.435 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:29.435 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 61.8749ms +2024-05-24 23:27:30.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:30.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:30.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:30.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5314ms +2024-05-24 23:27:30.508 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:30.509 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:30.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:30.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.3185ms +2024-05-24 23:27:35.268 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:35.268 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.326 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.2122ms +2024-05-24 23:27:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:35.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.599 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:35.600 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0207ms +2024-05-24 23:27:35.657 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:35.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.0873ms +2024-05-24 23:27:37.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:27:37.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:37.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:37.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.0455ms +2024-05-24 23:27:43.278 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - application/json null +2024-05-24 23:27:43.279 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:43.447 +02:00 [INF] Updated the status of notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe to: Read. +2024-05-24 23:27:43.448 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:43.448 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - 200 0 null 170.1229ms +2024-05-24 23:27:45.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:45.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:45.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:45.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0148ms +2024-05-24 23:27:45.715 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - application/json null +2024-05-24 23:27:45.715 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:45.864 +02:00 [INF] Updated the status of notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe to: Unread. +2024-05-24 23:27:45.864 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:45.865 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - 200 0 null 150.3894ms +2024-05-24 23:27:46.614 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - application/json null +2024-05-24 23:27:46.615 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:46.761 +02:00 [INF] Updated the status of notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe to: Read. +2024-05-24 23:27:46.761 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:27:46.761 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - 200 0 null 146.86ms +2024-05-24 23:27:48.953 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - null null +2024-05-24 23:27:48.954 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:49.014 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:27:49.016 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - 200 null application/json 62.2727ms +2024-05-24 23:27:50.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:50.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:50.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:50.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.969ms +2024-05-24 23:27:50.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:50.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:50.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:50.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4317ms +2024-05-24 23:27:57.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:57.214 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:57.270 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:57.270 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.29ms +2024-05-24 23:27:57.705 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:27:57.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:57.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:57.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 57.139ms +2024-05-24 23:27:58.518 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:27:58.519 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:58.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:58.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.8786ms +2024-05-24 23:27:59.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:27:59.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:59.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:27:59.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.5385ms +2024-05-24 23:28:00.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:00.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:00.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:00.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4471ms +2024-05-24 23:28:00.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:28:00.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:00.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:00.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 60.4983ms +2024-05-24 23:28:02.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:28:02.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:02.164 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:02.164 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 53.4778ms +2024-05-24 23:28:02.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:02.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:02.971 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:02.971 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.4649ms +2024-05-24 23:28:04.503 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:28:04.504 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:04.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:04.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 54.4863ms +2024-05-24 23:28:05.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:05.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:05.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:05.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.7765ms +2024-05-24 23:28:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:05.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:05.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2695ms +2024-05-24 23:28:07.040 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-24 23:28:07.040 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:28:07.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:28:07.095 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 54.9254ms +2024-05-24 23:28:15.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:15.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:15.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:15.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4792ms +2024-05-24 23:28:19.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:19.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:19.624 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:19.624 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.3782ms +2024-05-24 23:28:20.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:28:20.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.106 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.106 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 56.9882ms +2024-05-24 23:28:20.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:20.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.2837ms +2024-05-24 23:28:20.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:20.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:20.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1006ms +2024-05-24 23:28:30.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:30.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:30.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.9713ms +2024-05-24 23:28:35.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:35.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:35.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:35.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.5188ms +2024-05-24 23:28:35.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:35.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:35.616 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:35.617 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.3214ms +2024-05-24 23:28:45.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:45.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:45.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:45.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.636ms +2024-05-24 23:28:50.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:50.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:50.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:50.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.9709ms +2024-05-24 23:28:50.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:28:50.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:50.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:28:50.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5232ms +2024-05-24 23:29:00.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:00.046 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:00.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:00.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9712ms +2024-05-24 23:29:05.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:05.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:05.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:05.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.843ms +2024-05-24 23:29:05.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:05.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:05.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:05.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2529ms +2024-05-24 23:29:15.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:15.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:15.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:15.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.27ms +2024-05-24 23:29:20.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:20.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:20.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:20.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.7417ms +2024-05-24 23:29:20.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:20.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:20.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:20.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1236ms +2024-05-24 23:29:30.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:30.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:30.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:30.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6117ms +2024-05-24 23:29:35.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:35.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:35.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:35.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.3771ms +2024-05-24 23:29:35.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:35.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:35.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1486ms +2024-05-24 23:29:45.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:45.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:45.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:45.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6248ms +2024-05-24 23:29:50.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:50.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:50.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:50.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.6343ms +2024-05-24 23:29:50.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:29:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:50.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:29:50.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5256ms +2024-05-24 23:30:00.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:00.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:00.069 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:00.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3585ms +2024-05-24 23:30:05.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:05.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:05.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:05.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.4876ms +2024-05-24 23:30:05.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:05.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:05.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0319ms +2024-05-24 23:30:15.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:15.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:15.070 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:15.070 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3293ms +2024-05-24 23:30:20.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:20.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:20.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:20.391 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.8771ms +2024-05-24 23:30:20.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:20.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:20.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:20.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4249ms +2024-05-24 23:30:30.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:30.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:30.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:30.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.5233ms +2024-05-24 23:30:35.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:35.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:35.397 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:35.398 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 64.3595ms +2024-05-24 23:30:35.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:35.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:35.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4655ms +2024-05-24 23:30:45.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:45.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:45.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:45.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4313ms +2024-05-24 23:30:50.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:50.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:50.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:50.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.9566ms +2024-05-24 23:30:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:30:50.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:50.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:30:50.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4631ms +2024-05-24 23:31:00.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:00.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:00.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:00.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 51.266ms +2024-05-24 23:31:05.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:05.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:05.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:05.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.3073ms +2024-05-24 23:31:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:05.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:05.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:05.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7281ms +2024-05-24 23:31:15.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:15.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:15.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:15.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4356ms +2024-05-24 23:31:20.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:20.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:20.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:20.397 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 60.6999ms +2024-05-24 23:31:20.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:20.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:20.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:20.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1605ms +2024-05-24 23:31:30.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:30.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:30.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:30.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.6027ms +2024-05-24 23:31:35.336 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:35.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:35.403 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:35.403 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 67.7134ms +2024-05-24 23:31:35.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:35.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:35.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:35.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5729ms +2024-05-24 23:31:45.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:45.044 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:45.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:45.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6241ms +2024-05-24 23:31:50.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:50.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:50.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:50.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.1046ms +2024-05-24 23:31:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:31:50.577 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:50.608 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:31:50.608 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6902ms +2024-05-24 23:32:00.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:00.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:00.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:00.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9058ms +2024-05-24 23:32:05.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:05.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:05.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:05.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.7486ms +2024-05-24 23:32:05.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:05.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:05.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:05.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2686ms +2024-05-24 23:32:15.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:15.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:15.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:15.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.0133ms +2024-05-24 23:32:20.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:20.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:20.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:20.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:20.614 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:20.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 281.1824ms +2024-05-24 23:32:20.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:20.920 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 343.3805ms +2024-05-24 23:32:30.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:30.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:30.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:30.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6611ms +2024-05-24 23:32:35.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:35.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:35.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:35.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.0725ms +2024-05-24 23:32:35.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:35.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:35.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:35.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3243ms +2024-05-24 23:32:45.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:45.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:45.077 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:45.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5976ms +2024-05-24 23:32:50.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:50.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:50.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:50.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.6589ms +2024-05-24 23:32:50.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:32:50.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:50.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:32:50.604 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2356ms +2024-05-24 23:33:00.043 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:00.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:00.071 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:00.071 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9093ms +2024-05-24 23:33:05.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:05.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:05.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:05.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.4451ms +2024-05-24 23:33:05.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:05.609 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:05.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1626ms +2024-05-24 23:33:15.052 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:15.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:15.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:15.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7076ms +2024-05-24 23:33:20.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:20.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:20.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:20.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.8126ms +2024-05-24 23:33:20.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:20.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:20.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:20.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6802ms +2024-05-24 23:33:30.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:30.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:30.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:30.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8047ms +2024-05-24 23:33:35.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:35.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:35.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:35.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.4023ms +2024-05-24 23:33:35.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:35.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:35.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:35.610 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.961ms +2024-05-24 23:33:45.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:45.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:45.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:45.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8479ms +2024-05-24 23:33:50.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:50.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:50.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:50.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.8283ms +2024-05-24 23:33:50.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:33:50.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:50.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:33:50.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2785ms +2024-05-24 23:34:00.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:00.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:00.075 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:00.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7566ms +2024-05-24 23:34:05.340 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:05.342 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:05.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:05.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.8998ms +2024-05-24 23:34:05.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:05.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:05.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:05.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1332ms +2024-05-24 23:34:15.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:15.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:15.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:15.072 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5168ms +2024-05-24 23:34:20.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:20.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:20.385 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:20.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.7281ms +2024-05-24 23:34:20.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:20.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:20.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:20.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9302ms +2024-05-24 23:34:24.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:24.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:24.648 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:24.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.5334ms +2024-05-24 23:34:25.319 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:34:25.320 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:25.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:25.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 56.8483ms +2024-05-24 23:34:30.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:30.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:30.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:30.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2811ms +2024-05-24 23:34:35.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:35.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:35.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:35.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.2328ms +2024-05-24 23:34:35.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:35.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:35.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:35.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1939ms +2024-05-24 23:34:45.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:45.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:45.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:45.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6668ms +2024-05-24 23:34:50.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:50.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:50.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:50.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.5603ms +2024-05-24 23:34:50.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:34:50.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:50.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:34:50.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6106ms +2024-05-24 23:35:00.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:00.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:00.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:00.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4134ms +2024-05-24 23:35:05.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:05.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:05.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:05.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.8752ms +2024-05-24 23:35:05.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:05.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:05.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5363ms +2024-05-24 23:35:15.049 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:15.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:15.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:15.082 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4437ms +2024-05-24 23:35:20.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:20.336 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:20.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:20.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 60.9637ms +2024-05-24 23:35:20.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:20.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:20.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:20.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7246ms +2024-05-24 23:35:30.065 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:30.066 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:30.128 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:30.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 63.9659ms +2024-05-24 23:35:35.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:35.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:35.391 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:35.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.7259ms +2024-05-24 23:35:35.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:35.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:35.610 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:35.611 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.638ms +2024-05-24 23:35:45.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:45.049 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:45.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:45.078 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1628ms +2024-05-24 23:35:50.224 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 23:35:50.224 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.255 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.255 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 31.3926ms +2024-05-24 23:35:50.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:50.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.3183ms +2024-05-24 23:35:50.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:35:50.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:35:50.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5522ms +2024-05-24 23:36:00.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:00.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:00.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:00.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9124ms +2024-05-24 23:36:05.338 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:05.338 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:05.395 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:05.395 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.7912ms +2024-05-24 23:36:05.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:05.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:05.604 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:05.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5784ms +2024-05-24 23:36:16.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:16.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:16.847 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:16.847 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.2577ms +2024-05-24 23:36:20.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:20.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:20.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:20.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.664ms +2024-05-24 23:36:20.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:20.570 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:20.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:20.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3924ms +2024-05-24 23:36:30.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:30.052 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:30.079 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:30.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6982ms +2024-05-24 23:36:35.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:35.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:35.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:35.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.4509ms +2024-05-24 23:36:35.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:35.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:35.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7309ms +2024-05-24 23:36:45.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:45.050 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:45.078 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:45.079 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6003ms +2024-05-24 23:36:50.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:50.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:50.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:50.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.3463ms +2024-05-24 23:36:50.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:36:50.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:50.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:36:50.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5768ms +2024-05-24 23:37:00.072 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:00.072 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:00.101 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:00.102 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1285ms +2024-05-24 23:37:05.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:05.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:05.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:05.386 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.9145ms +2024-05-24 23:37:05.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:05.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:05.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:05.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.033ms +2024-05-24 23:37:15.046 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:15.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:15.076 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:15.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3027ms +2024-05-24 23:37:20.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:20.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:20.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:20.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.0041ms +2024-05-24 23:37:20.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:20.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:20.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:20.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2356ms +2024-05-24 23:37:30.042 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:30.043 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:30.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:30.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.1133ms +2024-05-24 23:37:35.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:35.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:35.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:35.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 61.4339ms +2024-05-24 23:37:35.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:35.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:35.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:35.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4036ms +2024-05-24 23:37:45.044 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:45.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:45.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:45.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.695ms +2024-05-24 23:37:50.330 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:50.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:50.384 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:50.385 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.1675ms +2024-05-24 23:37:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:37:50.578 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:50.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:37:50.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2106ms +2024-05-24 23:38:00.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:00.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:00.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:00.075 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8254ms +2024-05-24 23:38:05.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:05.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:05.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:05.389 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.0914ms +2024-05-24 23:38:05.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:05.573 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:05.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:05.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6556ms +2024-05-24 23:38:15.048 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:15.048 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:15.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:15.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5873ms +2024-05-24 23:38:20.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:20.333 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:20.388 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:20.388 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.0699ms +2024-05-24 23:38:20.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:20.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:20.602 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:20.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3772ms +2024-05-24 23:38:30.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:30.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:30.074 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:30.074 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5388ms +2024-05-24 23:38:35.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:35.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:35.392 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:35.392 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.1265ms +2024-05-24 23:38:35.581 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:35.582 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:35.613 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:35.614 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3357ms +2024-05-24 23:38:45.045 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:45.045 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:45.073 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:45.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.361ms +2024-05-24 23:38:50.332 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:50.332 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:50.390 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:50.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.1354ms +2024-05-24 23:38:50.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:38:50.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:50.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:38:50.609 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4403ms +2024-05-24 23:39:00.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:00.053 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:00.082 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:00.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9976ms +2024-05-24 23:39:05.335 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:05.335 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:05.394 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:05.394 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.6166ms +2024-05-24 23:39:05.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:05.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:05.611 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:05.612 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6049ms +2024-05-24 23:39:15.050 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:15.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:15.081 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:15.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8911ms +2024-05-24 23:39:20.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:20.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:20.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:20.384 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.8669ms +2024-05-24 23:39:20.570 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:20.571 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:20.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:20.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.683ms +2024-05-24 23:39:30.053 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:30.055 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:30.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:30.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.475ms +2024-05-24 23:39:35.333 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:35.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:35.393 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:35.393 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 60.2218ms +2024-05-24 23:39:35.572 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:35.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:35.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:35.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.58ms +2024-05-24 23:39:44.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:39:44.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:44.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:44.702 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.3169ms +2024-05-24 23:39:45.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:45.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:45.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:45.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 72.2892ms +2024-05-24 23:39:45.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:45.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:45.423 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:45.424 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.9688ms +2024-05-24 23:39:50.331 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:50.331 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:50.386 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:50.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.4155ms +2024-05-24 23:39:50.578 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:39:50.579 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:50.607 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:39:50.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9096ms +2024-05-24 23:40:14.881 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:40:14.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:14.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:14.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.459ms +2024-05-24 23:40:14.998 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:40:14.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:15.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:15.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1583ms +2024-05-24 23:40:16.695 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:16.695 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:16.749 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:16.749 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 53.7619ms +2024-05-24 23:40:18.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - null null +2024-05-24 23:40:18.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:40:18.672 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-24 23:40:18.672 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - 200 null application/json 60.9092ms +2024-05-24 23:40:20.808 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:20.809 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:20.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:20.867 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.4543ms +2024-05-24 23:40:29.993 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:40:29.994 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:30.052 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:30.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.6239ms +2024-05-24 23:40:42.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:42.525 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:42.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:42.583 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.662ms +2024-05-24 23:40:44.988 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:40:44.988 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:45.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:45.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.1576ms +2024-05-24 23:40:45.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:45.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:45.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:45.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 56.3918ms +2024-05-24 23:40:46.484 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:46.485 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:46.544 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:46.544 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - 200 null application/json 59.7187ms +2024-05-24 23:40:47.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:47.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:47.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:47.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.9571ms +2024-05-24 23:40:47.470 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:47.470 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:47.525 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:47.525 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.4522ms +2024-05-24 23:40:48.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:48.138 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:48.192 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:48.192 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - 200 null application/json 54.4395ms +2024-05-24 23:40:49.812 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:49.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:49.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:49.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.5846ms +2024-05-24 23:40:51.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:40:51.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:51.283 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:40:51.284 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.3701ms +2024-05-24 23:40:59.998 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:40:59.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:00.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:00.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.3655ms +2024-05-24 23:41:08.339 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:08.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:08.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:08.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.9291ms +2024-05-24 23:41:09.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:09.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:09.733 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:09.733 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.2179ms +2024-05-24 23:41:10.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:10.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:10.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:10.344 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.6949ms +2024-05-24 23:41:10.804 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:10.805 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:10.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:10.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.4958ms +2024-05-24 23:41:14.177 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:14.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:14.229 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:14.230 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 52.788ms +2024-05-24 23:41:14.678 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:14.678 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:14.747 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:14.747 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 69.6608ms +2024-05-24 23:41:14.987 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:41:14.987 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:15.043 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:15.043 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.5594ms +2024-05-24 23:41:15.136 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:15.137 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:15.168 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:15.169 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 32.6094ms +2024-05-24 23:41:30.008 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:41:30.008 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:30.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:30.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.9182ms +2024-05-24 23:41:31.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:41:31.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:31.969 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:31.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.9586ms +2024-05-24 23:41:32.248 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:41:32.248 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:32.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:32.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.9038ms +2024-05-24 23:41:40.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:40.917 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:40.978 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:40.979 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 62.6178ms +2024-05-24 23:41:42.590 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:42.591 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:42.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:42.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 51.7217ms +2024-05-24 23:41:43.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:43.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:43.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:43.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.2921ms +2024-05-24 23:41:43.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:43.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:43.666 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:43.666 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.8876ms +2024-05-24 23:41:45.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:45.003 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:45.061 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:45.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 60.0362ms +2024-05-24 23:41:45.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:45.992 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:46.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:46.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.9545ms +2024-05-24 23:41:46.625 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:46.625 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:46.679 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:46.679 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.1808ms +2024-05-24 23:41:46.979 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:41:46.980 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:47.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:47.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 65.802ms +2024-05-24 23:41:47.302 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:47.303 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:47.352 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:47.352 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 50.0053ms +2024-05-24 23:41:48.482 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:48.483 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:48.541 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:48.542 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 60.1225ms +2024-05-24 23:41:49.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:49.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:49.587 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:49.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.7793ms +2024-05-24 23:41:49.964 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:49.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:50.019 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:50.020 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.5542ms +2024-05-24 23:41:50.294 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:50.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:50.348 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:50.348 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.1043ms +2024-05-24 23:41:51.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:51.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:51.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:51.620 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.0836ms +2024-05-24 23:41:51.960 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:51.961 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:52.016 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:52.017 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.7374ms +2024-05-24 23:41:55.791 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:55.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:55.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:55.851 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 59.9303ms +2024-05-24 23:41:56.233 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:56.234 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:56.289 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:56.290 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.3856ms +2024-05-24 23:41:56.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:56.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:56.842 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:56.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.6528ms +2024-05-24 23:41:57.149 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:57.150 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:57.206 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:57.206 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.1679ms +2024-05-24 23:41:57.516 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:57.517 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:57.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:57.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.9621ms +2024-05-24 23:41:59.865 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:41:59.866 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:59.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:41:59.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.6797ms +2024-05-24 23:42:00.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:00.337 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:00.389 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:00.390 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 52.8726ms +2024-05-24 23:42:00.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:00.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:00.968 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:00.969 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 61.2493ms +2024-05-24 23:42:01.972 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:42:01.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:02.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:02.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.7175ms +2024-05-24 23:42:06.076 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:06.076 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:06.129 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:06.129 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 52.9128ms +2024-05-24 23:42:16.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:42:16.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:17.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:17.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.0513ms +2024-05-24 23:42:31.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:42:31.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:32.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:32.035 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.522ms +2024-05-24 23:42:46.999 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:42:46.999 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:47.051 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:47.052 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.013ms +2024-05-24 23:42:47.397 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:47.397 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:47.453 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:47.454 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.9791ms +2024-05-24 23:42:49.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:49.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:49.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:49.402 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.902ms +2024-05-24 23:42:50.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:50.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:50.113 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:50.114 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 58.1019ms +2024-05-24 23:42:50.524 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:50.524 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:50.580 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:50.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.1023ms +2024-05-24 23:42:51.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:51.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:51.673 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:51.673 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 53.8347ms +2024-05-24 23:42:52.084 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:52.085 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:52.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:52.144 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 59.8003ms +2024-05-24 23:42:52.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:42:52.628 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:52.683 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:42:52.683 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.5961ms +2024-05-24 23:43:01.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:43:01.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:02.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:02.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 61.5692ms +2024-05-24 23:43:13.164 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - application/json 140 +2024-05-24 23:43:13.165 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:13.194 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:13.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?startDate=2024-05-18&endDate=2024-05-25&page=1&resultsPerPage=10&Status=Unread - 200 null application/json 31.0471ms +2024-05-24 23:43:16.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:43:16.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:17.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:17.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.4377ms +2024-05-24 23:43:31.976 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:43:31.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:32.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:32.040 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 64.6966ms +2024-05-24 23:43:46.981 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:43:46.982 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:47.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:43:47.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.6324ms +2024-05-24 23:44:01.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:44:01.974 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:02.037 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:02.038 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 63.5811ms +2024-05-24 23:44:15.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - application/json 165 +2024-05-24 23:44:15.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:15.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:15.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5006/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882 - 200 null application/json 41.0657ms +2024-05-24 23:44:16.991 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:44:16.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:17.065 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:17.076 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 85.1311ms +2024-05-24 23:44:31.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:44:31.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:32.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:32.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.8122ms +2024-05-24 23:44:46.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:44:46.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:47.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:47.034 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.8018ms +2024-05-24 23:44:59.016 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - null null +2024-05-24 23:44:59.016 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:59.072 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:44:59.073 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10 - 200 null application/json 57.0597ms +2024-05-24 23:45:01.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:45:01.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:02.049 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:02.050 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 72.5926ms +2024-05-24 23:45:16.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:45:16.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:17.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:17.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.4911ms +2024-05-24 23:45:31.974 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:45:31.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:32.029 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:32.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.0313ms +2024-05-24 23:45:46.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:45:46.975 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:47.031 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:45:47.032 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.9051ms +2024-05-24 23:46:01.977 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:46:01.978 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:02.059 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:02.060 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 83.2213ms +2024-05-24 23:46:16.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:46:16.976 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:17.033 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:17.033 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 57.8737ms +2024-05-24 23:46:31.984 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:46:31.984 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:32.044 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:32.044 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 60.5281ms +2024-05-24 23:46:41.051 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:46:41.051 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:41.109 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:41.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 59.07ms +2024-05-24 23:46:49.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:46:49.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:49.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:46:49.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 70.5949ms +2024-05-24 23:47:00.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:47:00.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:00.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:00.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.4855ms +2024-05-24 23:47:01.986 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:47:01.986 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:02.042 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:02.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.2834ms +2024-05-24 23:47:02.592 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:02.593 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:02.650 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:02.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 59.0343ms +2024-05-24 23:47:04.140 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:04.141 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:04.195 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:04.195 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.5072ms +2024-05-24 23:47:04.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:04.957 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:05.011 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:05.011 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.6228ms +2024-05-24 23:47:05.426 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:05.426 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:05.480 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:05.481 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.0213ms +2024-05-24 23:47:05.992 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:05.993 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:06.047 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:06.047 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.3984ms +2024-05-24 23:47:06.738 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:06.739 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:06.794 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:06.794 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.9783ms +2024-05-24 23:47:16.975 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:47:16.977 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:17.041 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:17.042 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 66.4569ms +2024-05-24 23:47:47.510 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:47:47.512 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:47.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:47.573 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 63.3048ms +2024-05-24 23:47:47.897 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:47:47.898 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:47.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:47.956 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.0061ms +2024-05-24 23:47:50.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:50.411 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:50.468 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:50.468 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.4509ms +2024-05-24 23:47:52.253 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:52.253 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:52.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:52.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.1929ms +2024-05-24 23:47:52.779 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:52.779 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:52.834 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:52.834 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 55.4875ms +2024-05-24 23:47:53.176 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:53.177 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:53.233 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:53.237 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 60.7796ms +2024-05-24 23:47:54.576 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:54.576 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:54.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:54.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.4372ms +2024-05-24 23:47:55.107 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:55.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:55.164 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:55.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 58.0123ms +2024-05-24 23:47:55.747 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:47:55.747 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:55.801 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:47:55.801 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.6288ms +2024-05-24 23:48:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:48:02.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:02.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:02.701 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.0005ms +2024-05-24 23:48:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:48:17.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:17.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:17.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.9132ms +2024-05-24 23:48:32.653 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:48:32.654 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:32.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:32.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 61.4429ms +2024-05-24 23:48:47.654 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:48:47.657 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:47.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:48:47.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 62.554ms +2024-05-24 23:49:02.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:49:02.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:02.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:02.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.5599ms +2024-05-24 23:49:13.007 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:13.009 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:13.066 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:13.066 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 59.0284ms +2024-05-24 23:49:14.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:14.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:14.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:14.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.6487ms +2024-05-24 23:49:15.507 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:15.508 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:15.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:15.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - 200 null application/json 67.5568ms +2024-05-24 23:49:16.431 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:16.432 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:16.489 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:16.489 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.6258ms +2024-05-24 23:49:17.198 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:17.199 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.254 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.254 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.6894ms +2024-05-24 23:49:17.646 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:49:17.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.703 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.875ms +2024-05-24 23:49:17.850 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:17.850 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.885 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:17.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - 200 null application/json 35.5106ms +2024-05-24 23:49:18.880 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:18.881 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:18.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:18.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - 200 null application/json 61.4053ms +2024-05-24 23:49:20.106 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:20.107 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:20.165 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:20.165 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.7104ms +2024-05-24 23:49:20.645 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:20.645 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:20.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:20.704 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 59.3245ms +2024-05-24 23:49:21.241 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:21.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:21.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:21.296 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 54.7862ms +2024-05-24 23:49:22.037 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:49:22.038 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:22.094 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:22.094 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.2644ms +2024-05-24 23:49:32.649 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:49:32.649 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:32.702 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:32.703 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 53.8145ms +2024-05-24 23:49:42.780 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:42.781 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:42.839 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:42.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 59.696ms +2024-05-24 23:49:43.858 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:43.858 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:43.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:43.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 57.9454ms +2024-05-24 23:49:44.452 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:44.453 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:44.509 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:44.509 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.9938ms +2024-05-24 23:49:45.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:45.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:45.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:45.084 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.5414ms +2024-05-24 23:49:46.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:46.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:46.334 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:46.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.067ms +2024-05-24 23:49:47.003 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:47.005 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.064 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.065 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 62.4414ms +2024-05-24 23:49:47.475 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:47.475 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.529 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.529 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=20&sortOrder=desc&status= - 200 null application/json 54.6736ms +2024-05-24 23:49:47.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:49:47.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:47.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5485ms +2024-05-24 23:49:58.020 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:58.021 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:58.083 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:58.083 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=20&sortOrder=desc&status= - 200 null application/json 62.9189ms +2024-05-24 23:49:58.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:58.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:58.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:58.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 61.8055ms +2024-05-24 23:49:59.143 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:49:59.144 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:59.200 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:49:59.200 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=20&sortOrder=desc&status= - 200 null application/json 56.8844ms +2024-05-24 23:50:00.499 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - null null +2024-05-24 23:50:00.500 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:00.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:00.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=20&sortOrder=desc&status= - 200 null application/json 60.784ms +2024-05-24 23:50:02.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:50:02.652 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:02.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:02.708 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.2046ms +2024-05-24 23:50:02.868 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:02.868 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:02.899 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:02.900 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.4737ms +2024-05-24 23:50:14.380 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:14.381 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:14.439 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:14.439 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.7153ms +2024-05-24 23:50:14.900 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:14.901 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:14.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:14.958 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.6227ms +2024-05-24 23:50:15.361 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:15.361 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:15.416 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:15.416 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.6972ms +2024-05-24 23:50:15.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:15.823 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:15.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:15.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.5992ms +2024-05-24 23:50:16.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:16.374 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:16.429 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:16.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - 200 null application/json 56.5128ms +2024-05-24 23:50:17.650 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:50:17.650 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:17.705 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:17.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.2525ms +2024-05-24 23:50:22.361 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:22.362 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:22.534 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:22.535 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:22.537 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 175.9716ms +2024-05-24 23:50:22.739 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:22.739 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:22.864 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:22.864 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:22.865 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 125.968ms +2024-05-24 23:50:23.668 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:23.669 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:23.817 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:23.818 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:23.818 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 149.5307ms +2024-05-24 23:50:24.092 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:24.093 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:24.230 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:24.230 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:24.230 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 138.2439ms +2024-05-24 23:50:24.548 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:24.549 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:24.708 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:24.708 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:24.708 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 160.3933ms +2024-05-24 23:50:29.471 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:29.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:29.526 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:29.526 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.303ms +2024-05-24 23:50:30.707 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:30.710 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:30.770 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:30.771 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=7&pageSize=10&sortOrder=desc&status= - 200 null application/json 63.7687ms +2024-05-24 23:50:31.748 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:31.749 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:31.902 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:31.902 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:31.903 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 155.1958ms +2024-05-24 23:50:32.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:50:32.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:32.684 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:32.687 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:32.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:32.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 61.0955ms +2024-05-24 23:50:32.847 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:32.847 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:32.847 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 163.7692ms +2024-05-24 23:50:33.227 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:33.227 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:33.376 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:33.376 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:33.377 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 149.3613ms +2024-05-24 23:50:33.710 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:33.710 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:33.856 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:33.857 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:33.857 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 147.6328ms +2024-05-24 23:50:34.180 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:34.181 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:34.318 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:34.318 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:34.319 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 138.6735ms +2024-05-24 23:50:34.598 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:50:34.598 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:34.718 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:50:34.718 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:34.718 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 120.3219ms +2024-05-24 23:50:35.810 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:35.811 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:35.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:35.871 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=5&pageSize=10&sortOrder=desc&status= - 200 null application/json 60.3018ms +2024-05-24 23:50:37.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:37.140 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:37.196 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:37.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.746ms +2024-05-24 23:50:37.587 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:50:37.587 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:37.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:37.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.4781ms +2024-05-24 23:50:38.682 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:50:38.682 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:38.824 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:50:38.824 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:38.824 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 142.3484ms +2024-05-24 23:50:40.844 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:50:40.844 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:40.990 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:50:40.990 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:40.990 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 146.1428ms +2024-05-24 23:50:41.365 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2/status - application/json null +2024-05-24 23:50:41.365 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:41.522 +02:00 [INF] Updated the status of notification with id: 6c3db609-5192-43df-b74d-3265ee2025b2 to: Read. +2024-05-24 23:50:41.522 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:50:41.522 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6c3db609-5192-43df-b74d-3265ee2025b2/status - 200 0 null 157.443ms +2024-05-24 23:50:47.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:50:47.647 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:47.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:50:47.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.6134ms +2024-05-24 23:51:02.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:02.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:02.700 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:02.700 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.6081ms +2024-05-24 23:51:19.078 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:19.079 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:19.132 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:19.133 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.6005ms +2024-05-24 23:51:19.190 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:19.190 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:19.223 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:19.224 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.017ms +2024-05-24 23:51:20.930 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:20.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:21.478 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:21.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 555.6646ms +2024-05-24 23:51:23.251 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:23.252 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:23.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:23.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 65.3793ms +2024-05-24 23:51:24.573 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:24.574 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:24.725 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:24.726 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:24.727 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 153.975ms +2024-05-24 23:51:26.514 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:26.514 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:26.655 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:26.655 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:26.655 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 141.837ms +2024-05-24 23:51:27.069 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:27.070 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:27.221 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:27.221 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:27.221 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 152.0841ms +2024-05-24 23:51:27.511 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:27.512 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:27.673 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:27.673 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:27.674 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 162.3637ms +2024-05-24 23:51:27.938 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:27.939 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:28.084 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:28.084 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:28.084 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 146.1524ms +2024-05-24 23:51:34.138 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:34.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:34.197 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:34.197 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 58.5981ms +2024-05-24 23:51:37.036 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:37.036 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:37.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:37.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 55.8403ms +2024-05-24 23:51:38.583 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:38.584 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:38.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:38.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 56.857ms +2024-05-24 23:51:42.875 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:42.876 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:42.931 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:42.932 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.6888ms +2024-05-24 23:51:43.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:43.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:43.345 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:43.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.096ms +2024-05-24 23:51:45.580 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:45.580 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:45.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:45.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 57.8723ms +2024-05-24 23:51:47.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:47.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:47.088 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:47.088 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 58.3757ms +2024-05-24 23:51:48.136 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:48.136 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:48.300 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:48.300 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:48.300 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 164.9196ms +2024-05-24 23:51:48.660 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:48.660 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:48.802 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:48.802 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:48.802 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 142.6993ms +2024-05-24 23:51:49.169 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/64737fd4-4659-400a-a799-3ca5c26879d4/status - application/json null +2024-05-24 23:51:49.169 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:49.335 +02:00 [INF] Updated the status of notification with id: 64737fd4-4659-400a-a799-3ca5c26879d4 to: Read. +2024-05-24 23:51:49.335 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:49.335 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/64737fd4-4659-400a-a799-3ca5c26879d4/status - 200 0 null 166.9716ms +2024-05-24 23:51:50.439 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:50.439 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:50.583 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:50.583 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:50.583 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 144.6008ms +2024-05-24 23:51:51.255 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:51.255 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:51.400 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:51.400 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:51.400 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 145.5065ms +2024-05-24 23:51:51.710 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:51.710 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:51.866 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:51.866 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:51.866 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 156.7615ms +2024-05-24 23:51:52.092 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:52.092 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.220 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:52.220 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.220 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 128.3991ms +2024-05-24 23:51:52.450 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:52.450 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.570 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:52.570 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.571 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 120.4108ms +2024-05-24 23:51:52.801 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:52.802 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.918 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:52.918 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:52.919 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 117.4499ms +2024-05-24 23:51:53.170 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:51:53.171 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:53.284 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:51:53.285 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:53.285 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 114.8309ms +2024-05-24 23:51:53.904 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:53.904 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:53.960 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:53.960 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 56.8524ms +2024-05-24 23:51:54.500 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:51:54.500 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:54.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:54.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=6&pageSize=10&sortOrder=desc&status= - 200 null application/json 70.8961ms +2024-05-24 23:51:55.387 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:51:55.388 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:55.545 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:51:55.545 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:55.546 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 158.387ms +2024-05-24 23:51:55.695 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:51:55.695 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:55.814 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:51:55.814 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:55.814 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 119.7688ms +2024-05-24 23:51:56.057 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:51:56.057 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:56.195 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:51:56.196 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:56.196 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 138.8828ms +2024-05-24 23:51:56.393 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:51:56.393 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:56.518 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:51:56.518 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:56.519 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 125.9234ms +2024-05-24 23:51:57.225 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - application/json null +2024-05-24 23:51:57.226 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:57.376 +02:00 [INF] Updated the status of notification with id: ff09cc30-1f54-4094-a486-505261ca8c22 to: Read. +2024-05-24 23:51:57.376 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:51:57.376 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22/status - 200 0 null 151.2423ms +2024-05-24 23:51:57.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:51:57.936 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:57.980 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22 - null null +2024-05-24 23:51:57.981 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:51:57.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:51:57.995 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 59.6124ms +2024-05-24 23:51:58.246 +02:00 [INF] Deleted notification with id: ff09cc30-1f54-4094-a486-505261ca8c22. +2024-05-24 23:51:58.246 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:51:58.246 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/ff09cc30-1f54-4094-a486-505261ca8c22 - 200 0 null 266.4206ms +2024-05-24 23:52:00.890 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - null null +2024-05-24 23:52:00.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:00.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:00.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc - 200 null application/json 29.4293ms +2024-05-24 23:52:01.762 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:01.763 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:01.792 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:01.793 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.7239ms +2024-05-24 23:52:03.370 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:03.371 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:03.404 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:03.404 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=4&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.9095ms +2024-05-24 23:52:04.422 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/64737fd4-4659-400a-a799-3ca5c26879d4 - null null +2024-05-24 23:52:04.423 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:04.578 +02:00 [INF] Deleted notification with id: 64737fd4-4659-400a-a799-3ca5c26879d4. +2024-05-24 23:52:04.578 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:04.578 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/64737fd4-4659-400a-a799-3ca5c26879d4 - 200 0 null 156.1348ms +2024-05-24 23:52:08.068 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:08.069 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:08.100 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:08.100 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.2264ms +2024-05-24 23:52:09.926 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:09.926 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:09.955 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:09.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.5598ms +2024-05-24 23:52:11.039 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:11.039 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:11.068 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:11.069 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.7555ms +2024-05-24 23:52:12.944 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:52:12.945 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:12.977 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:12.978 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4684ms +2024-05-24 23:52:13.487 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:13.489 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:13.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:13.519 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.0305ms +2024-05-24 23:52:27.935 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:52:27.935 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:27.964 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:27.964 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1651ms +2024-05-24 23:52:29.408 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - application/json null +2024-05-24 23:52:29.408 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:52:29.570 +02:00 [INF] Updated the status of notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf to: Read. +2024-05-24 23:52:29.571 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-24 23:52:29.571 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf/status - 200 0 null 162.9839ms +2024-05-24 23:52:30.546 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf - null null +2024-05-24 23:52:30.547 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:30.700 +02:00 [INF] Deleted notification with id: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf. +2024-05-24 23:52:30.701 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:30.701 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf - 200 0 null 154.3899ms +2024-05-24 23:52:32.318 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf - null null +2024-05-24 23:52:32.318 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:32.372 +02:00 [ERR] There was an error when processing a message with id: '49c7010f677343ab9d2060d0069b8881'. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) +2024-05-24 23:52:32.389 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-24 23:52:32.400 +02:00 [ERR] Notification with ID: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf was not found. +MiniSpace.Services.Notifications.Application.Exceptions.NotificationNotFoundException: Notification with ID: 85b6deae-f228-40cc-81d4-bbd76bfcb9bf was not found. + at MiniSpace.Services.Notifications.Application.Commands.Handlers.DeleteNotificationHandler.HandleAsync(DeleteNotification command, CancellationToken cancellationToken) in /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Commands/Handlers/DeleteNotificationHandler.cs:line 29 + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.MessageBrokers.Outbox.Mongo.Internals.MongoMessageOutbox.HandleAsync(String messageId, Func`1 handler) + at Convey.Logging.CQRS.Decorators.CommandHandlerLoggingDecorator`1.HandleAsync(TCommand command, CancellationToken cancellationToken) + at Convey.CQRS.Commands.Dispatchers.CommandDispatcher.SendAsync[T](T command, CancellationToken cancellationToken) + at Convey.WebApi.CQRS.Builders.DispatcherEndpointsBuilder.BuildCommandContext[T](T command, HttpContext context, Func`3 beforeDispatch, Func`3 afterDispatch) + at Convey.WebApi.EndpointsBuilder.BuildQueryContext[T](HttpContext httpContext, Func`3 context) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ApdexMiddleware.MeasureTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.PerRequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.RequestTimerMiddleware.TimeTransaction(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ErrorRequestMeterMiddleware.Invoke(HttpContext context) + at App.Metrics.AspNetCore.Tracking.Middleware.ActiveRequestCounterEndpointMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Convey.WebApi.Exceptions.ErrorHandlerMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2024-05-24 23:52:32.407 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/85b6deae-f228-40cc-81d4-bbd76bfcb9bf - 400 null application/json 89.4677ms +2024-05-24 23:52:40.314 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:52:40.315 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:40.344 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:40.346 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.702ms +2024-05-24 23:52:40.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:52:40.744 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:40.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:40.772 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0469ms +2024-05-24 23:52:42.706 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:42.706 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:42.740 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:42.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.6165ms +2024-05-24 23:52:44.029 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:44.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:44.057 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:44.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.1679ms +2024-05-24 23:52:45.797 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:52:45.797 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:45.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:45.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.0064ms +2024-05-24 23:52:55.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:52:55.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:55.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:52:55.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5366ms +2024-05-24 23:53:10.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:53:10.353 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:10.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:10.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1984ms +2024-05-24 23:53:25.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:53:25.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:25.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:25.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5062ms +2024-05-24 23:53:40.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:53:40.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:40.441 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:40.441 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 93.1193ms +2024-05-24 23:53:55.360 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:53:55.361 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:55.398 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:53:55.399 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.8487ms +2024-05-24 23:54:10.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:10.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:10.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:10.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8873ms +2024-05-24 23:54:25.352 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:25.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:25.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:25.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2167ms +2024-05-24 23:54:27.184 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:27.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.197 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:27.197 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.215 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.215 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3816ms +2024-05-24 23:54:27.225 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.225 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8854ms +2024-05-24 23:54:27.822 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:54:27.822 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.851 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:27.852 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 30.256ms +2024-05-24 23:54:28.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:28.467 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:28.474 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:28.474 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:28.494 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:28.494 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5523ms +2024-05-24 23:54:28.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:28.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.858ms +2024-05-24 23:54:40.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:40.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:40.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:40.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9322ms +2024-05-24 23:54:55.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:54:55.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:55.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:54:55.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3006ms +2024-05-24 23:55:09.656 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:55:09.658 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:09.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:09.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 31.7257ms +2024-05-24 23:55:10.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:10.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:10.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:10.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.579ms +2024-05-24 23:55:25.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:25.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:25.381 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:25.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9162ms +2024-05-24 23:55:35.956 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:35.956 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:35.984 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:35.985 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8971ms +2024-05-24 23:55:36.440 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:55:36.440 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:36.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:36.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 31.6596ms +2024-05-24 23:55:37.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:55:37.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:37.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:37.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 34.6293ms +2024-05-24 23:55:37.965 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:37.965 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:37.993 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:37.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3664ms +2024-05-24 23:55:40.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:40.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:40.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:40.377 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2726ms +2024-05-24 23:55:55.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:55:55.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:55.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:55:55.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3726ms +2024-05-24 23:56:10.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:10.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:10.377 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:10.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5232ms +2024-05-24 23:56:25.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:25.347 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:25.383 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:25.383 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1195ms +2024-05-24 23:56:40.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:40.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:40.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:40.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3427ms +2024-05-24 23:56:43.234 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:56:43.235 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:43.264 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:43.265 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.5064ms +2024-05-24 23:56:43.694 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:43.694 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:43.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:43.730 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2299ms +2024-05-24 23:56:45.411 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:56:45.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:45.442 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:45.442 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 30.8545ms +2024-05-24 23:56:46.213 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:46.216 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:46.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:46.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8164ms +2024-05-24 23:56:46.693 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:56:46.693 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:46.725 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:46.726 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.435ms +2024-05-24 23:56:55.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:56:55.351 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:55.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:56:55.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5996ms +2024-05-24 23:57:10.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:10.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:10.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:10.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.184ms +2024-05-24 23:57:22.109 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:57:22.109 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:22.139 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:22.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.0816ms +2024-05-24 23:57:22.716 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:22.716 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:22.744 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:22.745 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1885ms +2024-05-24 23:57:23.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:57:23.853 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:23.881 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:23.882 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.7642ms +2024-05-24 23:57:25.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:25.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:25.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:25.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.86ms +2024-05-24 23:57:40.346 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:40.346 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:40.376 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:40.376 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7285ms +2024-05-24 23:57:45.214 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-24 23:57:45.215 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:45.245 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:45.246 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.4262ms +2024-05-24 23:57:45.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:45.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:45.734 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:45.734 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7024ms +2024-05-24 23:57:46.662 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-24 23:57:46.662 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:46.692 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:46.693 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 31.0243ms +2024-05-24 23:57:55.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:57:55.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:55.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:57:55.379 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4036ms +2024-05-24 23:58:10.350 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:58:10.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:10.379 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:10.380 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6941ms +2024-05-24 23:58:25.349 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:58:25.350 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:25.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:25.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8093ms +2024-05-24 23:58:40.348 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:58:40.349 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:40.380 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:40.381 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9902ms +2024-05-24 23:58:55.351 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-24 23:58:55.352 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:55.382 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-24 23:58:55.382 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5386ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240525.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240525.txt new file mode 100644 index 000000000..7c4a2f88a --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/logs/logs20240525.txt @@ -0,0 +1,3655 @@ +2024-05-25 00:02:00.824 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:00.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:00.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:00.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.5513ms +2024-05-25 00:02:20.793 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:20.794 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:20.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:20.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1632ms +2024-05-25 00:02:20.841 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:20.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:20.878 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:20.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.4117ms +2024-05-25 00:02:22.755 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:22.755 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:22.782 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:22.782 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9994ms +2024-05-25 00:02:22.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:22.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:22.826 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:22.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0891ms +2024-05-25 00:02:31.998 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:02:31.998 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:32.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:32.298 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 300.4303ms +2024-05-25 00:02:35.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:35.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:35.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:35.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8008ms +2024-05-25 00:02:36.647 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:02:36.648 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:36.676 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:36.676 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.0864ms +2024-05-25 00:02:37.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:37.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:37.801 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:02:37.801 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:37.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:37.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9421ms +2024-05-25 00:02:37.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:37.829 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.3569ms +2024-05-25 00:02:50.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:50.834 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:50.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:50.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7939ms +2024-05-25 00:02:52.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:02:52.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:52.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:02:52.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2989ms +2024-05-25 00:03:05.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:05.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:05.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:05.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8348ms +2024-05-25 00:03:07.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:07.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:07.818 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:07.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8914ms +2024-05-25 00:03:20.828 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:20.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:20.860 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:20.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0043ms +2024-05-25 00:03:22.789 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:22.790 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:22.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:22.830 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.2004ms +2024-05-25 00:03:35.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:35.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:35.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:35.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8436ms +2024-05-25 00:03:37.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:37.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:37.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:37.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7701ms +2024-05-25 00:03:50.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:50.831 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:50.859 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:50.859 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5489ms +2024-05-25 00:03:52.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:03:52.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:52.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:03:52.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4153ms +2024-05-25 00:04:05.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:05.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:05.856 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:05.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8039ms +2024-05-25 00:04:07.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:07.789 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:07.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:07.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1247ms +2024-05-25 00:04:20.847 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:20.849 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:20.877 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:20.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2161ms +2024-05-25 00:04:22.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:22.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:22.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:22.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4747ms +2024-05-25 00:04:35.833 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:35.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:35.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:35.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8425ms +2024-05-25 00:04:37.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:37.788 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:37.817 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:37.818 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1884ms +2024-05-25 00:04:50.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:50.829 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:50.861 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:50.861 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1878ms +2024-05-25 00:04:52.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:04:52.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:52.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:04:52.812 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5239ms +2024-05-25 00:05:05.831 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:05.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:05.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:05.864 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1055ms +2024-05-25 00:05:07.784 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:07.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:07.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:07.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0122ms +2024-05-25 00:05:20.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:20.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:20.866 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:20.866 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2792ms +2024-05-25 00:05:22.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:22.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:22.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:22.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8412ms +2024-05-25 00:05:35.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:35.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:35.864 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:35.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4519ms +2024-05-25 00:05:37.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:37.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:37.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:37.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8968ms +2024-05-25 00:05:50.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:50.835 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:50.867 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:50.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.7061ms +2024-05-25 00:05:52.782 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:05:52.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:52.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:05:52.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2911ms +2024-05-25 00:06:05.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:05.828 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:05.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:05.855 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4501ms +2024-05-25 00:06:07.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:07.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:07.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:07.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6576ms +2024-05-25 00:06:20.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:20.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:20.855 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:20.856 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0493ms +2024-05-25 00:06:22.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:22.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:22.809 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:22.810 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7298ms +2024-05-25 00:06:35.827 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:35.827 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:35.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:35.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2459ms +2024-05-25 00:06:37.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:37.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:37.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:37.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5227ms +2024-05-25 00:06:50.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:50.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:50.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:50.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7337ms +2024-05-25 00:06:52.785 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:06:52.785 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:52.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:06:52.815 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2529ms +2024-05-25 00:07:05.845 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:05.847 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:05.890 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:05.898 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.2758ms +2024-05-25 00:07:07.786 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:07.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:07.820 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:07.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.1071ms +2024-05-25 00:07:20.838 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:20.838 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:20.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:20.869 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8183ms +2024-05-25 00:07:22.790 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:22.791 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:22.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:22.821 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7252ms +2024-05-25 00:07:35.826 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:35.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:35.858 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:35.858 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1239ms +2024-05-25 00:07:37.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - null null +2024-05-25 00:07:37.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:07:37.361 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:07:37.361 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/ecaf4ddd-731b-4310-9b35-9171fb2421bd - 200 null application/json 33.2498ms +2024-05-25 00:07:37.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:37.783 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:37.815 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:37.816 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0829ms +2024-05-25 00:07:41.147 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:07:41.148 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:41.177 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:41.177 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.4148ms +2024-05-25 00:07:42.752 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - null null +2024-05-25 00:07:42.753 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:07:42.785 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:07:42.786 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - 200 null application/json 33.266ms +2024-05-25 00:07:50.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:50.833 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:50.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:50.862 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9256ms +2024-05-25 00:07:52.783 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:07:52.784 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:52.813 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:07:52.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5561ms +2024-05-25 00:08:05.832 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:05.832 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:05.862 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:05.863 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.93ms +2024-05-25 00:08:07.787 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:07.787 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:07.821 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:07.823 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2847ms +2024-05-25 00:08:26.836 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:26.837 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:26.865 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:26.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2529ms +2024-05-25 00:08:26.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:26.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:26.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:26.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7411ms +2024-05-25 00:08:31.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:31.528 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:31.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:31.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1751ms +2024-05-25 00:08:31.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:31.933 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:31.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:31.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6522ms +2024-05-25 00:08:34.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:08:34.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:34.358 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:34.359 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.3316ms +2024-05-25 00:08:35.593 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - null null +2024-05-25 00:08:35.594 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:08:35.620 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:08:35.621 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - 200 null application/json 28.1305ms +2024-05-25 00:08:41.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5655ms +2024-05-25 00:08:42.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - null null +2024-05-25 00:08:42.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:08:42.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:08:42.256 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/963c1f13-10f9-42fd-b5c2-c917599a93e0 - 200 null application/json 29.9567ms +2024-05-25 00:08:46.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:46.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:46.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:46.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1646ms +2024-05-25 00:08:56.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:08:56.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:56.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:08:56.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1299ms +2024-05-25 00:09:01.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:01.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:01.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:01.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1171ms +2024-05-25 00:09:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.885ms +2024-05-25 00:09:16.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:16.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:16.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:16.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7266ms +2024-05-25 00:09:26.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:26.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:26.962 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 54.3855ms +2024-05-25 00:09:31.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:31.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:31.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:31.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8862ms +2024-05-25 00:09:41.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.248ms +2024-05-25 00:09:46.589 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:46.590 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:46.628 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:46.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 44.0721ms +2024-05-25 00:09:56.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:09:56.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:56.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:09:56.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9519ms +2024-05-25 00:10:01.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:01.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:01.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:01.597 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6539ms +2024-05-25 00:10:11.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:11.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:11.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:11.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1161ms +2024-05-25 00:10:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:16.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:16.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:16.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4844ms +2024-05-25 00:10:26.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:26.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0482ms +2024-05-25 00:10:31.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:31.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:31.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:31.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8502ms +2024-05-25 00:10:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:41.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:41.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4341ms +2024-05-25 00:10:46.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:46.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:46.599 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.483ms +2024-05-25 00:10:56.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:10:56.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:56.951 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:10:56.955 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.9164ms +2024-05-25 00:11:01.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:01.569 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:01.599 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:01.600 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3371ms +2024-05-25 00:11:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5107ms +2024-05-25 00:11:13.242 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:13.242 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:13.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:13.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9523ms +2024-05-25 00:11:13.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:13.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:13.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:13.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5136ms +2024-05-25 00:11:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:16.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:16.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:16.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3619ms +2024-05-25 00:11:26.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:26.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:26.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:26.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6098ms +2024-05-25 00:11:28.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:28.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:28.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:28.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5273ms +2024-05-25 00:11:29.398 +02:00 [INF] Received a message with ID: '22c5dfd362544869a03bd18e6db606a2', Correlation ID: '1d230f42d8d345c69475c75e7544d648', timestamp: 1716588689, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-25 00:11:29.400 +02:00 [INF] Received a message with ID: 'dc6af7666fa74159ac95f9f08a79d9d1', Correlation ID: '62ba29cb2a264e2d9c31df1d7a64f5d3', timestamp: 1716588689, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-25 00:11:29.400 +02:00 [INF] Handling a message: friend_invited with ID: 22c5dfd362544869a03bd18e6db606a2, Correlation ID: 1d230f42d8d345c69475c75e7544d648, retry: 0 +2024-05-25 00:11:29.401 +02:00 [INF] Handling a message: friend_request_sent with ID: dc6af7666fa74159ac95f9f08a79d9d1, Correlation ID: 62ba29cb2a264e2d9c31df1d7a64f5d3, retry: 0 +2024-05-25 00:11:29.429 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-25 00:11:29.429 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:29.429 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:29.457 +02:00 [INF] Received HTTP response headers after 27.5136ms - 200 +2024-05-25 00:11:29.457 +02:00 [INF] End processing HTTP request after 27.9032ms - 200 +2024-05-25 00:11:29.457 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:11:29.546 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-25 00:11:29.546 +02:00 [INF] Handled a message: friend_request_sent with ID: dc6af7666fa74159ac95f9f08a79d9d1, Correlation ID: 62ba29cb2a264e2d9c31df1d7a64f5d3, retry: 0 +2024-05-25 00:11:29.618 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-25 00:11:29.618 +02:00 [INF] Handled a message: friend_invited with ID: 22c5dfd362544869a03bd18e6db606a2, Correlation ID: 1d230f42d8d345c69475c75e7544d648, retry: 0 +2024-05-25 00:11:31.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:31.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:31.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:31.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0302ms +2024-05-25 00:11:41.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:41.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:41.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:41.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.983ms +2024-05-25 00:11:42.536 +02:00 [INF] Received a message with ID: '8861a0e5b2f94a5ab6e2c4569a56c3ad', Correlation ID: '0b9753f9d47748ce805ba62aa0bf8e11', timestamp: 1716588702, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-25 00:11:42.540 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 8861a0e5b2f94a5ab6e2c4569a56c3ad, Correlation ID: 0b9753f9d47748ce805ba62aa0bf8e11, retry: 0 +2024-05-25 00:11:42.567 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-25 00:11:42.570 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:42.570 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:42.600 +02:00 [INF] Received HTTP response headers after 29.8398ms - 200 +2024-05-25 00:11:42.600 +02:00 [INF] End processing HTTP request after 30.5868ms - 200 +2024-05-25 00:11:42.600 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:11:42.601 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-25 00:11:42.601 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-25 00:11:42.601 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-25 00:11:42.629 +02:00 [INF] Received HTTP response headers after 27.7674ms - 200 +2024-05-25 00:11:42.629 +02:00 [INF] End processing HTTP request after 28.3795ms - 200 +2024-05-25 00:11:42.629 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:11:42.655 +02:00 [INF] Adding notification to StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:42.687 +02:00 [INF] Updated StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:11:42.717 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 8861a0e5b2f94a5ab6e2c4569a56c3ad, Correlation ID: 0b9753f9d47748ce805ba62aa0bf8e11, retry: 0 +2024-05-25 00:11:43.286 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:43.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:43.316 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:43.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4624ms +2024-05-25 00:11:46.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:46.568 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:46.598 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:46.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0018ms +2024-05-25 00:11:48.676 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:11:48.677 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:48.706 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:48.706 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.7204ms +2024-05-25 00:11:50.852 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - null null +2024-05-25 00:11:50.853 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:11:50.883 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:11:50.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - 200 null application/json 30.9067ms +2024-05-25 00:11:50.889 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b/status - application/json null +2024-05-25 00:11:50.890 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:11:51.011 +02:00 [INF] Updated the status of notification with id: f35e85d4-dc19-4c95-a3e6-9e36f446bc3b to: Read. +2024-05-25 00:11:51.011 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:11:51.011 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b/status - 200 0 null 121.7016ms +2024-05-25 00:11:54.373 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - null null +2024-05-25 00:11:54.375 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:11:54.407 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:11:54.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - 200 null application/json 33.6322ms +2024-05-25 00:11:56.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:56.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:56.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:56.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4044ms +2024-05-25 00:11:58.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:11:58.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:58.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:58.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6754ms +2024-05-25 00:11:58.372 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:11:58.373 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:58.406 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:11:58.407 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 35.0022ms +2024-05-25 00:12:00.980 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - null null +2024-05-25 00:12:00.981 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:12:01.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:12:01.010 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - 200 null application/json 29.4782ms +2024-05-25 00:12:01.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:01.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:01.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:01.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3706ms +2024-05-25 00:12:03.996 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - null null +2024-05-25 00:12:03.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:12:04.028 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:12:04.029 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/f35e85d4-dc19-4c95-a3e6-9e36f446bc3b - 200 null application/json 32.6632ms +2024-05-25 00:12:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:11.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2364ms +2024-05-25 00:12:13.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:13.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:13.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:13.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5259ms +2024-05-25 00:12:16.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:16.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:16.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:16.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4178ms +2024-05-25 00:12:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5628ms +2024-05-25 00:12:27.808 +02:00 [INF] Deregistering a service [id: notifications-service:eef86ac4cb0f47b2813903015c925a09] from Consul... +2024-05-25 00:12:27.809 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:eef86ac4cb0f47b2813903015c925a09" +2024-05-25 00:12:27.809 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:eef86ac4cb0f47b2813903015c925a09 +2024-05-25 00:12:27.809 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:eef86ac4cb0f47b2813903015c925a09 +2024-05-25 00:12:27.824 +02:00 [INF] Received HTTP response headers after 14.8701ms - 200 +2024-05-25 00:12:27.824 +02:00 [INF] End processing HTTP request after 15.2195ms - 200 +2024-05-25 00:12:27.825 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:12:27.825 +02:00 [INF] Deregistered a service [id: notifications-service:eef86ac4cb0f47b2813903015c925a09] from Consul. +2024-05-25 00:12:37.914 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-25 00:12:38.023 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-25 00:12:38.103 +02:00 [INF] Notification Cleanup Service is running. +2024-05-25 00:12:38.198 +02:00 [INF] Registering a service [id: notifications-service:32e99130e7cc4f2b83b178f03b9f28b8] in Consul... +2024-05-25 00:12:38.220 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-25 00:12:38.225 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 00:12:38.226 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 00:12:38.247 +02:00 [INF] Removed 0 old notifications. +2024-05-25 00:12:38.248 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-25 00:12:38.250 +02:00 [INF] Received HTTP response headers after 19.3641ms - 200 +2024-05-25 00:12:38.252 +02:00 [INF] End processing HTTP request after 27.7114ms - 200 +2024-05-25 00:12:38.255 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:12:38.256 +02:00 [INF] Registered a service [id: notifications-service:32e99130e7cc4f2b83b178f03b9f28b8] in Consul. +2024-05-25 00:12:38.267 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-25 00:12:38.281 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-25 00:12:38.286 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-25 00:12:38.290 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-25 00:12:38.296 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-25 00:12:38.298 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-25 00:12:38.303 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-25 00:12:38.306 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-25 00:12:41.945 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:41.999 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:42.103 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:42.111 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 167.2957ms +2024-05-25 00:12:43.469 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:43.471 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:43.504 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:43.505 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.3932ms +2024-05-25 00:12:46.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:46.569 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:46.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:46.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7896ms +2024-05-25 00:12:51.898 +02:00 [INF] Received a message with ID: 'cca23d9d49224a768ee3794b0aec17b9', Correlation ID: '162f223830014a4b9baf5dc00c0fec71', timestamp: 1716588771, queue: notifications-service/notifications.friend_request_sent, routing key: friend_request_sent, exchange: notifications, payload: +2024-05-25 00:12:51.898 +02:00 [INF] Received a message with ID: '402f357ec61c479abebce639c9fc658f', Correlation ID: 'cab5355005df4d57b2dcc5727ffccd4e', timestamp: 1716588771, queue: notifications-service/notifications.friend_invited, routing key: friend_invited, exchange: notifications, payload: +2024-05-25 00:12:51.913 +02:00 [INF] Handling a message: friend_request_sent with ID: cca23d9d49224a768ee3794b0aec17b9, Correlation ID: 162f223830014a4b9baf5dc00c0fec71, retry: 0 +2024-05-25 00:12:51.913 +02:00 [INF] Handling a message: friend_invited with ID: 402f357ec61c479abebce639c9fc658f, Correlation ID: cab5355005df4d57b2dcc5727ffccd4e, retry: 0 +2024-05-25 00:12:52.149 +02:00 [INF] Processed friend request sent from 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-25 00:12:52.152 +02:00 [INF] Handled a message: friend_request_sent with ID: cca23d9d49224a768ee3794b0aec17b9, Correlation ID: 162f223830014a4b9baf5dc00c0fec71, retry: 0 +2024-05-25 00:12:52.237 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-25 00:12:52.237 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:12:52.238 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:12:52.270 +02:00 [INF] Received HTTP response headers after 32.7053ms - 200 +2024-05-25 00:12:52.271 +02:00 [INF] End processing HTTP request after 33.2002ms - 200 +2024-05-25 00:12:52.271 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:12:52.466 +02:00 [INF] Handled invitation sent by 4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 to af98ceda-1483-4c51-a602-89e5537ec89e. +2024-05-25 00:12:52.467 +02:00 [INF] Handled a message: friend_invited with ID: 402f357ec61c479abebce639c9fc658f, Correlation ID: cab5355005df4d57b2dcc5727ffccd4e, retry: 0 +2024-05-25 00:12:56.711 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:12:56.713 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:56.751 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:56.751 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 40.0218ms +2024-05-25 00:12:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0078ms +2024-05-25 00:12:58.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:12:58.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:58.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:12:58.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.1229ms +2024-05-25 00:13:01.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:01.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:01.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:01.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4579ms +2024-05-25 00:13:03.571 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - null null +2024-05-25 00:13:03.572 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:03.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:03.607 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - 200 null application/json 35.5512ms +2024-05-25 00:13:03.610 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d/status - application/json null +2024-05-25 00:13:03.611 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:13:03.765 +02:00 [INF] Updated the status of notification with id: d253c0d6-75fb-4ab6-8361-582552a7041d to: Read. +2024-05-25 00:13:03.767 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:13:03.767 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d/status - 200 0 null 156.8284ms +2024-05-25 00:13:09.957 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - null null +2024-05-25 00:13:09.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:10.010 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:10.012 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - 200 null application/json 54.3038ms +2024-05-25 00:13:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:11.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:11.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2888ms +2024-05-25 00:13:13.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:13.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:13.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:13.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2065ms +2024-05-25 00:13:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:16.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:16.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:16.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6285ms +2024-05-25 00:13:20.369 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - null null +2024-05-25 00:13:20.370 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:20.427 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:20.428 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/d253c0d6-75fb-4ab6-8361-582552a7041d - 200 null application/json 58.9034ms +2024-05-25 00:13:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:26.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:26.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:26.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2493ms +2024-05-25 00:13:28.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:28.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:28.303 +02:00 [INF] Received a message with ID: '8de2ce8380a04c00b2c25ea5ca76a59f', Correlation ID: 'ad8311e56dad4909a75dd0479edeed30', timestamp: 1716588808, queue: notifications-service/notifications.pending_friend_accepted, routing key: pending_friend_accepted, exchange: notifications, payload: +2024-05-25 00:13:28.305 +02:00 [INF] Handling a message: pending_friend_accepted with ID: 8de2ce8380a04c00b2c25ea5ca76a59f, Correlation ID: ad8311e56dad4909a75dd0479edeed30, retry: 0 +2024-05-25 00:13:28.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:28.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4677ms +2024-05-25 00:13:28.338 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7" +2024-05-25 00:13:28.338 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:13:28.338 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:13:28.367 +02:00 [INF] Received HTTP response headers after 29.0591ms - 200 +2024-05-25 00:13:28.367 +02:00 [INF] End processing HTTP request after 29.4801ms - 200 +2024-05-25 00:13:28.367 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:13:28.368 +02:00 [INF] Start processing HTTP request GET "http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e" +2024-05-25 00:13:28.368 +02:00 [INF] Start processing HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-25 00:13:28.368 +02:00 [INF] Sending HTTP request GET http://localhost:5007/students/af98ceda-1483-4c51-a602-89e5537ec89e +2024-05-25 00:13:28.399 +02:00 [INF] Received HTTP response headers after 31.0276ms - 200 +2024-05-25 00:13:28.399 +02:00 [INF] End processing HTTP request after 31.4372ms - 200 +2024-05-25 00:13:28.400 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 00:13:28.425 +02:00 [INF] Adding notification to StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:13:28.484 +02:00 [INF] Updated StudentNotifications for UserId=4ee4d85f-4d77-4f3b-98c6-0a5c884289a7 +2024-05-25 00:13:28.513 +02:00 [INF] Handled a message: pending_friend_accepted with ID: 8de2ce8380a04c00b2c25ea5ca76a59f, Correlation ID: ad8311e56dad4909a75dd0479edeed30, retry: 0 +2024-05-25 00:13:31.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:31.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:31.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:31.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7918ms +2024-05-25 00:13:33.081 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/ad2b2018-f4a3-4b00-b21e-d4ef2c10fbcf - null null +2024-05-25 00:13:33.082 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:33.111 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:13:33.112 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/ad2b2018-f4a3-4b00-b21e-d4ef2c10fbcf - 200 null application/json 31.6011ms +2024-05-25 00:13:33.171 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/ad2b2018-f4a3-4b00-b21e-d4ef2c10fbcf/status - application/json null +2024-05-25 00:13:33.171 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:13:33.289 +02:00 [INF] Updated the status of notification with id: ad2b2018-f4a3-4b00-b21e-d4ef2c10fbcf to: Read. +2024-05-25 00:13:33.290 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:13:33.290 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7/ad2b2018-f4a3-4b00-b21e-d4ef2c10fbcf/status - 200 0 null 119.3936ms +2024-05-25 00:13:41.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:41.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:41.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:41.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.8386ms +2024-05-25 00:13:43.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:43.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:43.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:43.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9878ms +2024-05-25 00:13:46.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:46.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:46.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:46.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6057ms +2024-05-25 00:13:56.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:56.916 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:56.949 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:56.950 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1871ms +2024-05-25 00:13:58.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:13:58.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:58.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:13:58.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3063ms +2024-05-25 00:14:01.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:01.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:01.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:01.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5599ms +2024-05-25 00:14:11.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:11.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:11.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:11.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9645ms +2024-05-25 00:14:13.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:13.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:13.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:13.310 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.135ms +2024-05-25 00:14:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:16.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:16.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:16.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1242ms +2024-05-25 00:14:26.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:26.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:26.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:26.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6855ms +2024-05-25 00:14:28.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:28.282 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:28.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:28.314 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4002ms +2024-05-25 00:14:31.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:31.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:31.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:31.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2447ms +2024-05-25 00:14:41.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:41.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:41.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:41.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.544ms +2024-05-25 00:14:43.288 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:43.289 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:43.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:43.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.153ms +2024-05-25 00:14:46.568 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:46.569 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:46.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:46.601 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5217ms +2024-05-25 00:14:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:56.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:56.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:56.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9591ms +2024-05-25 00:14:58.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:14:58.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:58.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:14:58.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3175ms +2024-05-25 00:15:01.567 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:01.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:01.596 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:01.596 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3576ms +2024-05-25 00:15:11.872 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:11.873 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:11.902 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:11.903 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.8103ms +2024-05-25 00:15:11.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:11.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:11.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:11.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7342ms +2024-05-25 00:15:12.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:12.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:12.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:12.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7923ms +2024-05-25 00:15:13.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:13.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:13.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:13.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0437ms +2024-05-25 00:15:16.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:16.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:16.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:16.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1062ms +2024-05-25 00:15:17.367 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:17.368 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:17.396 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:17.396 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.2797ms +2024-05-25 00:15:20.416 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-25 00:15:20.417 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:15:20.447 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:15:20.448 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 31.2935ms +2024-05-25 00:15:22.139 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:22.139 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:22.166 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:22.166 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 27.636ms +2024-05-25 00:15:26.751 +02:00 [INF] Request starting HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - application/json null +2024-05-25 00:15:26.751 +02:00 [INF] Executing endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:15:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:26.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:26.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.534ms +2024-05-25 00:15:27.020 +02:00 [INF] Updated the status of notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe to: Read. +2024-05-25 00:15:27.020 +02:00 [INF] Executed endpoint 'HTTP: PUT notifications/{userId}/{notificationId}/status' +2024-05-25 00:15:27.020 +02:00 [INF] Request finished HTTP/1.1 PUT http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe/status - 200 0 null 269.0102ms +2024-05-25 00:15:28.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:28.286 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:28.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:28.318 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1582ms +2024-05-25 00:15:29.792 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-25 00:15:29.792 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:15:29.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}/{notificationId}' +2024-05-25 00:15:29.824 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 null application/json 32.2016ms +2024-05-25 00:15:31.565 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:31.565 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:31.593 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:31.593 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3823ms +2024-05-25 00:15:32.337 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:32.340 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:32.375 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:32.375 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 37.7824ms +2024-05-25 00:15:41.179 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:41.185 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.216 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.219 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 38.9124ms +2024-05-25 00:15:41.829 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:41.830 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.865 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.2234ms +2024-05-25 00:15:41.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:41.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:41.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2935ms +2024-05-25 00:15:43.287 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:43.287 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.313 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-25 00:15:43.313 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.315 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.315 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4486ms +2024-05-25 00:15:43.342 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.342 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.088ms +2024-05-25 00:15:43.931 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:43.931 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.959 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:43.961 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.9181ms +2024-05-25 00:15:45.320 +02:00 [INF] Request starting HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - null null +2024-05-25 00:15:45.321 +02:00 [INF] Executing endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-25 00:15:45.559 +02:00 [INF] Deleted notification with id: 6546a460-29a2-4d0a-9ef8-842d70c8febe. +2024-05-25 00:15:45.559 +02:00 [INF] Executed endpoint 'HTTP: DELETE notifications/notification/{userId}/{notificationId}' +2024-05-25 00:15:45.559 +02:00 [INF] Request finished HTTP/1.1 DELETE http://localhost:5000/notifications/notification/af98ceda-1483-4c51-a602-89e5537ec89e/6546a460-29a2-4d0a-9ef8-842d70c8febe - 200 0 null 239.3592ms +2024-05-25 00:15:46.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:46.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:46.591 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:46.591 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3643ms +2024-05-25 00:15:47.018 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:47.018 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:47.046 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:47.046 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.4521ms +2024-05-25 00:15:47.652 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:47.653 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:47.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=3&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.0242ms +2024-05-25 00:15:48.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:48.226 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:48.258 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:48.259 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.5045ms +2024-05-25 00:15:48.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:15:48.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:48.718 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:48.718 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.3592ms +2024-05-25 00:15:54.813 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:54.813 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:54.843 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:54.843 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5231ms +2024-05-25 00:15:55.506 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-25 00:15:55.507 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:55.538 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:55.538 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 32.0341ms +2024-05-25 00:15:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4286ms +2024-05-25 00:15:58.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:15:58.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:58.293 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-25 00:15:58.295 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:58.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:58.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1743ms +2024-05-25 00:15:58.327 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:15:58.327 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=2&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 34.1513ms +2024-05-25 00:16:01.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:01.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:01.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:01.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4506ms +2024-05-25 00:16:11.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:11.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:11.933 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:11.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8253ms +2024-05-25 00:16:13.285 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:13.285 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:13.320 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:13.321 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0288ms +2024-05-25 00:16:16.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:16.566 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:16.594 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:16.594 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.033ms +2024-05-25 00:16:26.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:26.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:26.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:26.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.415ms +2024-05-25 00:16:28.283 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:28.284 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:28.317 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:28.317 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2696ms +2024-05-25 00:16:31.566 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:31.567 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:31.595 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:31.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6797ms +2024-05-25 00:16:41.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:41.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:41.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5004ms +2024-05-25 00:16:43.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:43.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:43.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:43.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5964ms +2024-05-25 00:16:46.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:46.563 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:46.592 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:46.592 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9111ms +2024-05-25 00:16:56.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:56.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3312ms +2024-05-25 00:16:58.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:16:58.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:58.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:16:58.306 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8295ms +2024-05-25 00:17:01.563 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:01.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:01.597 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:01.598 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.3391ms +2024-05-25 00:17:11.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:11.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:11.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5896ms +2024-05-25 00:17:13.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:13.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:13.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:13.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8849ms +2024-05-25 00:17:16.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:16.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:16.814 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:16.814 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 250.5661ms +2024-05-25 00:17:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:26.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8676ms +2024-05-25 00:17:28.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:28.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:28.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:28.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8494ms +2024-05-25 00:17:31.564 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:31.564 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:31.593 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:31.595 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9216ms +2024-05-25 00:17:41.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.892ms +2024-05-25 00:17:43.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:43.274 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:43.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:43.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2102ms +2024-05-25 00:17:58.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:17:58.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:58.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:17:58.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3488ms +2024-05-25 00:18:13.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:13.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:13.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:13.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0569ms +2024-05-25 00:18:24.448 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:24.449 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:24.476 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:24.476 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1263ms +2024-05-25 00:18:24.480 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:24.480 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:24.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:24.512 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5135ms +2024-05-25 00:18:26.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:26.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:26.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7465ms +2024-05-25 00:18:28.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:28.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:28.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:28.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0092ms +2024-05-25 00:18:39.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:39.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:39.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:39.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3261ms +2024-05-25 00:18:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5361ms +2024-05-25 00:18:43.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:43.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:43.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:43.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9261ms +2024-05-25 00:18:54.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:54.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:54.507 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:54.507 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3179ms +2024-05-25 00:18:56.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:56.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8984ms +2024-05-25 00:18:58.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:18:58.278 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:58.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:18:58.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6342ms +2024-05-25 00:19:09.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:09.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:09.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:09.516 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7868ms +2024-05-25 00:19:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:11.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6706ms +2024-05-25 00:19:13.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:13.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:13.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:13.309 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9523ms +2024-05-25 00:19:24.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:24.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:24.505 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:24.506 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2492ms +2024-05-25 00:19:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:26.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:26.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7969ms +2024-05-25 00:19:28.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:28.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:28.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:28.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4264ms +2024-05-25 00:19:39.479 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:39.479 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:39.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:39.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7701ms +2024-05-25 00:19:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3607ms +2024-05-25 00:19:43.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:43.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:43.313 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:43.313 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8593ms +2024-05-25 00:19:54.478 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:54.478 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:54.508 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:54.508 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/a3c0bb8f-4e14-4b0c-aa6e-11adda4d1ea8?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3187ms +2024-05-25 00:19:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1544ms +2024-05-25 00:19:58.305 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:19:58.306 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:58.335 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:19:58.335 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3435ms +2024-05-25 00:20:13.282 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:13.283 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:13.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:13.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5793ms +2024-05-25 00:20:28.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:28.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:28.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:28.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1204ms +2024-05-25 00:20:43.278 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:43.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:43.325 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:43.325 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 47.0122ms +2024-05-25 00:20:58.298 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:58.298 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:58.329 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:58.331 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1344ms +2024-05-25 00:20:58.997 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:58.997 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:59.025 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:59.025 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3586ms +2024-05-25 00:20:59.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:20:59.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:59.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:20:59.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9496ms +2024-05-25 00:21:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2959ms +2024-05-25 00:21:13.280 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:13.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:13.309 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:13.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5986ms +2024-05-25 00:21:14.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:14.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:14.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:14.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1789ms +2024-05-25 00:21:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:26.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7012ms +2024-05-25 00:21:28.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:28.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:28.306 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:28.307 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4275ms +2024-05-25 00:21:29.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:29.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:29.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:29.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8227ms +2024-05-25 00:21:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3264ms +2024-05-25 00:21:43.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:43.280 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:43.310 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:43.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1938ms +2024-05-25 00:21:44.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:44.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:44.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:44.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8933ms +2024-05-25 00:21:56.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:56.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8459ms +2024-05-25 00:21:58.281 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:58.281 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:58.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:58.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4779ms +2024-05-25 00:21:59.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:21:59.029 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:59.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:21:59.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4012ms +2024-05-25 00:22:11.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:11.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:11.942 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:11.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0692ms +2024-05-25 00:22:13.279 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:13.279 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:13.308 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:13.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3724ms +2024-05-25 00:22:14.028 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:14.028 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:14.054 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:14.054 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.4493ms +2024-05-25 00:22:26.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:26.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9449ms +2024-05-25 00:22:28.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:28.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:28.305 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:28.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5003ms +2024-05-25 00:22:29.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:29.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:29.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:29.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3637ms +2024-05-25 00:22:41.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:41.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:41.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8166ms +2024-05-25 00:22:44.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:44.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:44.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:44.063 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9269ms +2024-05-25 00:22:56.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:56.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:56.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9479ms +2024-05-25 00:22:59.027 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:22:59.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:59.056 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:22:59.057 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6087ms +2024-05-25 00:23:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3122ms +2024-05-25 00:23:14.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:14.027 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:14.055 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:14.055 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1954ms +2024-05-25 00:23:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0599ms +2024-05-25 00:23:29.026 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:29.026 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:29.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:29.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6264ms +2024-05-25 00:23:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:41.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:41.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9082ms +2024-05-25 00:23:44.030 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:44.030 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:44.062 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:44.062 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2068ms +2024-05-25 00:23:56.914 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:56.915 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:56.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:56.948 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.54ms +2024-05-25 00:23:59.047 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:23:59.047 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:59.080 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:23:59.081 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/f0f9b005-5965-42e3-b719-ce3b39869295?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2292ms +2024-05-25 00:24:54.243 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:24:54.244 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:54.271 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:54.272 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7275ms +2024-05-25 00:24:54.275 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:24:54.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:54.303 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:54.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3854ms +2024-05-25 00:24:56.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:24:56.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:56.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:24:56.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2741ms +2024-05-25 00:25:09.276 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:09.276 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:09.307 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:09.308 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9865ms +2024-05-25 00:25:11.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.459ms +2024-05-25 00:25:24.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:24.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:24.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:24.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0838ms +2024-05-25 00:25:26.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:26.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:26.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.735ms +2024-05-25 00:25:39.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:39.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:39.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:39.302 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1312ms +2024-05-25 00:25:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:41.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4855ms +2024-05-25 00:25:54.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:54.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:54.302 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:54.303 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5936ms +2024-05-25 00:25:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:25:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:25:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3942ms +2024-05-25 00:26:09.277 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:09.277 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:09.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:09.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8109ms +2024-05-25 00:26:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:11.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7536ms +2024-05-25 00:26:24.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:24.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:24.301 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:24.301 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8213ms +2024-05-25 00:26:26.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:26.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7644ms +2024-05-25 00:26:38.024 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:38.025 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:38.053 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:38.053 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9367ms +2024-05-25 00:26:38.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:38.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:38.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:38.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9378ms +2024-05-25 00:26:41.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:41.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:41.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:41.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.287ms +2024-05-25 00:26:53.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:53.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:53.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:53.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4975ms +2024-05-25 00:26:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:26:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:26:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3524ms +2024-05-25 00:27:08.060 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:08.061 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:08.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:08.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2067ms +2024-05-25 00:27:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.88ms +2024-05-25 00:27:23.059 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:23.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:23.091 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:23.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1746ms +2024-05-25 00:27:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:26.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:26.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4286ms +2024-05-25 00:27:38.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:38.059 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:38.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:38.089 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9181ms +2024-05-25 00:27:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:41.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:41.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.5041ms +2024-05-25 00:27:53.057 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:53.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:53.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:53.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.658ms +2024-05-25 00:27:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:27:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:27:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2707ms +2024-05-25 00:28:08.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:08.056 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:08.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:08.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5729ms +2024-05-25 00:28:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:11.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7686ms +2024-05-25 00:28:23.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:23.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:23.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:23.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5243ms +2024-05-25 00:28:26.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:26.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8763ms +2024-05-25 00:28:38.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:38.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:38.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:38.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3726ms +2024-05-25 00:28:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:41.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:41.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:41.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.222ms +2024-05-25 00:28:53.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:53.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:53.090 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:53.091 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1141ms +2024-05-25 00:28:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:28:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:28:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7793ms +2024-05-25 00:29:08.058 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:08.058 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:08.086 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:08.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7519ms +2024-05-25 00:29:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:11.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:11.943 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.7528ms +2024-05-25 00:29:23.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:23.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:23.085 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:23.086 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1979ms +2024-05-25 00:29:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:26.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:26.962 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:26.963 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 52.3712ms +2024-05-25 00:29:38.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:38.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:38.087 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:38.087 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9123ms +2024-05-25 00:29:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:41.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7145ms +2024-05-25 00:29:53.056 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:53.057 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:53.084 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:53.085 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2326ms +2024-05-25 00:29:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:29:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:56.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:29:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2174ms +2024-05-25 00:30:01.418 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:30:01.419 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:01.449 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:01.450 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 32.2401ms +2024-05-25 00:30:03.798 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:03.798 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:03.825 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:03.826 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8846ms +2024-05-25 00:30:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:11.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0251ms +2024-05-25 00:30:26.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:26.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:26.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:26.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9684ms +2024-05-25 00:30:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7868ms +2024-05-25 00:30:42.918 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:42.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:42.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:42.946 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3732ms +2024-05-25 00:30:42.958 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:42.959 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:42.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:42.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7826ms +2024-05-25 00:30:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:30:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:56.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:30:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0584ms +2024-05-25 00:31:11.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.364ms +2024-05-25 00:31:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:26.946 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:26.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0175ms +2024-05-25 00:31:41.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:41.943 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:41.987 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:41.988 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 55.4743ms +2024-05-25 00:31:47.651 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:47.651 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:47.681 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:47.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0081ms +2024-05-25 00:31:47.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:47.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:47.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:47.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8352ms +2024-05-25 00:31:49.328 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:31:49.329 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:49.357 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:49.357 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.0637ms +2024-05-25 00:31:56.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:31:56.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:31:56.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0195ms +2024-05-25 00:32:02.807 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:02.812 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:02.863 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:02.878 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 71.0346ms +2024-05-25 00:32:11.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:11.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:12.430 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:12.430 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 518.4667ms +2024-05-25 00:32:17.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:17.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:17.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:17.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3739ms +2024-05-25 00:32:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:26.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:26.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:26.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2733ms +2024-05-25 00:32:32.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:32.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:32.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:32.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6283ms +2024-05-25 00:32:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:41.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:41.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:41.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5424ms +2024-05-25 00:32:42.855 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:32:42.855 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:42.882 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:42.883 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 28.1578ms +2024-05-25 00:32:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:47.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:47.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:47.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9893ms +2024-05-25 00:32:56.917 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:32:56.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:56.947 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:32:56.947 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9522ms +2024-05-25 00:33:02.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:02.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:02.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:02.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1919ms +2024-05-25 00:33:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:11.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:11.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6949ms +2024-05-25 00:33:17.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:17.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:17.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:17.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4117ms +2024-05-25 00:33:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:26.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:26.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9965ms +2024-05-25 00:33:32.689 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:32.689 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:32.716 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:32.716 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7071ms +2024-05-25 00:33:40.368 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:33:40.369 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:40.401 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:40.401 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.1901ms +2024-05-25 00:33:41.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8104ms +2024-05-25 00:33:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:47.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:47.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:47.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4256ms +2024-05-25 00:33:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:33:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:33:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8697ms +2024-05-25 00:34:02.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:02.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:02.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:02.714 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5512ms +2024-05-25 00:34:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:11.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:11.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9515ms +2024-05-25 00:34:17.703 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:17.705 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:17.737 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:17.737 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.1941ms +2024-05-25 00:34:26.919 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:26.919 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:26.948 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:26.949 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0038ms +2024-05-25 00:34:32.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:32.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:32.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:32.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 25.925ms +2024-05-25 00:34:41.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:41.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0747ms +2024-05-25 00:34:47.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:47.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:47.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:47.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2695ms +2024-05-25 00:34:56.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:34:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:34:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9415ms +2024-05-25 00:35:02.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:02.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:02.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:02.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3964ms +2024-05-25 00:35:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:11.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.682ms +2024-05-25 00:35:17.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:17.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:17.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:17.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6488ms +2024-05-25 00:35:26.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:26.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:26.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7699ms +2024-05-25 00:35:32.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:32.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:32.708 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:32.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2772ms +2024-05-25 00:35:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4026ms +2024-05-25 00:35:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:47.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:47.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:47.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2926ms +2024-05-25 00:35:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:35:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:35:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7053ms +2024-05-25 00:36:02.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:02.685 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:02.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:02.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2871ms +2024-05-25 00:36:11.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:11.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:11.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5989ms +2024-05-25 00:36:17.696 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:17.697 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:17.832 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:17.833 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 136.4267ms +2024-05-25 00:36:26.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:26.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:26.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:26.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9512ms +2024-05-25 00:36:32.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:32.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:32.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:32.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.546ms +2024-05-25 00:36:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:41.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6389ms +2024-05-25 00:36:47.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:47.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:47.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:47.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9724ms +2024-05-25 00:36:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:36:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:36:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3705ms +2024-05-25 00:37:02.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:02.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:02.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:02.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9092ms +2024-05-25 00:37:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:11.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0254ms +2024-05-25 00:37:14.825 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:14.826 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:14.852 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:14.853 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4238ms +2024-05-25 00:37:16.334 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:37:16.334 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:16.360 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:16.360 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 26.1091ms +2024-05-25 00:37:17.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-25 00:37:17.618 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:17.647 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:17.648 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 30.5911ms +2024-05-25 00:37:17.685 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:17.686 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:17.713 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:17.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0252ms +2024-05-25 00:37:26.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:26.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6588ms +2024-05-25 00:37:32.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:32.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:32.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:32.713 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1106ms +2024-05-25 00:37:41.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:41.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:41.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:41.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8632ms +2024-05-25 00:37:47.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:47.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:47.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:47.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8414ms +2024-05-25 00:37:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:37:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:37:56.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8908ms +2024-05-25 00:38:02.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:02.683 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:02.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:02.710 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3619ms +2024-05-25 00:38:11.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:11.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:11.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3679ms +2024-05-25 00:38:17.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:17.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:17.717 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:17.717 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3763ms +2024-05-25 00:38:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:26.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0318ms +2024-05-25 00:38:32.686 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:32.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:32.712 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:32.712 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.0065ms +2024-05-25 00:38:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:41.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3312ms +2024-05-25 00:38:47.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:47.687 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:47.714 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:47.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0057ms +2024-05-25 00:38:56.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:38:56.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:38:56.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8591ms +2024-05-25 00:39:02.687 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:02.688 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:02.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:02.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6811ms +2024-05-25 00:39:11.913 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:11.914 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:11.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:11.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1608ms +2024-05-25 00:39:17.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:17.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:17.715 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:17.715 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2395ms +2024-05-25 00:39:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:26.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:26.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2149ms +2024-05-25 00:39:32.682 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:32.682 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:32.709 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:32.709 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.77ms +2024-05-25 00:39:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9782ms +2024-05-25 00:39:47.683 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:47.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:47.711 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:47.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.498ms +2024-05-25 00:39:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:39:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:39:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.762ms +2024-05-25 00:40:02.684 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:02.684 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:02.710 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:02.711 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/266aa552-af23-4e37-90a6-84528857decf?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.666ms +2024-05-25 00:40:18.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:18.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:18.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:18.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3836ms +2024-05-25 00:40:18.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:18.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:18.606 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:18.606 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8736ms +2024-05-25 00:40:26.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:26.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:26.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2703ms +2024-05-25 00:40:33.575 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:33.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:33.605 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:33.605 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8994ms +2024-05-25 00:40:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4888ms +2024-05-25 00:40:47.443 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:47.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:47.471 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:47.472 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3683ms +2024-05-25 00:40:47.481 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:47.481 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:47.512 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:47.513 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.775ms +2024-05-25 00:40:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:40:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:40:56.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7706ms +2024-05-25 00:41:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:41:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:11.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9163ms +2024-05-25 00:41:26.912 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:41:26.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:26.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:26.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1861ms +2024-05-25 00:41:41.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:41:41.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:41.944 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:41.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2515ms +2024-05-25 00:41:56.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:41:56.912 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:56.941 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:41:56.942 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0987ms +2024-05-25 00:42:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:42:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:11.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3229ms +2024-05-25 00:42:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:42:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:26.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2569ms +2024-05-25 00:42:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:42:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8873ms +2024-05-25 00:42:56.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:42:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:56.945 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:42:56.945 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.4328ms +2024-05-25 00:43:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:11.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:11.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8777ms +2024-05-25 00:43:26.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:26.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:26.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2518ms +2024-05-25 00:43:41.842 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:41.842 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.869 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6795ms +2024-05-25 00:43:41.873 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:41.874 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.901 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.902 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0537ms +2024-05-25 00:43:41.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:41.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2761ms +2024-05-25 00:43:44.347 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:43:44.348 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.378 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.378 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.5116ms +2024-05-25 00:43:44.412 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:44.412 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.440 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.440 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5132ms +2024-05-25 00:43:44.444 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:44.444 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.472 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:44.473 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7277ms +2024-05-25 00:43:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:43:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:56.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:43:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.898ms +2024-05-25 00:44:11.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:11.934 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:11.934 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2581ms +2024-05-25 00:44:26.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:26.906 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:26.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:26.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0631ms +2024-05-25 00:44:40.843 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:40.843 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:40.870 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:40.870 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6344ms +2024-05-25 00:44:40.878 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:40.878 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:40.905 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:40.905 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5471ms +2024-05-25 00:44:41.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:41.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:41.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0518ms +2024-05-25 00:44:42.063 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:44:42.063 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:42.092 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:42.092 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 29.3954ms +2024-05-25 00:44:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:44:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:44:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7404ms +2024-05-25 00:45:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:11.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:11.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:11.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.7507ms +2024-05-25 00:45:26.916 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:26.918 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:27.026 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:27.027 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 110.5807ms +2024-05-25 00:45:33.062 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:33.062 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:33.089 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:33.090 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7665ms +2024-05-25 00:45:33.095 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:33.095 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:33.127 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:33.127 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9481ms +2024-05-25 00:45:34.220 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:45:34.220 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:34.250 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:34.250 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 30.8924ms +2024-05-25 00:45:41.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:41.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:41.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4878ms +2024-05-25 00:45:56.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:45:56.913 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:56.943 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:45:56.944 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6553ms +2024-05-25 00:46:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:46:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7518ms +2024-05-25 00:46:26.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:46:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:26.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:26.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9018ms +2024-05-25 00:46:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:46:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:41.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:41.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2118ms +2024-05-25 00:46:56.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:46:56.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:56.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:46:56.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8934ms +2024-05-25 00:47:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:11.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6965ms +2024-05-25 00:47:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:26.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:26.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6463ms +2024-05-25 00:47:41.920 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:41.922 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:41.950 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:41.951 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1909ms +2024-05-25 00:47:51.932 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:51.932 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:51.958 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:51.959 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1734ms +2024-05-25 00:47:51.963 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:51.964 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:51.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:51.993 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5446ms +2024-05-25 00:47:53.466 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 00:47:53.468 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:53.497 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:53.498 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 31.8221ms +2024-05-25 00:47:56.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:47:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:47:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1416ms +2024-05-25 00:48:06.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:06.970 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:06.998 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:06.999 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9707ms +2024-05-25 00:48:11.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:11.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:11.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:11.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1169ms +2024-05-25 00:48:21.966 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:21.966 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:21.992 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:21.992 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3259ms +2024-05-25 00:48:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:26.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:26.935 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4012ms +2024-05-25 00:48:36.983 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:36.985 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:37.038 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:37.039 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 56.3844ms +2024-05-25 00:48:41.908 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5257ms +2024-05-25 00:48:51.970 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:51.972 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:52.001 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:52.002 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.621ms +2024-05-25 00:48:56.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:48:56.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:48:56.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9384ms +2024-05-25 00:49:06.967 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:06.967 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:06.995 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:06.996 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7825ms +2024-05-25 00:49:11.910 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:11.910 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:11.940 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:11.941 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7549ms +2024-05-25 00:49:23.690 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:23.693 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:23.722 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:23.723 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.1675ms +2024-05-25 00:49:24.134 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:24.134 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:24.161 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:24.161 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9108ms +2024-05-25 00:49:26.909 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:26.909 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:26.952 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:26.952 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.5004ms +2024-05-25 00:49:37.083 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:37.083 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:37.110 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:37.110 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7552ms +2024-05-25 00:49:37.117 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:37.118 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:37.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:37.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9271ms +2024-05-25 00:49:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:41.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6553ms +2024-05-25 00:49:52.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:52.114 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:52.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:52.142 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8048ms +2024-05-25 00:49:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:49:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:56.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:49:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3953ms +2024-05-25 00:50:07.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:07.112 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:07.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:07.141 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9974ms +2024-05-25 00:50:11.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:11.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:11.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:11.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2852ms +2024-05-25 00:50:22.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:22.112 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:22.137 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:22.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6319ms +2024-05-25 00:50:26.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:26.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:26.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:26.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5462ms +2024-05-25 00:50:37.110 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:37.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:37.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:37.139 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6407ms +2024-05-25 00:50:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:41.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:41.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:41.938 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3548ms +2024-05-25 00:50:52.112 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:52.112 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:52.141 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:52.145 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5539ms +2024-05-25 00:50:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:50:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:56.937 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:50:56.937 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.497ms +2024-05-25 00:51:07.114 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:07.115 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:07.142 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:07.143 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3363ms +2024-05-25 00:51:11.911 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:11.911 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:11.939 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:11.940 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8179ms +2024-05-25 00:51:22.118 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:22.119 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:22.146 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:22.147 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6375ms +2024-05-25 00:51:26.906 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:26.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:26.938 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:26.939 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3076ms +2024-05-25 00:51:37.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:37.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:37.138 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:37.138 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3037ms +2024-05-25 00:51:41.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:41.908 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:41.936 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:41.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2738ms +2024-05-25 00:51:52.111 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:52.111 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:52.140 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:52.140 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5243ms +2024-05-25 00:51:56.907 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:51:56.907 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:56.935 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:51:56.936 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/af98ceda-1483-4c51-a602-89e5537ec89e?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0576ms +2024-05-25 00:52:29.727 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:52:29.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:52:29.758 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:52:29.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9297ms +2024-05-25 00:52:30.142 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 00:52:30.142 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:52:30.179 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 00:52:30.179 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.7964ms +2024-05-25 01:00:31.654 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-25 01:00:31.706 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-25 01:00:31.769 +02:00 [INF] Notification Cleanup Service is running. +2024-05-25 01:00:31.824 +02:00 [INF] Registering a service [id: notifications-service:2aed7828e87b4830aaad29ed7439fbae] in Consul... +2024-05-25 01:00:31.843 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-25 01:00:31.846 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:00:31.847 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:00:31.855 +02:00 [INF] Received HTTP response headers after 6.6062ms - 200 +2024-05-25 01:00:31.856 +02:00 [INF] End processing HTTP request after 10.5412ms - 200 +2024-05-25 01:00:31.859 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 01:00:31.859 +02:00 [INF] Registered a service [id: notifications-service:2aed7828e87b4830aaad29ed7439fbae] in Consul. +2024-05-25 01:00:31.865 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-25 01:00:31.874 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-25 01:00:31.874 +02:00 [INF] Removed 0 old notifications. +2024-05-25 01:00:31.874 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-25 01:00:31.876 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-25 01:00:31.877 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-25 01:00:31.880 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-25 01:00:31.881 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-25 01:00:31.883 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-25 01:00:31.884 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-25 01:00:33.577 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:00:33.623 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:33.729 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:33.738 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 162.1633ms +2024-05-25 01:00:42.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:00:42.543 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:42.579 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:42.580 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.5015ms +2024-05-25 01:00:57.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:00:57.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:00:57.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.041ms +2024-05-25 01:01:10.217 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:10.218 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:10.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:10.257 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.1652ms +2024-05-25 01:01:10.658 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:10.659 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:10.688 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:10.688 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7616ms +2024-05-25 01:01:12.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:12.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0403ms +2024-05-25 01:01:25.435 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:25.436 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:25.465 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:25.465 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0369ms +2024-05-25 01:01:27.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:27.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:27.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9485ms +2024-05-25 01:01:40.428 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:40.429 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:40.460 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:40.461 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.39ms +2024-05-25 01:01:42.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:42.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:42.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:42.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8258ms +2024-05-25 01:01:55.459 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:55.459 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:55.487 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:55.487 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5582ms +2024-05-25 01:01:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:01:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:01:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.0815ms +2024-05-25 01:02:10.472 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:10.472 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:10.500 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:10.501 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7003ms +2024-05-25 01:02:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6438ms +2024-05-25 01:02:25.442 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:25.443 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:25.824 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:25.825 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 382.6948ms +2024-05-25 01:02:27.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4725ms +2024-05-25 01:02:40.457 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:40.458 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:40.485 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:40.485 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9506ms +2024-05-25 01:02:42.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:42.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:42.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:42.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.2056ms +2024-05-25 01:02:55.430 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:55.430 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:55.457 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:55.457 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1906ms +2024-05-25 01:02:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:02:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:02:57.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6328ms +2024-05-25 01:03:10.486 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:10.486 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:10.515 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:10.515 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.412ms +2024-05-25 01:03:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1763ms +2024-05-25 01:03:25.502 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:25.502 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:25.530 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:25.531 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9089ms +2024-05-25 01:03:27.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:27.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:27.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:27.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5432ms +2024-05-25 01:03:40.271 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:40.272 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:40.311 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:40.311 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.0369ms +2024-05-25 01:03:42.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:42.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:42.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.0832ms +2024-05-25 01:03:55.269 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:55.270 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:55.296 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:55.297 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2089ms +2024-05-25 01:03:57.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:03:57.541 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:57.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:03:57.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7359ms +2024-05-25 01:04:10.274 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:10.275 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:10.304 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:10.305 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6473ms +2024-05-25 01:04:12.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:12.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:12.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:12.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9957ms +2024-05-25 01:04:19.226 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:19.227 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:19.256 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:19.258 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.3572ms +2024-05-25 01:04:19.490 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:19.490 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:19.519 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:19.520 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0429ms +2024-05-25 01:04:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7708ms +2024-05-25 01:04:34.266 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:34.267 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:34.298 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:34.299 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4919ms +2024-05-25 01:04:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:42.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:42.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.8519ms +2024-05-25 01:04:49.270 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:49.271 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:49.300 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:49.300 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2371ms +2024-05-25 01:04:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:04:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:04:57.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5669ms +2024-05-25 01:05:04.265 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:04.265 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:04.292 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:04.292 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7501ms +2024-05-25 01:05:12.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:12.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0289ms +2024-05-25 01:05:12.573 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:12.574 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.601 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.602 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1073ms +2024-05-25 01:05:12.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:12.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:12.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4885ms +2024-05-25 01:05:18.209 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:18.210 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:18.237 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:18.238 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5409ms +2024-05-25 01:05:27.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:27.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:27.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2801ms +2024-05-25 01:05:27.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:27.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:27.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:27.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6914ms +2024-05-25 01:05:42.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:42.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8746ms +2024-05-25 01:05:42.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:42.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:42.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:42.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4307ms +2024-05-25 01:05:57.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:57.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:57.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.37ms +2024-05-25 01:05:57.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:05:57.604 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:57.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:05:57.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7849ms +2024-05-25 01:06:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2783ms +2024-05-25 01:06:12.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:12.615 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:12.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5333ms +2024-05-25 01:06:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:27.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:27.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6322ms +2024-05-25 01:06:27.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:27.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:27.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:27.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.575ms +2024-05-25 01:06:42.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:42.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:42.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:42.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6905ms +2024-05-25 01:06:42.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:42.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2498ms +2024-05-25 01:06:57.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:57.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.6955ms +2024-05-25 01:06:57.627 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:06:57.627 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:57.655 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:06:57.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7361ms +2024-05-25 01:07:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9387ms +2024-05-25 01:07:12.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:12.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:12.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:12.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2416ms +2024-05-25 01:07:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:27.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:27.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.4587ms +2024-05-25 01:07:27.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:27.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:27.643 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:27.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.1678ms +2024-05-25 01:07:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:42.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:42.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8745ms +2024-05-25 01:07:42.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:42.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:42.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6003ms +2024-05-25 01:07:57.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:57.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:57.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3757ms +2024-05-25 01:07:57.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:07:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:07:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3227ms +2024-05-25 01:08:12.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:12.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3324ms +2024-05-25 01:08:12.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:12.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.8005ms +2024-05-25 01:08:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:27.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:27.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:27.572 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8646ms +2024-05-25 01:08:27.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:27.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:27.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:27.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6463ms +2024-05-25 01:08:42.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:42.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:42.576 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:42.577 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 46.9459ms +2024-05-25 01:08:42.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:42.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:42.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1448ms +2024-05-25 01:08:57.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:57.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:57.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:57.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1079ms +2024-05-25 01:08:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:08:57.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:08:57.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1383ms +2024-05-25 01:09:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6083ms +2024-05-25 01:09:12.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:12.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:12.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:12.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.0723ms +2024-05-25 01:09:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:27.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3059ms +2024-05-25 01:09:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:27.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3677ms +2024-05-25 01:09:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:42.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.8047ms +2024-05-25 01:09:42.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:42.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7077ms +2024-05-25 01:09:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:57.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.9579ms +2024-05-25 01:09:57.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:09:57.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:57.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:09:57.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.0947ms +2024-05-25 01:10:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6144ms +2024-05-25 01:10:12.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:12.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:12.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:12.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4492ms +2024-05-25 01:10:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:27.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:27.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.207ms +2024-05-25 01:10:27.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:27.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:27.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8074ms +2024-05-25 01:10:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:42.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:42.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.6205ms +2024-05-25 01:10:42.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:42.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:42.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:42.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4865ms +2024-05-25 01:10:57.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:57.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:57.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.8907ms +2024-05-25 01:10:57.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:10:57.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:57.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:10:57.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.509ms +2024-05-25 01:11:12.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:12.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6668ms +2024-05-25 01:11:12.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:12.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:12.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:12.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6204ms +2024-05-25 01:11:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:27.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8567ms +2024-05-25 01:11:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:27.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:27.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:27.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3301ms +2024-05-25 01:11:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0702ms +2024-05-25 01:11:42.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:42.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:42.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:42.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8722ms +2024-05-25 01:11:57.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:57.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:57.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6291ms +2024-05-25 01:11:57.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:11:57.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:57.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:11:57.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.9302ms +2024-05-25 01:12:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:12.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.5058ms +2024-05-25 01:12:12.628 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:12.630 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:12.663 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:12.665 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.3123ms +2024-05-25 01:12:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:27.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:27.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4458ms +2024-05-25 01:12:27.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:27.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4668ms +2024-05-25 01:12:42.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:42.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:42.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9048ms +2024-05-25 01:12:42.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3866ms +2024-05-25 01:12:57.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:57.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:57.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7289ms +2024-05-25 01:12:57.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:12:57.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:57.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:12:57.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9977ms +2024-05-25 01:13:12.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:12.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:12.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3598ms +2024-05-25 01:13:12.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:12.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:12.651 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.6754ms +2024-05-25 01:13:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:27.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7886ms +2024-05-25 01:13:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:27.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:27.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9363ms +2024-05-25 01:13:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4248ms +2024-05-25 01:13:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:42.616 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:42.646 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:42.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0864ms +2024-05-25 01:13:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:57.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.828ms +2024-05-25 01:13:57.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:13:57.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:57.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:13:57.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1775ms +2024-05-25 01:14:12.560 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:12.561 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:12.600 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:12.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 42.4617ms +2024-05-25 01:14:12.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:12.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:12.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0397ms +2024-05-25 01:14:27.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:27.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:27.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:27.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.7732ms +2024-05-25 01:14:27.617 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:27.619 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:27.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:27.656 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.1849ms +2024-05-25 01:14:42.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:42.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6637ms +2024-05-25 01:14:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:42.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:42.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:42.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5219ms +2024-05-25 01:14:57.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:57.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:57.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6934ms +2024-05-25 01:14:57.616 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:14:57.617 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:57.646 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:14:57.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1611ms +2024-05-25 01:15:12.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:12.575 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:12.575 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 38.9505ms +2024-05-25 01:15:12.643 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:12.646 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:12.680 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:12.681 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.9664ms +2024-05-25 01:15:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:27.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:27.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2725ms +2024-05-25 01:15:27.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:27.615 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:27.704 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:27.705 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 91.2442ms +2024-05-25 01:15:42.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:42.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:42.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5368ms +2024-05-25 01:15:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:42.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:42.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:42.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4945ms +2024-05-25 01:15:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:57.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6445ms +2024-05-25 01:15:57.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:15:57.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:57.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:15:57.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7303ms +2024-05-25 01:16:12.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:12.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:12.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:12.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9836ms +2024-05-25 01:16:12.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:12.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:12.643 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:12.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1758ms +2024-05-25 01:16:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:27.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:27.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3733ms +2024-05-25 01:16:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:27.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:27.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:27.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6048ms +2024-05-25 01:16:42.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:42.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:42.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2996ms +2024-05-25 01:16:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:42.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:42.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5403ms +2024-05-25 01:16:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:57.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2563ms +2024-05-25 01:16:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:16:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:57.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:16:57.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4569ms +2024-05-25 01:17:12.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:12.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:12.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0413ms +2024-05-25 01:17:12.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:12.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:12.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1087ms +2024-05-25 01:17:27.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1924ms +2024-05-25 01:17:27.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:27.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:27.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5803ms +2024-05-25 01:17:42.541 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:42.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:42.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:42.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.4569ms +2024-05-25 01:17:42.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:42.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7646ms +2024-05-25 01:17:57.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:57.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:57.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:57.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0319ms +2024-05-25 01:17:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:17:57.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:57.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:17:57.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5036ms +2024-05-25 01:18:12.551 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:12.551 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:12.582 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:12.587 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.1091ms +2024-05-25 01:18:12.619 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:12.622 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:12.656 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:12.658 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.0654ms +2024-05-25 01:18:27.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5875ms +2024-05-25 01:18:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:27.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:27.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:27.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9608ms +2024-05-25 01:18:42.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:42.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3229ms +2024-05-25 01:18:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:42.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:42.643 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:42.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1777ms +2024-05-25 01:18:57.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:57.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9085ms +2024-05-25 01:18:57.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:18:57.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:57.643 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:18:57.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3579ms +2024-05-25 01:19:12.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:12.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:12.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1395ms +2024-05-25 01:19:12.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:12.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:12.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:12.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3817ms +2024-05-25 01:19:27.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0886ms +2024-05-25 01:19:27.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:27.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:27.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6493ms +2024-05-25 01:19:42.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:42.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8001ms +2024-05-25 01:19:42.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:42.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:42.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:42.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8327ms +2024-05-25 01:19:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:57.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:57.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.481ms +2024-05-25 01:19:57.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:19:57.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:57.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:19:57.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2966ms +2024-05-25 01:20:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:12.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:12.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7139ms +2024-05-25 01:20:12.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:12.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:12.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:12.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3996ms +2024-05-25 01:20:27.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:27.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:27.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:27.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8934ms +2024-05-25 01:20:27.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:27.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:27.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:27.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9647ms +2024-05-25 01:20:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:42.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.6111ms +2024-05-25 01:20:42.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:42.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:42.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:42.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8033ms +2024-05-25 01:20:57.539 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:57.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:57.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:57.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.444ms +2024-05-25 01:20:57.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:20:57.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:57.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:20:57.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6881ms +2024-05-25 01:21:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7095ms +2024-05-25 01:21:12.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:12.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:12.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:12.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4891ms +2024-05-25 01:21:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:27.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:27.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:27.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5817ms +2024-05-25 01:21:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:27.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:27.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 25.7904ms +2024-05-25 01:21:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:42.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4856ms +2024-05-25 01:21:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4494ms +2024-05-25 01:21:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:57.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:57.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6023ms +2024-05-25 01:21:57.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:21:57.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:57.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:21:57.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9396ms +2024-05-25 01:22:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:12.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.0922ms +2024-05-25 01:22:12.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:12.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:12.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:12.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2863ms +2024-05-25 01:22:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4186ms +2024-05-25 01:22:27.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:27.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:27.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:27.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2573ms +2024-05-25 01:22:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:42.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6575ms +2024-05-25 01:22:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:42.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:42.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:42.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1093ms +2024-05-25 01:22:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:57.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:57.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:57.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.2148ms +2024-05-25 01:22:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:22:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:57.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:22:57.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5989ms +2024-05-25 01:23:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:12.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1915ms +2024-05-25 01:23:12.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:12.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:12.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:12.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6524ms +2024-05-25 01:23:27.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:27.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:27.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:27.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5246ms +2024-05-25 01:23:27.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:27.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:27.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:27.641 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.41ms +2024-05-25 01:23:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:42.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:42.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4614ms +2024-05-25 01:23:42.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:42.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:42.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:42.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1221ms +2024-05-25 01:23:57.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:57.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:57.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1197ms +2024-05-25 01:23:57.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:23:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:23:57.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4522ms +2024-05-25 01:24:12.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:12.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:12.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:12.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7941ms +2024-05-25 01:24:12.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:12.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:12.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6557ms +2024-05-25 01:24:27.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:27.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:27.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:27.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2025ms +2024-05-25 01:24:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:27.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:27.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5505ms +2024-05-25 01:24:42.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:42.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6972ms +2024-05-25 01:24:42.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:42.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:42.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:42.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7412ms +2024-05-25 01:24:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:57.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:57.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7025ms +2024-05-25 01:24:57.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:24:57.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:57.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:24:57.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6377ms +2024-05-25 01:25:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2374ms +2024-05-25 01:25:12.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:12.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:12.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:12.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1924ms +2024-05-25 01:25:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:27.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3013ms +2024-05-25 01:25:27.616 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:27.617 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:27.645 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:27.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1549ms +2024-05-25 01:25:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6355ms +2024-05-25 01:25:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:42.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:42.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:42.645 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.753ms +2024-05-25 01:25:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:57.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:57.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4808ms +2024-05-25 01:25:57.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:25:57.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:57.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:25:57.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6973ms +2024-05-25 01:26:12.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:12.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:12.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:12.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.003ms +2024-05-25 01:26:12.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:12.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:12.643 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:12.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5345ms +2024-05-25 01:26:27.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:27.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:27.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:27.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.515ms +2024-05-25 01:26:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:27.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:27.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.0878ms +2024-05-25 01:26:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:42.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:42.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:42.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.819ms +2024-05-25 01:26:42.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:42.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1843ms +2024-05-25 01:26:57.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:57.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:57.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9313ms +2024-05-25 01:26:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:26:57.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:26:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7366ms +2024-05-25 01:27:12.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1025ms +2024-05-25 01:27:12.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:12.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:12.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:12.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9574ms +2024-05-25 01:27:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:27.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:27.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2865ms +2024-05-25 01:27:27.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:27.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:27.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:27.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2023ms +2024-05-25 01:27:42.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:42.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:42.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:42.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0456ms +2024-05-25 01:27:42.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:42.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:42.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:42.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5506ms +2024-05-25 01:27:57.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:57.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:57.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6321ms +2024-05-25 01:27:57.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:27:57.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:57.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:27:57.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4666ms +2024-05-25 01:28:12.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:12.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:12.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:12.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5387ms +2024-05-25 01:28:12.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:12.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:12.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:12.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.9802ms +2024-05-25 01:28:27.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:27.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1707ms +2024-05-25 01:28:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:27.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:27.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2011ms +2024-05-25 01:28:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4613ms +2024-05-25 01:28:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:42.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8136ms +2024-05-25 01:28:57.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:57.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:57.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9192ms +2024-05-25 01:28:57.604 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:28:57.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:57.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:28:57.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2937ms +2024-05-25 01:29:12.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:12.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:12.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6671ms +2024-05-25 01:29:12.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:12.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:12.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:12.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2974ms +2024-05-25 01:29:27.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:27.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:27.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:27.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6972ms +2024-05-25 01:29:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:27.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:27.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.6691ms +2024-05-25 01:29:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5998ms +2024-05-25 01:29:42.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:42.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:42.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:42.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5655ms +2024-05-25 01:29:57.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:57.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.6573ms +2024-05-25 01:29:57.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:29:57.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:57.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:29:57.643 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3413ms +2024-05-25 01:30:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:12.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:12.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:12.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5847ms +2024-05-25 01:30:12.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:12.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:12.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:12.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1443ms +2024-05-25 01:30:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:27.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:27.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:27.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.0125ms +2024-05-25 01:30:27.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:27.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:27.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:27.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3216ms +2024-05-25 01:30:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:42.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.5469ms +2024-05-25 01:30:42.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:42.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:42.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:42.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2509ms +2024-05-25 01:30:57.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:57.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:57.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0315ms +2024-05-25 01:30:57.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:30:57.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:57.631 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:30:57.631 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.7559ms +2024-05-25 01:31:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:12.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.605ms +2024-05-25 01:31:12.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:12.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:12.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:12.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.3414ms +2024-05-25 01:31:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1093ms +2024-05-25 01:31:27.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:27.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:27.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:27.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6445ms +2024-05-25 01:31:42.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:42.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.5818ms +2024-05-25 01:31:42.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:42.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:42.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4603ms +2024-05-25 01:31:57.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:57.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:57.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.385ms +2024-05-25 01:31:57.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:31:57.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:57.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:31:57.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8839ms +2024-05-25 01:32:12.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:12.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:12.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:13.646 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:13.647 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 1117.4744ms +2024-05-25 01:32:13.812 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:13.813 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 1203.6875ms +2024-05-25 01:32:27.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:27.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:27.664 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:27.664 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 134.243ms +2024-05-25 01:32:27.741 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:27.741 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 131.6548ms +2024-05-25 01:32:42.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:42.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.277ms +2024-05-25 01:32:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:42.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0628ms +2024-05-25 01:32:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:57.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:57.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:57.565 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3146ms +2024-05-25 01:32:57.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:32:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:57.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:32:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2888ms +2024-05-25 01:33:12.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:12.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7894ms +2024-05-25 01:33:12.611 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:12.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:12.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:12.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4626ms +2024-05-25 01:33:27.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:27.539 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:27.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:27.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.9024ms +2024-05-25 01:33:27.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:27.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:27.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:27.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3215ms +2024-05-25 01:33:42.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:42.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:42.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:42.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1765ms +2024-05-25 01:33:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:42.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.1532ms +2024-05-25 01:33:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:57.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1107ms +2024-05-25 01:33:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:33:57.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:57.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:33:57.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.646ms +2024-05-25 01:34:12.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:12.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:12.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:12.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4997ms +2024-05-25 01:34:12.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:12.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:12.633 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:12.633 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8861ms +2024-05-25 01:34:27.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:27.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:27.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:27.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 37.6234ms +2024-05-25 01:34:27.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:27.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:27.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:27.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7902ms +2024-05-25 01:34:42.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:42.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:42.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:42.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5798ms +2024-05-25 01:34:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:42.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7869ms +2024-05-25 01:34:57.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:57.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:57.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:57.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3824ms +2024-05-25 01:34:57.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:34:57.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:57.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:34:57.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.5469ms +2024-05-25 01:35:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9867ms +2024-05-25 01:35:12.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:12.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:12.632 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:12.632 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.8941ms +2024-05-25 01:35:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.3702ms +2024-05-25 01:35:27.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:27.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:27.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:27.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4685ms +2024-05-25 01:35:42.529 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:42.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:42.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:42.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6552ms +2024-05-25 01:35:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:42.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4209ms +2024-05-25 01:35:57.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:57.574 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:57.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 40.6468ms +2024-05-25 01:35:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:35:57.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:57.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:35:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3896ms +2024-05-25 01:36:12.528 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:12.529 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:12.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.8713ms +2024-05-25 01:36:12.605 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:12.605 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:12.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:12.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1771ms +2024-05-25 01:36:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:27.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:27.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.039ms +2024-05-25 01:36:27.614 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:27.614 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:27.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:27.644 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.621ms +2024-05-25 01:36:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:42.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2315ms +2024-05-25 01:36:42.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:42.606 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:42.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:42.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9762ms +2024-05-25 01:36:57.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:57.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:57.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3251ms +2024-05-25 01:36:57.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:36:57.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:57.635 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:36:57.635 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.9381ms +2024-05-25 01:37:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:12.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:12.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.3477ms +2024-05-25 01:37:12.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:12.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:12.641 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.9304ms +2024-05-25 01:37:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:27.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2358ms +2024-05-25 01:37:27.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:27.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:27.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:27.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.605ms +2024-05-25 01:37:42.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:42.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:42.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:42.570 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.4203ms +2024-05-25 01:37:42.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:42.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:42.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1596ms +2024-05-25 01:37:57.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:57.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:57.568 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:57.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.7841ms +2024-05-25 01:37:57.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:37:57.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:57.636 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:37:57.636 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7584ms +2024-05-25 01:38:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:12.542 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:12.573 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:12.574 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 34.4577ms +2024-05-25 01:38:12.618 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:12.620 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:12.651 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:12.655 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.2072ms +2024-05-25 01:38:27.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:27.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:27.571 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:27.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 39.4572ms +2024-05-25 01:38:27.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:27.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:27.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1372ms +2024-05-25 01:38:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5881ms +2024-05-25 01:38:42.613 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:42.613 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:42.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:42.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4561ms +2024-05-25 01:38:57.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:57.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:57.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8808ms +2024-05-25 01:38:57.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:38:57.609 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:38:57.638 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.4941ms +2024-05-25 01:39:12.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:12.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:12.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2399ms +2024-05-25 01:39:12.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:12.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:12.640 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:12.640 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9884ms +2024-05-25 01:39:27.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:27.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:27.556 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:27.556 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.2165ms +2024-05-25 01:39:27.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:27.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:27.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4925ms +2024-05-25 01:39:42.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:42.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:42.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:42.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0295ms +2024-05-25 01:39:42.615 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:42.616 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:42.644 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:42.646 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7511ms +2024-05-25 01:39:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:57.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:57.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2934ms +2024-05-25 01:39:57.610 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:39:57.611 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:57.637 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:39:57.637 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 26.3874ms +2024-05-25 01:40:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:12.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5838ms +2024-05-25 01:40:12.612 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:12.612 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:12.642 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:12.642 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.8571ms +2024-05-25 01:40:27.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:27.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:27.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:27.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.7817ms +2024-05-25 01:40:27.609 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:27.610 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:27.639 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:27.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3618ms +2024-05-25 01:40:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9874ms +2024-05-25 01:40:42.608 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:42.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:42.638 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:42.639 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.1754ms +2024-05-25 01:40:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:57.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:57.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8384ms +2024-05-25 01:40:57.607 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:40:57.608 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:57.649 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:40:57.649 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 41.9408ms +2024-05-25 01:41:12.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:41:12.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:41:12.558 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:41:12.558 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5583ms +2024-05-25 01:41:12.606 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:41:12.607 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:41:12.634 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:41:12.634 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.0012ms +2024-05-25 01:42:28.854 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:28.855 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:28.884 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:28.885 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4173ms +2024-05-25 01:42:28.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:28.891 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:28.921 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:28.921 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3896ms +2024-05-25 01:42:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:42.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:42.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7207ms +2024-05-25 01:42:43.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:43.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:44.246 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:44.247 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 355.6032ms +2024-05-25 01:42:57.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.7601ms +2024-05-25 01:42:58.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:42:58.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:58.916 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:42:58.916 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.9262ms +2024-05-25 01:43:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:12.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:12.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.1031ms +2024-05-25 01:43:13.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:13.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:13.925 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:13.926 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.5204ms +2024-05-25 01:43:27.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:27.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:27.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:27.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.437ms +2024-05-25 01:43:28.896 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:28.897 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:28.926 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:28.927 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0499ms +2024-05-25 01:43:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.5303ms +2024-05-25 01:43:43.886 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:43.886 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:43.915 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:43.915 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4592ms +2024-05-25 01:43:57.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:57.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.8594ms +2024-05-25 01:43:58.891 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:43:58.892 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:58.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:43:58.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5411ms +2024-05-25 01:44:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:12.566 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:12.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.555ms +2024-05-25 01:44:13.887 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:13.887 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:13.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:13.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0589ms +2024-05-25 01:44:27.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:27.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:27.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4634ms +2024-05-25 01:44:28.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:28.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:28.913 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:28.913 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.6275ms +2024-05-25 01:44:42.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:42.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:42.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9119ms +2024-05-25 01:44:43.889 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:43.890 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:43.919 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:43.919 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0475ms +2024-05-25 01:44:57.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:57.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:57.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:57.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.6409ms +2024-05-25 01:44:58.885 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:44:58.885 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:58.912 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:44:58.912 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.7694ms +2024-05-25 01:45:15.699 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:15.699 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:15.727 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:15.728 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0709ms +2024-05-25 01:45:15.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:15.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:15.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:15.765 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.936ms +2024-05-25 01:45:27.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:27.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:27.627 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:27.627 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 93.6613ms +2024-05-25 01:45:30.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:30.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:30.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:30.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5212ms +2024-05-25 01:45:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.0323ms +2024-05-25 01:45:45.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:45.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:45.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:45.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2321ms +2024-05-25 01:45:57.536 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:45:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:45:57.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.677ms +2024-05-25 01:46:03.002 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:03.002 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:03.030 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:03.030 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.548ms +2024-05-25 01:46:12.574 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:12.575 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:12.603 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:12.603 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6124ms +2024-05-25 01:46:15.736 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:15.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:15.765 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:15.766 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.4605ms +2024-05-25 01:46:19.009 +02:00 [INF] Deregistering a service [id: notifications-service:2aed7828e87b4830aaad29ed7439fbae] from Consul... +2024-05-25 01:46:19.009 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/deregister/notifications-service:2aed7828e87b4830aaad29ed7439fbae" +2024-05-25 01:46:19.010 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2aed7828e87b4830aaad29ed7439fbae +2024-05-25 01:46:19.010 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/deregister/notifications-service:2aed7828e87b4830aaad29ed7439fbae +2024-05-25 01:46:19.013 +02:00 [INF] Received HTTP response headers after 2.9306ms - 200 +2024-05-25 01:46:19.013 +02:00 [INF] End processing HTTP request after 3.3333ms - 200 +2024-05-25 01:46:19.013 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 01:46:19.014 +02:00 [INF] Deregistered a service [id: notifications-service:2aed7828e87b4830aaad29ed7439fbae] from Consul. +2024-05-25 01:46:25.834 +02:00 [WRN] The WebRootPath was not found: /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/wwwroot. Static files may be unavailable. +2024-05-25 01:46:25.927 +02:00 [INF] Outbox is enabled, type: 'Sequential', message processing every 2000 ms. +2024-05-25 01:46:25.998 +02:00 [INF] Notification Cleanup Service is running. +2024-05-25 01:46:26.090 +02:00 [INF] Registering a service [id: notifications-service:6e09882262d8489a875e7908578bdf55] in Consul... +2024-05-25 01:46:26.115 +02:00 [INF] Start processing HTTP request PUT "http://localhost:8500/v1/agent/service/register" +2024-05-25 01:46:26.120 +02:00 [INF] Start processing HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:46:26.121 +02:00 [INF] Sending HTTP request PUT http://localhost:8500/v1/agent/service/register +2024-05-25 01:46:26.133 +02:00 [INF] Received HTTP response headers after 8.493ms - 200 +2024-05-25 01:46:26.135 +02:00 [INF] End processing HTTP request after 15.4033ms - 200 +2024-05-25 01:46:26.140 +02:00 [INF] End processing HTTP request - "OK" +2024-05-25 01:46:26.141 +02:00 [INF] Registered a service [id: notifications-service:6e09882262d8489a875e7908578bdf55] in Consul. +2024-05-25 01:46:26.143 +02:00 [INF] Removed 0 old notifications. +2024-05-25 01:46:26.144 +02:00 [INF] Waiting 4 weeks before next cleanup. +2024-05-25 01:46:26.147 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.create_notification' with routing key: 'create_notification' for an exchange: 'notifications'. +2024-05-25 01:46:26.161 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.delete_notification' with routing key: 'delete_notification' for an exchange: 'notifications'. +2024-05-25 01:46:26.166 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.update_notification_status' with routing key: 'update_notification_status' for an exchange: 'notifications'. +2024-05-25 01:46:26.171 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_request_sent' with routing key: 'friend_request_sent' for an exchange: 'notifications'. +2024-05-25 01:46:26.173 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.friend_invited' with routing key: 'friend_invited' for an exchange: 'notifications'. +2024-05-25 01:46:26.176 +02:00 [INF] Declaring a queue: 'notifications-service/friends.friend_added' with routing key: 'friend_added' for an exchange: 'friends'. +2024-05-25 01:46:26.181 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.pending_friend_accepted' with routing key: 'pending_friend_accepted' for an exchange: 'notifications'. +2024-05-25 01:46:26.184 +02:00 [INF] Declaring a queue: 'notifications-service/friends.pending_friend_declined' with routing key: 'pending_friend_declined' for an exchange: 'friends'. +2024-05-25 01:46:26.188 +02:00 [INF] Declaring a queue: 'notifications-service/notifications.event_created' with routing key: 'event_created' for an exchange: 'notifications'. +2024-05-25 01:46:27.648 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:27.704 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:27.828 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:27.840 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 193.0033ms +2024-05-25 01:46:30.745 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:30.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:30.787 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:30.789 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 43.8747ms +2024-05-25 01:46:42.538 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:42.546 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:42.583 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:42.584 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 45.9906ms +2024-05-25 01:46:45.744 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:45.746 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:45.779 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:45.779 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3727ms +2024-05-25 01:46:57.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:46:57.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:57.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:46:57.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2491ms +2024-05-25 01:47:00.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:00.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:00.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:00.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5638ms +2024-05-25 01:47:12.534 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:12.535 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:12.564 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:12.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.063ms +2024-05-25 01:47:15.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:15.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:15.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:15.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.2811ms +2024-05-25 01:47:27.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:27.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:27.570 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:27.571 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 35.3921ms +2024-05-25 01:47:30.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:30.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:30.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:30.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.5389ms +2024-05-25 01:47:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:42.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:42.563 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:42.564 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.1757ms +2024-05-25 01:47:45.750 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:45.751 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:45.780 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:45.780 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.199ms +2024-05-25 01:47:57.537 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:47:57.538 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:47:57.568 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.4478ms +2024-05-25 01:48:00.741 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:00.742 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:00.772 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:00.773 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.4636ms +2024-05-25 01:48:12.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:12.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:12.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:12.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.3605ms +2024-05-25 01:48:15.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:15.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:15.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:15.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.6001ms +2024-05-25 01:48:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:27.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:27.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.3818ms +2024-05-25 01:48:30.734 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:30.735 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:30.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:30.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7643ms +2024-05-25 01:48:42.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:42.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:42.561 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.9815ms +2024-05-25 01:48:45.735 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:45.736 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:45.768 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:45.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 33.5593ms +2024-05-25 01:48:57.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:48:57.537 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:57.567 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:48:57.567 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 32.0092ms +2024-05-25 01:49:00.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:00.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:00.764 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:00.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.788ms +2024-05-25 01:49:12.533 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:12.534 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:12.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.6276ms +2024-05-25 01:49:15.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:15.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:15.769 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:15.769 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 36.708ms +2024-05-25 01:49:27.535 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:27.536 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:27.565 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:27.566 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.2319ms +2024-05-25 01:49:30.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:30.734 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:30.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:30.762 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.2766ms +2024-05-25 01:49:42.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:42.533 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:42.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:42.562 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.409ms +2024-05-25 01:49:45.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:45.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:45.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:45.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 31.0555ms +2024-05-25 01:49:57.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:49:57.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:57.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:49:57.559 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.3675ms +2024-05-25 01:50:00.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:00.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:00.763 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:00.764 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9185ms +2024-05-25 01:50:12.532 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:12.532 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:12.562 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:12.563 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.9423ms +2024-05-25 01:50:15.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:15.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:15.760 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:15.760 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.4462ms +2024-05-25 01:50:27.531 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:27.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:27.559 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:27.560 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.1064ms +2024-05-25 01:50:30.728 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:30.728 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:30.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:30.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.1293ms +2024-05-25 01:50:42.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:42.531 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:42.560 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:42.561 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.4298ms +2024-05-25 01:50:45.731 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:45.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:45.759 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:45.759 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.8977ms +2024-05-25 01:50:57.530 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:50:57.530 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:57.557 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:50:57.557 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 27.2679ms +2024-05-25 01:51:00.732 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:51:00.732 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:00.761 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:00.761 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 28.7171ms +2024-05-25 01:51:04.723 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status= - null null +2024-05-25 01:51:04.727 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:04.756 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:04.756 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status= - 200 null application/json 33.4641ms +2024-05-25 01:51:06.258 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:51:06.259 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:06.288 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:06.288 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 30.2565ms +2024-05-25 01:51:07.358 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Read - null null +2024-05-25 01:51:07.358 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:07.387 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:07.387 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Read - 200 null application/json 29.3248ms +2024-05-25 01:51:12.540 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:51:12.540 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:12.569 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:12.569 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/bf759205-b6b2-4f41-ad79-9ab58ccff882?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.0846ms +2024-05-25 01:51:15.733 +02:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - null null +2024-05-25 01:51:15.733 +02:00 [INF] Executing endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:15.762 +02:00 [INF] Executed endpoint 'HTTP: GET notifications/{userId}' +2024-05-25 01:51:15.763 +02:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/notifications/4ee4d85f-4d77-4f3b-98c6-0a5c884289a7?page=1&pageSize=10&sortOrder=desc&status=Unread - 200 null application/json 29.5885ms diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpac.227FE3DF.Up2Date b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpac.227FE3DF.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfo.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfo.cs new file mode 100644 index 000000000..ccb80173f --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.Notifications.Api")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.Notifications.Api")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.Notifications.Api")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfoInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfoInputs.cache new file mode 100644 index 000000000..f0890d716 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2d6a02b206ac77283cc075e6254c51c91df1cc844dbe932e799219bd1858d708 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..dce2d93c9 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.Students.Api +build_property.RootNamespace = MiniSpace.Services.Students.Api +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api +build_property._RazorSourceGeneratorDebug = diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 000000000..ca7b6e0b7 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("App.Metrics.AspNetCore.Mvc.Core")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("App.Metrics.AspNetCore.Mvc")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.Docs.Swagger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.Tracing.Jaeger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi.CQRS")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Convey.WebApi.Swagger")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("MiniSpace.Services.Notifications.Infrastructure")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenTracing.Contrib.NetCore")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Annotations")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.assets.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.assets.cache new file mode 100644 index 000000000..3d6ab3997 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.assets.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.AssemblyReference.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.AssemblyReference.cache new file mode 100644 index 000000000..027688926 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.CoreCompileInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..f27da924f --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +639de26f9859f0a332fc53b20d3a2be6a874ae08cab48c932f251ab661f28b82 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.FileListAbsolute.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..032a151fb --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.FileListAbsolute.txt @@ -0,0 +1,189 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.Development.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.docker.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/appsettings.local.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.runtimeconfig.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Endpoints.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Endpoints.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Health.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Mvc.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Reporting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Routing.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.AspNetCore.Tracking.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Concurrency.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.DependencyInjection.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Ascii.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.InfluxDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Formatters.Prometheus.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Abstractions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Checks.Http.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.DependencyInjection.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Ascii.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Health.Formatters.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Console.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.Http.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/App.Metrics.Reporting.InfluxDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Auth.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Commands.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Events.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.CQRS.Queries.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Discovery.Consul.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Docs.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.HTTP.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.LoadBalancing.Fabio.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Logging.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.Outbox.Mongo.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.MessageBrokers.RabbitMQ.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Metrics.AppMetrics.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.MongoDB.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Persistence.Redis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Secrets.Vault.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Security.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.Tracing.Jaeger.RabbitMQ.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.CQRS.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Security.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Convey.WebApi.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/DnsClient.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Elasticsearch.Net.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Figgle.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Communication.Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Jaeger.Senders.Thrift.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.Certificate.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Bson.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Driver.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Newtonsoft.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.System.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Open.Serialization.Json.Utf8Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/OpenTracing.Contrib.NetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Pipelines.Sockets.Unofficial.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Polly.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/protobuf-net.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/RabbitMQ.Client.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Scrutor.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.AspNetCore.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Compact.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Formatting.Elasticsearch.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Settings.Configuration.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Console.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Debug.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Elasticsearch.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.File.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Grafana.Loki.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.PeriodicBatching.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Serilog.Sinks.Seq.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SharpCompress.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/SmartFormat.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/StackExchange.Redis.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.ReDoc.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Diagnostics.PerformanceCounter.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Net.Http.WinHttpHandler.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Security.Permissions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.Primitives.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/System.Windows.Extensions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/Utf8Json.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/VaultSharp.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libsnappy64.so +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libzstd.so +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libsnappy64.dylib +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libzstd.dylib +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/libzstd.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy32.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/snappy64.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.MvcApplicationPartsAssemblyInfo.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.build.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.development.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.MiniSpace.Services.Notifications.Api.Microsoft.AspNetCore.StaticWebAssets.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.Notifications.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.Notifications.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.Notifications.Api.props +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.pack.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/scopedcss/bundle/MiniSpace.Services.Notifications.Api.styles.css +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpac.227FE3DF.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Api.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.genruntimeconfig.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Api.dll diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll new file mode 100644 index 000000000..75afbc038 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.genruntimeconfig.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.genruntimeconfig.cache new file mode 100644 index 000000000..592359df5 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.genruntimeconfig.cache @@ -0,0 +1 @@ +2133201ffb18b761231b3540f1b7acdc09fee8483706b7c4254df2dfefe53153 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb new file mode 100644 index 000000000..91d54d0d2 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.sourcelink.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/MiniSpace.Services.Notifications.Api.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/apphost b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/apphost new file mode 100755 index 000000000..dca9c8f40 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/apphost differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Api.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Api.dll new file mode 100644 index 000000000..737229a54 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Api.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Api.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Api.dll new file mode 100644 index 000000000..737229a54 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Api.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.build.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 000000000..fa4fea60b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "az/0fs/tnG0K/y+VXB1n6k3Rt+9n63NFgBRCN7IEZFc=", + "Source": "MiniSpace.Services.Notifications.Api", + "BasePath": "_content/MiniSpace.Services.Notifications.Api", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.Notifications.Api.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.Notifications.Api.props new file mode 100644 index 000000000..5a6032a7c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.MiniSpace.Services.Notifications.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.Notifications.Api.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.Notifications.Api.props new file mode 100644 index 000000000..d5337aff0 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.MiniSpace.Services.Notifications.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.Notifications.Api.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.Notifications.Api.props new file mode 100644 index 000000000..3ff0b160e --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.MiniSpace.Services.Notifications.Api.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.dgspec.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.dgspec.json new file mode 100644 index 000000000..871fe1e33 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.dgspec.json @@ -0,0 +1,389 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj", + "projectName": "MiniSpace.Services.Notifications.Api", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "projectName": "MiniSpace.Services.Notifications.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "projectName": "MiniSpace.Services.Notifications.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "projectName": "MiniSpace.Services.Notifications.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.props new file mode 100644 index 000000000..b0c9b906b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + + /home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0 + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.targets b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/MiniSpace.Services.Notifications.Api.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.assets.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.assets.json new file mode 100644 index 000000000..37662f10c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.assets.json @@ -0,0 +1,12533 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "ApacheThrift/0.14.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Logging.Console": "3.1.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.1/Thrift.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": {} + } + }, + "App.Metrics/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "2.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Concurrency": "2.0.1", + "Microsoft.CSharp": "4.4.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Auth/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "compile": { + "lib/net6.0/Convey.Auth.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": {} + } + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + } + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "compile": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + } + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "compile": { + "lib/net6.0/Convey.HTTP.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": {} + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + } + }, + "Convey.Logging/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.ElasticSearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "compile": { + "lib/net6.0/Convey.Logging.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": {} + } + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "compile": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + } + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + } + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "compile": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": {} + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + } + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": {} + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + } + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + } + }, + "DnsClient/1.4.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Jaeger/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + } + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Newtonsoft.Json": "12.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.10.0", + "Microsoft.IdentityModel.Tokens": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/2.14.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.14.1": { + "type": "package", + "dependencies": { + "MongoDB.Bson": "2.14.1", + "MongoDB.Driver.Core": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.14.1": { + "type": "package", + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0", + "SharpCompress": "0.30.1", + "System.Buffers": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libsnappy64.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/linux/native/libzstd.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libsnappy64.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libzstd.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/libzstd.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy32.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy64.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "MongoDB.Libmongocrypt/1.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open.Serialization/2.3.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/Open.Serialization.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": {} + } + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + } + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + } + }, + "OpenTracing/0.12.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Hosting.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Logging": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Options": "[6.0.0, 7.0.0)", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "Polly/7.2.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + } + }, + "protobuf-net/2.4.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "compile": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "compile": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "compile": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.0.0", + "Serilog": "2.9.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.0.4", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.6.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.8.0", + "Serilog.Formatting.Compact": "1.0.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.1.1", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "dependencies": { + "Serilog": "2.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Threading.Timer": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.Text.Json": "4.7.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + } + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "compile": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Pipes.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.3.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "ref/netstandard2.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "lib/netstandard2.0/System.ServiceModel.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "Utf8Json/1.3.7": { + "type": "package", + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + } + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + } + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.Notifications.Core": "1.0.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Application.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Application.dll": {} + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + } + }, + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.Notifications.Application": "1.0.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "ApacheThrift/0.14.1": { + "sha512": "WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "type": "package", + "path": "apachethrift/0.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "apachethrift.0.14.1.nupkg.sha512", + "apachethrift.nuspec", + "lib/netstandard2.0/Thrift.dll", + "lib/netstandard2.1/Thrift.dll" + ] + }, + "App.Metrics/4.3.0": { + "sha512": "D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "type": "package", + "path": "app.metrics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.4.3.0.nupkg.sha512", + "app.metrics.nuspec", + "lib/net461/App.Metrics.dll", + "lib/net461/App.Metrics.pdb", + "lib/net461/App.Metrics.xml", + "lib/netstandard2.0/App.Metrics.dll", + "lib/netstandard2.0/App.Metrics.pdb", + "lib/netstandard2.0/App.Metrics.xml", + "logo.png" + ] + }, + "App.Metrics.Abstractions/4.3.0": { + "sha512": "ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "type": "package", + "path": "app.metrics.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.abstractions.4.3.0.nupkg.sha512", + "app.metrics.abstractions.nuspec", + "lib/net461/App.Metrics.Abstractions.dll", + "lib/net461/App.Metrics.Abstractions.pdb", + "lib/net461/App.Metrics.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore/4.3.0": { + "sha512": "b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "type": "package", + "path": "app.metrics.aspnetcore/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "sha512": "VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "type": "package", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.abstractions.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "sha512": "Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "type": "package", + "path": "app.metrics.aspnetcore.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "sha512": "Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "type": "package", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.endpoints.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "sha512": "9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "type": "package", + "path": "app.metrics.aspnetcore.health/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "sha512": "Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "type": "package", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "sha512": "2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "type": "package", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.endpoints.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "sha512": "NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "type": "package", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.xml" + ] + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "sha512": "BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "type": "package", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "sha512": "CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "sha512": "acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "sha512": "cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "type": "package", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "app.metrics.aspnetcore.reporting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "sha512": "s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "type": "package", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.routing.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "sha512": "NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "type": "package", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.tracking.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.xml", + "logo.png" + ] + }, + "App.Metrics.Concurrency/4.3.0": { + "sha512": "otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "type": "package", + "path": "app.metrics.concurrency/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.concurrency.4.3.0.nupkg.sha512", + "app.metrics.concurrency.nuspec", + "lib/netstandard1.1/App.Metrics.Concurrency.dll", + "lib/netstandard1.1/App.Metrics.Concurrency.pdb", + "lib/netstandard1.1/App.Metrics.Concurrency.xml", + "lib/netstandard2.0/App.Metrics.Concurrency.dll", + "lib/netstandard2.0/App.Metrics.Concurrency.pdb", + "lib/netstandard2.0/App.Metrics.Concurrency.xml", + "logo.png" + ] + }, + "App.Metrics.Core/4.3.0": { + "sha512": "HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "type": "package", + "path": "app.metrics.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.core.4.3.0.nupkg.sha512", + "app.metrics.core.nuspec", + "lib/net461/App.Metrics.Core.dll", + "lib/net461/App.Metrics.Core.pdb", + "lib/net461/App.Metrics.Core.xml", + "lib/netstandard2.0/App.Metrics.Core.dll", + "lib/netstandard2.0/App.Metrics.Core.pdb", + "lib/netstandard2.0/App.Metrics.Core.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "sha512": "+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "type": "package", + "path": "app.metrics.extensions.configuration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "app.metrics.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "sha512": "lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "type": "package", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "app.metrics.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "sha512": "uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "type": "package", + "path": "app.metrics.extensions.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "app.metrics.extensions.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.xml", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "sha512": "PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "type": "package", + "path": "app.metrics.formatters.ascii/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "app.metrics.formatters.ascii.nuspec", + "lib/net461/App.Metrics.Formatters.Ascii.dll", + "lib/net461/App.Metrics.Formatters.Ascii.pdb", + "lib/net461/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "sha512": "p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "type": "package", + "path": "app.metrics.formatters.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "app.metrics.formatters.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Json/4.3.0": { + "sha512": "H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "type": "package", + "path": "app.metrics.formatters.json/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.json.4.3.0.nupkg.sha512", + "app.metrics.formatters.json.nuspec", + "lib/net461/App.Metrics.Formatters.Json.dll", + "lib/net461/App.Metrics.Formatters.Json.pdb", + "lib/net461/App.Metrics.Formatters.Json.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Json.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Json.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "sha512": "cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "type": "package", + "path": "app.metrics.formatters.prometheus/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "app.metrics.formatters.prometheus.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.xml", + "logo.png" + ] + }, + "App.Metrics.Health/3.1.0": { + "sha512": "JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "type": "package", + "path": "app.metrics.health/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.3.1.0.nupkg.sha512", + "app.metrics.health.nuspec", + "lib/netstandard2.0/App.Metrics.Health.dll", + "lib/netstandard2.0/App.Metrics.Health.xml" + ] + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "sha512": "DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "type": "package", + "path": "app.metrics.health.abstractions/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "app.metrics.health.abstractions.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.xml" + ] + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "sha512": "Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "type": "package", + "path": "app.metrics.health.checks.http/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "app.metrics.health.checks.http.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.xml" + ] + }, + "App.Metrics.Health.Core/3.1.0": { + "sha512": "mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "type": "package", + "path": "app.metrics.health.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.core.3.1.0.nupkg.sha512", + "app.metrics.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.Health.Core.xml" + ] + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "sha512": "5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "type": "package", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.xml" + ] + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "sha512": "N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "type": "package", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.xml" + ] + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "sha512": "TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "type": "package", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.xml" + ] + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "sha512": "9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "type": "package", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.ascii.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.xml" + ] + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "sha512": "23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "type": "package", + "path": "app.metrics.health.formatters.json/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.json.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.xml" + ] + }, + "App.Metrics.Reporting.Console/4.3.0": { + "sha512": "LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "type": "package", + "path": "app.metrics.reporting.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.console.4.3.0.nupkg.sha512", + "app.metrics.reporting.console.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Console.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Console.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.Http/4.3.0": { + "sha512": "D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "type": "package", + "path": "app.metrics.reporting.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.http.4.3.0.nupkg.sha512", + "app.metrics.reporting.http.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Http.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Http.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "sha512": "uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "type": "package", + "path": "app.metrics.reporting.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "app.metrics.reporting.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.xml", + "logo.png" + ] + }, + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.Auth/1.1.448": { + "sha512": "8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "type": "package", + "path": "convey.auth/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.auth.1.1.448.nupkg.sha512", + "convey.auth.nuspec", + "lib/net6.0/Convey.Auth.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.Discovery.Consul/1.1.448": { + "sha512": "3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "type": "package", + "path": "convey.discovery.consul/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.discovery.consul.1.1.448.nupkg.sha512", + "convey.discovery.consul.nuspec", + "lib/net6.0/Convey.Discovery.Consul.dll" + ] + }, + "Convey.Docs.Swagger/1.1.448": { + "sha512": "k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "type": "package", + "path": "convey.docs.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.docs.swagger.1.1.448.nupkg.sha512", + "convey.docs.swagger.nuspec", + "lib/net6.0/Convey.Docs.Swagger.dll" + ] + }, + "Convey.HTTP/1.1.448": { + "sha512": "MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "type": "package", + "path": "convey.http/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.http.1.1.448.nupkg.sha512", + "convey.http.nuspec", + "lib/net6.0/Convey.HTTP.dll" + ] + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "sha512": "QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "type": "package", + "path": "convey.loadbalancing.fabio/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "convey.loadbalancing.fabio.nuspec", + "lib/net6.0/Convey.LoadBalancing.Fabio.dll" + ] + }, + "Convey.Logging/1.1.448": { + "sha512": "sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "type": "package", + "path": "convey.logging/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.1.1.448.nupkg.sha512", + "convey.logging.nuspec", + "lib/net6.0/Convey.Logging.dll" + ] + }, + "Convey.Logging.CQRS/1.1.448": { + "sha512": "Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "type": "package", + "path": "convey.logging.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.cqrs.1.1.448.nupkg.sha512", + "convey.logging.cqrs.nuspec", + "lib/net6.0/Convey.Logging.CQRS.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "sha512": "cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "type": "package", + "path": "convey.messagebrokers.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "convey.messagebrokers.cqrs.nuspec", + "lib/net6.0/Convey.MessageBrokers.CQRS.dll" + ] + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "sha512": "UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "type": "package", + "path": "convey.messagebrokers.outbox/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.dll" + ] + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "sha512": "skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "type": "package", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.mongo.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll" + ] + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "sha512": "iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "type": "package", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "convey.messagebrokers.rabbitmq.nuspec", + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "sha512": "PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "type": "package", + "path": "convey.metrics.appmetrics/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "convey.metrics.appmetrics.nuspec", + "lib/net6.0/Convey.Metrics.AppMetrics.dll" + ] + }, + "Convey.Persistence.MongoDB/1.1.448": { + "sha512": "KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "type": "package", + "path": "convey.persistence.mongodb/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.mongodb.1.1.448.nupkg.sha512", + "convey.persistence.mongodb.nuspec", + "lib/net6.0/Convey.Persistence.MongoDB.dll" + ] + }, + "Convey.Persistence.Redis/1.1.448": { + "sha512": "pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "type": "package", + "path": "convey.persistence.redis/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.redis.1.1.448.nupkg.sha512", + "convey.persistence.redis.nuspec", + "lib/net6.0/Convey.Persistence.Redis.dll" + ] + }, + "Convey.Secrets.Vault/1.1.448": { + "sha512": "FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "type": "package", + "path": "convey.secrets.vault/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.secrets.vault.1.1.448.nupkg.sha512", + "convey.secrets.vault.nuspec", + "lib/net6.0/Convey.Secrets.Vault.dll" + ] + }, + "Convey.Security/1.1.448": { + "sha512": "qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "type": "package", + "path": "convey.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.security.1.1.448.nupkg.sha512", + "convey.security.nuspec", + "lib/net6.0/Convey.Security.dll" + ] + }, + "Convey.Tracing.Jaeger/1.1.448": { + "sha512": "0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "type": "package", + "path": "convey.tracing.jaeger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.dll" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "sha512": "9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "type": "package", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.rabbitmq.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll" + ] + }, + "Convey.WebApi/1.1.448": { + "sha512": "2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "type": "package", + "path": "convey.webapi/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.1.1.448.nupkg.sha512", + "convey.webapi.nuspec", + "lib/net6.0/Convey.WebApi.dll" + ] + }, + "Convey.WebApi.CQRS/1.1.448": { + "sha512": "EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "type": "package", + "path": "convey.webapi.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.cqrs.1.1.448.nupkg.sha512", + "convey.webapi.cqrs.nuspec", + "lib/net6.0/Convey.WebApi.CQRS.dll" + ] + }, + "Convey.WebApi.Security/1.1.448": { + "sha512": "R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "type": "package", + "path": "convey.webapi.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.security.1.1.448.nupkg.sha512", + "convey.webapi.security.nuspec", + "lib/net6.0/Convey.WebApi.Security.dll" + ] + }, + "Convey.WebApi.Swagger/1.1.448": { + "sha512": "cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "type": "package", + "path": "convey.webapi.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.swagger.1.1.448.nupkg.sha512", + "convey.webapi.swagger.nuspec", + "lib/net6.0/Convey.WebApi.Swagger.dll" + ] + }, + "DnsClient/1.4.0": { + "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "type": "package", + "path": "dnsclient/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.4.0.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Elasticsearch.Net/7.8.1": { + "sha512": "vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "type": "package", + "path": "elasticsearch.net/7.8.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "elasticsearch.net.7.8.1.nupkg.sha512", + "elasticsearch.net.nuspec", + "lib/net461/Elasticsearch.Net.dll", + "lib/net461/Elasticsearch.Net.pdb", + "lib/net461/Elasticsearch.Net.xml", + "lib/netstandard2.0/Elasticsearch.Net.dll", + "lib/netstandard2.0/Elasticsearch.Net.pdb", + "lib/netstandard2.0/Elasticsearch.Net.xml", + "lib/netstandard2.1/Elasticsearch.Net.dll", + "lib/netstandard2.1/Elasticsearch.Net.pdb", + "lib/netstandard2.1/Elasticsearch.Net.xml", + "license.txt", + "nuget-icon.png" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Jaeger/1.0.3": { + "sha512": "y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "type": "package", + "path": "jaeger/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.1.0.3.nupkg.sha512", + "jaeger.nuspec" + ] + }, + "Jaeger.Communication.Thrift/1.0.3": { + "sha512": "LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "type": "package", + "path": "jaeger.communication.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.communication.thrift.1.0.3.nupkg.sha512", + "jaeger.communication.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll", + "lib/netstandard2.0/Jaeger.Communication.Thrift.pdb" + ] + }, + "Jaeger.Core/1.0.3": { + "sha512": "GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "type": "package", + "path": "jaeger.core/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.core.1.0.3.nupkg.sha512", + "jaeger.core.nuspec", + "lib/netstandard2.0/Jaeger.Core.dll", + "lib/netstandard2.0/Jaeger.Core.pdb", + "lib/netstandard2.0/Jaeger.Core.xml" + ] + }, + "Jaeger.Senders.Thrift/1.0.3": { + "sha512": "3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "type": "package", + "path": "jaeger.senders.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.senders.thrift.1.0.3.nupkg.sha512", + "jaeger.senders.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll", + "lib/netstandard2.0/Jaeger.Senders.Thrift.pdb", + "lib/netstandard2.0/Jaeger.Senders.Thrift.xml" + ] + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "sha512": "VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.xml", + "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.certificate.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "sha512": "5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "sha512": "4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "sha512": "1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "sha512": "YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "sha512": "M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "sha512": "7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "sha512": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.6.0": { + "sha512": "kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "type": "package", + "path": "microsoft.csharp/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.6.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "sha512": "Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "sha512": "DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "sha512": "lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "sha512": "M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "type": "package", + "path": "microsoft.extensions.hosting/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Hosting.dll", + "lib/net461/Microsoft.Extensions.Hosting.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/6.0.0": { + "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "type": "package", + "path": "microsoft.extensions.http/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Http.dll", + "lib/net461/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "sha512": "ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net461/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "sha512": "gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "type": "package", + "path": "microsoft.extensions.logging.console/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Console.dll", + "lib/net461/Microsoft.Extensions.Logging.Console.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "sha512": "BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net461/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "sha512": "IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "sha512": "C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "sha512": "KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "type": "package", + "path": "microsoft.net.http.headers/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.1.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/2.14.1": { + "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", + "type": "package", + "path": "mongodb.bson/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.14.1.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.14.1": { + "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", + "type": "package", + "path": "mongodb.driver/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.14.1.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.14.1": { + "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", + "type": "package", + "path": "mongodb.driver.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "THIRD-PARTY-NOTICES", + "build/MongoDB.Driver.Core.targets", + "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "content/Core/Compression/Snappy/lib/win/snappy32.dll", + "content/Core/Compression/Snappy/lib/win/snappy64.dll", + "content/Core/Compression/Zstandard/lib/linux/libzstd.so", + "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "content/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", + "lib/net472/MongoDB.Driver.Core.dll", + "lib/net472/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.14.1.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png", + "runtimes/linux/native/libsnappy64.so", + "runtimes/linux/native/libzstd.so", + "runtimes/osx/native/libsnappy64.dylib", + "runtimes/osx/native/libzstd.dylib", + "runtimes/win/native/libzstd.dll", + "runtimes/win/native/snappy32.dll", + "runtimes/win/native/snappy64.dll" + ] + }, + "MongoDB.Libmongocrypt/1.3.0": { + "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", + "type": "package", + "path": "mongodb.libmongocrypt/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/net472/libmongocrypt.dylib", + "contentFiles/any/net472/libmongocrypt.so", + "contentFiles/any/net472/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/net472/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.3.0.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Open.Serialization/2.3.1": { + "sha512": "HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "type": "package", + "path": "open.serialization/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.dll", + "lib/netstandard2.0/Open.Serialization.xml", + "lib/netstandard2.1/Open.Serialization.dll", + "logo.png", + "open.serialization.2.3.1.nupkg.sha512", + "open.serialization.nuspec" + ] + }, + "Open.Serialization.Json/2.3.1": { + "sha512": "+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "type": "package", + "path": "open.serialization.json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.dll", + "lib/netstandard2.0/Open.Serialization.Json.xml", + "lib/netstandard2.1/Open.Serialization.Json.dll", + "logo.png", + "open.serialization.json.2.3.1.nupkg.sha512", + "open.serialization.json.nuspec" + ] + }, + "Open.Serialization.Json.System/2.3.2": { + "sha512": "oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "type": "package", + "path": "open.serialization.json.system/2.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.System.dll", + "lib/netstandard2.1/Open.Serialization.Json.System.dll", + "logo.png", + "open.serialization.json.system.2.3.2.nupkg.sha512", + "open.serialization.json.system.nuspec" + ] + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "sha512": "8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "type": "package", + "path": "open.serialization.json.utf8json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.Utf8Json.dll", + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll", + "logo.png", + "open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "open.serialization.json.utf8json.nuspec" + ] + }, + "OpenTracing/0.12.1": { + "sha512": "8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "type": "package", + "path": "opentracing/0.12.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/OpenTracing.dll", + "lib/net45/OpenTracing.pdb", + "lib/net45/OpenTracing.xml", + "lib/netstandard1.3/OpenTracing.dll", + "lib/netstandard1.3/OpenTracing.pdb", + "lib/netstandard1.3/OpenTracing.xml", + "lib/netstandard2.0/OpenTracing.dll", + "lib/netstandard2.0/OpenTracing.pdb", + "lib/netstandard2.0/OpenTracing.xml", + "opentracing.0.12.1.nupkg.sha512", + "opentracing.nuspec" + ] + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "sha512": "bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "type": "package", + "path": "opentracing.contrib.netcore/0.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/OpenTracing.Contrib.NetCore.dll", + "lib/net5.0/OpenTracing.Contrib.NetCore.xml", + "lib/net6.0/OpenTracing.Contrib.NetCore.dll", + "lib/net6.0/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.xml", + "opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "opentracing.contrib.netcore.nuspec", + "package-icon.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "Polly/7.2.2": { + "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "type": "package", + "path": "polly/7.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Polly.dll", + "lib/net461/Polly.pdb", + "lib/net461/Polly.xml", + "lib/net472/Polly.dll", + "lib/net472/Polly.pdb", + "lib/net472/Polly.xml", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.pdb", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.pdb", + "lib/netstandard2.0/Polly.xml", + "polly.7.2.2.nupkg.sha512", + "polly.nuspec" + ] + }, + "protobuf-net/2.4.0": { + "sha512": "j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "type": "package", + "path": "protobuf-net/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/protobuf-net.dll", + "lib/net20/protobuf-net.xml", + "lib/net35/protobuf-net.dll", + "lib/net35/protobuf-net.xml", + "lib/net40/protobuf-net.dll", + "lib/net40/protobuf-net.xml", + "lib/netcoreapp2.1/protobuf-net.dll", + "lib/netcoreapp2.1/protobuf-net.xml", + "lib/netstandard1.0/protobuf-net.dll", + "lib/netstandard1.0/protobuf-net.xml", + "lib/netstandard1.3/protobuf-net.dll", + "lib/netstandard1.3/protobuf-net.xml", + "lib/netstandard2.0/protobuf-net.dll", + "lib/netstandard2.0/protobuf-net.xml", + "lib/uap10.0/protobuf-net.dll", + "lib/uap10.0/protobuf-net.pri", + "lib/uap10.0/protobuf-net.xml", + "protobuf-net.2.4.0.nupkg.sha512", + "protobuf-net.nuspec" + ] + }, + "RabbitMQ.Client/6.5.0": { + "sha512": "9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "type": "package", + "path": "rabbitmq.client/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/RabbitMQ.Client.dll", + "lib/net461/RabbitMQ.Client.xml", + "lib/netstandard2.0/RabbitMQ.Client.dll", + "lib/netstandard2.0/RabbitMQ.Client.xml", + "rabbitmq.client.6.5.0.nupkg.sha512", + "rabbitmq.client.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.3.0": { + "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "type": "package", + "path": "runtime.native.system.net.security/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.3.0.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/4.1.0": { + "sha512": "qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "type": "package", + "path": "serilog.aspnetcore/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net5.0/Serilog.AspNetCore.dll", + "lib/net5.0/Serilog.AspNetCore.xml", + "lib/netcoreapp3.1/Serilog.AspNetCore.dll", + "lib/netcoreapp3.1/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "lib/netstandard2.1/Serilog.AspNetCore.dll", + "lib/netstandard2.1/Serilog.AspNetCore.xml", + "serilog.aspnetcore.4.1.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "sha512": "nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "type": "package", + "path": "serilog.extensions.hosting/4.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.4.1.2.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/3.1.0": { + "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "type": "package", + "path": "serilog.extensions.logging/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.3.1.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/1.1.0": { + "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "type": "package", + "path": "serilog.formatting.compact/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Serilog.Formatting.Compact.dll", + "lib/net452/Serilog.Formatting.Compact.xml", + "lib/netstandard1.1/Serilog.Formatting.Compact.dll", + "lib/netstandard1.1/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "serilog.formatting.compact.1.1.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "sha512": "768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "type": "package", + "path": "serilog.formatting.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Formatting.Elasticsearch.dll", + "lib/net45/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.xml", + "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "serilog.formatting.elasticsearch.nuspec" + ] + }, + "Serilog.Settings.Configuration/3.1.0": { + "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "type": "package", + "path": "serilog.settings.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Serilog.Settings.Configuration.dll", + "lib/net451/Serilog.Settings.Configuration.xml", + "lib/net461/Serilog.Settings.Configuration.dll", + "lib/net461/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.3.1.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/4.0.1": { + "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "type": "package", + "path": "serilog.sinks.console/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Console.dll", + "lib/net45/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/netstandard1.3/Serilog.Sinks.Console.dll", + "lib/netstandard1.3/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "serilog.sinks.console.4.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "sha512": "SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "type": "package", + "path": "serilog.sinks.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Serilog.Sinks.Elasticsearch.dll", + "lib/net461/Serilog.Sinks.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.xml", + "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "serilog.sinks.elasticsearch.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "sha512": "bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "type": "package", + "path": "serilog.sinks.grafana.loki/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.xml", + "serilog-sink-nuget.png", + "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "serilog.sinks.grafana.loki.nuspec" + ] + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "sha512": "UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "type": "package", + "path": "serilog.sinks.periodicbatching/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.PeriodicBatching.dll", + "lib/net45/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.xml", + "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "serilog.sinks.periodicbatching.nuspec" + ] + }, + "Serilog.Sinks.Seq/5.1.0": { + "sha512": "VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "type": "package", + "path": "serilog.sinks.seq/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Seq.dll", + "lib/net45/Serilog.Sinks.Seq.xml", + "lib/net5.0/Serilog.Sinks.Seq.dll", + "lib/net5.0/Serilog.Sinks.Seq.xml", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.dll", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.1/Serilog.Sinks.Seq.dll", + "lib/netstandard1.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.3/Serilog.Sinks.Seq.dll", + "lib/netstandard1.3/Serilog.Sinks.Seq.xml", + "lib/netstandard2.0/Serilog.Sinks.Seq.dll", + "lib/netstandard2.0/Serilog.Sinks.Seq.xml", + "serilog.sinks.seq.5.1.0.nupkg.sha512", + "serilog.sinks.seq.nuspec" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "SmartFormat.NET/2.7.2": { + "sha512": "TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "type": "package", + "path": "smartformat.net/2.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "SmartFormat_365x365.png", + "lib/net461/SmartFormat.dll", + "lib/net461/SmartFormat.xml", + "lib/netstandard2.0/SmartFormat.dll", + "lib/netstandard2.0/SmartFormat.xml", + "smartformat.net.2.7.2.nupkg.sha512", + "smartformat.net.nuspec" + ] + }, + "StackExchange.Redis/2.2.4": { + "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "type": "package", + "path": "stackexchange.redis/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net5.0/StackExchange.Redis.dll", + "lib/net5.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.2.4.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "sha512": "I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "type": "package", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.xml", + "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.annotations.nuspec" + ] + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "sha512": "jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "type": "package", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.xml", + "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.redoc.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "type": "package", + "path": "system.configuration.configurationmanager/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "type": "package", + "path": "system.diagnostics.performancecounter/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/5.0.0": { + "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "type": "package", + "path": "system.drawing.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "sha512": "lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/5.0.0": { + "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "type": "package", + "path": "system.io.pipelines/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipes/4.3.0": { + "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "type": "package", + "path": "system.io.pipes/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.IO.Pipes.dll", + "ref/net46/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.xml", + "ref/netstandard1.3/de/System.IO.Pipes.xml", + "ref/netstandard1.3/es/System.IO.Pipes.xml", + "ref/netstandard1.3/fr/System.IO.Pipes.xml", + "ref/netstandard1.3/it/System.IO.Pipes.xml", + "ref/netstandard1.3/ja/System.IO.Pipes.xml", + "ref/netstandard1.3/ko/System.IO.Pipes.xml", + "ref/netstandard1.3/ru/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml", + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win/lib/net46/System.IO.Pipes.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.pipes.4.3.0.nupkg.sha512", + "system.io.pipes.nuspec" + ] + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "sha512": "Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "type": "package", + "path": "system.io.pipes.accesscontrol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Pipes.AccessControl.dll", + "lib/net461/System.IO.Pipes.AccessControl.dll", + "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/net46/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.xml", + "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "system.io.pipes.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "sha512": "fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "type": "package", + "path": "system.net.http.winhttphandler/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.3.0": { + "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "type": "package", + "path": "system.net.requests/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.3.0.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.3.2": { + "sha512": "xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "type": "package", + "path": "system.net.security/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.3.2.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.3.0": { + "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "type": "package", + "path": "system.net.webheadercollection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.3.0.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.5.3": { + "sha512": "ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "type": "package", + "path": "system.private.servicemodel/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/netcore50/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/uap10.0.16300/System.Private.ServiceModel.dll", + "system.private.servicemodel.4.5.3.nupkg.sha512", + "system.private.servicemodel.nuspec", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.5.0": { + "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Primitives/4.5.3": { + "sha512": "Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "type": "package", + "path": "system.servicemodel.primitives/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/uap10.0.16300/System.ServiceModel.Primitives.dll", + "lib/uap10.0.16300/System.ServiceModel.dll", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/uap10.0.16300/System.ServiceModel.Primitives.dll", + "ref/uap10.0.16300/System.ServiceModel.dll", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.5.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "sha512": "umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.11.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Threading.Tasks.Dataflow.dll", + "lib/net461/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "Utf8Json/1.3.7": { + "sha512": "lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "type": "package", + "path": "utf8json/1.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Utf8Json.dll", + "lib/net45/Utf8Json.xml", + "lib/net47/Utf8Json.dll", + "lib/net47/Utf8Json.xml", + "lib/netstandard2.0/Utf8Json.dll", + "lib/netstandard2.0/Utf8Json.xml", + "utf8json.1.3.7.nupkg.sha512", + "utf8json.nuspec" + ] + }, + "VaultSharp/1.7.0.4": { + "sha512": "iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "type": "package", + "path": "vaultsharp/1.7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net45/VaultSharp.dll", + "lib/net45/VaultSharp.xml", + "lib/net46/VaultSharp.dll", + "lib/net46/VaultSharp.xml", + "lib/net461/VaultSharp.dll", + "lib/net461/VaultSharp.xml", + "lib/net462/VaultSharp.dll", + "lib/net462/VaultSharp.xml", + "lib/net47/VaultSharp.dll", + "lib/net47/VaultSharp.xml", + "lib/net471/VaultSharp.dll", + "lib/net471/VaultSharp.xml", + "lib/net472/VaultSharp.dll", + "lib/net472/VaultSharp.xml", + "lib/net48/VaultSharp.dll", + "lib/net48/VaultSharp.xml", + "lib/net5.0/VaultSharp.dll", + "lib/net5.0/VaultSharp.xml", + "lib/net6.0/VaultSharp.dll", + "lib/net6.0/VaultSharp.xml", + "lib/netstandard1.3/VaultSharp.dll", + "lib/netstandard1.3/VaultSharp.xml", + "lib/netstandard2.0/VaultSharp.dll", + "lib/netstandard2.0/VaultSharp.xml", + "lib/netstandard2.1/VaultSharp.dll", + "lib/netstandard2.1/VaultSharp.xml", + "vaultsharp.1.7.0.4.nupkg.sha512", + "vaultsharp.nuspec" + ] + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj" + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + }, + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.Logging >= 1.1.448", + "Convey.WebApi >= 1.1.448", + "Convey.WebApi.CQRS >= 1.1.448", + "MiniSpace.Services.Notifications.Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj", + "projectName": "MiniSpace.Services.Notifications.Api", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.nuget.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.nuget.cache new file mode 100644 index 000000000..ac56c1ae1 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/obj/project.nuget.cache @@ -0,0 +1,279 @@ +{ + "version": 2, + "dgSpecHash": "QAa9iqhhHZZ4VwD11mSxibCrxw4v1flyT1VQZrQS1EDbHFw6msXe4BBjjQz5kEOxfOViWNIQaIGN19ADkK31cQ==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Api/MiniSpace.Services.Notifications.Api.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/apachethrift/0.14.1/apachethrift.0.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics/4.3.0/app.metrics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.abstractions/4.3.0/app.metrics.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore/4.3.0/app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.abstractions/4.3.0/app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.core/4.3.0/app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.endpoints/4.3.0/app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health/3.2.0/app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.core/3.2.0/app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.endpoints/3.2.0/app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.hosting/3.2.0/app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.hosting/4.3.0/app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc/4.3.0/app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc.core/4.3.0/app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.reporting/4.0.0/app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.routing/4.3.0/app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.tracking/4.3.0/app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.concurrency/4.3.0/app.metrics.concurrency.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.core/4.3.0/app.metrics.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.configuration/4.3.0/app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.dependencyinjection/4.3.0/app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.hosting/4.3.0/app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.ascii/4.3.0/app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.influxdb/4.3.0/app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.json/4.3.0/app.metrics.formatters.json.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.prometheus/4.3.0/app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health/3.1.0/app.metrics.health.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.abstractions/3.2.0/app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.checks.http/3.2.0/app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.core/3.1.0/app.metrics.health.core.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.configuration/3.1.0/app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.dependencyinjection/3.1.0/app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.hosting/3.1.0/app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.ascii/3.1.0/app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.json/3.1.0/app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.console/4.3.0/app.metrics.reporting.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.http/4.3.0/app.metrics.reporting.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.influxdb/4.3.0/app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.auth/1.1.448/convey.auth.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.discovery.consul/1.1.448/convey.discovery.consul.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.docs.swagger/1.1.448/convey.docs.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.http/1.1.448/convey.http.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.loadbalancing.fabio/1.1.448/convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging/1.1.448/convey.logging.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging.cqrs/1.1.448/convey.logging.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.cqrs/1.1.448/convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox/1.1.448/convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox.mongo/1.1.448/convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.rabbitmq/1.1.448/convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.metrics.appmetrics/1.1.448/convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.mongodb/1.1.448/convey.persistence.mongodb.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.redis/1.1.448/convey.persistence.redis.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.secrets.vault/1.1.448/convey.secrets.vault.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.security/1.1.448/convey.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger/1.1.448/convey.tracing.jaeger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger.rabbitmq/1.1.448/convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi/1.1.448/convey.webapi.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.cqrs/1.1.448/convey.webapi.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.security/1.1.448/convey.webapi.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.swagger/1.1.448/convey.webapi.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/dnsclient/1.4.0/dnsclient.1.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/elasticsearch.net/7.8.1/elasticsearch.net.7.8.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger/1.0.3/jaeger.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.communication.thrift/1.0.3/jaeger.communication.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.core/1.0.3/jaeger.core.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.senders.thrift/1.0.3/jaeger.senders.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.certificate/6.0.1/microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/6.0.1/microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authorization/6.0.1/microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.1.0/microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.1.0/microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.extensions/2.1.0/microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.metadata/6.0.1/microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.bcl.asyncinterfaces/1.0.0/microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.csharp/4.6.0/microsoft.csharp.4.6.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0/microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.stackexchangeredis/6.0.1/microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.usersecrets/6.0.0/microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting/6.0.0/microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting.abstractions/6.0.0/microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.http/6.0.0/microsoft.extensions.http.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.debug/6.0.0/microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventlog/6.0.0/microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventsource/6.0.0/microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.15.0/microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.logging/6.15.0/microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols/6.10.0/microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.10.0/microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.tokens/6.15.0/microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.net.http.headers/2.1.0/microsoft.net.http.headers.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.systemevents/5.0.0/microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.bson/2.14.1/mongodb.bson.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver/2.14.1/mongodb.driver.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.core/2.14.1/mongodb.driver.core.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.libmongocrypt/1.3.0/mongodb.libmongocrypt.1.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization/2.3.1/open.serialization.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json/2.3.1/open.serialization.json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.system/2.3.2/open.serialization.json.system.2.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.utf8json/2.3.1/open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing/0.12.1/opentracing.0.12.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing.contrib.netcore/0.8.0/opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/pipelines.sockets.unofficial/2.2.0/pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/polly/7.2.2/polly.7.2.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/protobuf-net/2.4.0/protobuf-net.2.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/rabbitmq.client/6.5.0/rabbitmq.client.6.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog/2.10.0/serilog.2.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.aspnetcore/4.1.0/serilog.aspnetcore.4.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.hosting/4.1.2/serilog.extensions.hosting.4.1.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.logging/3.1.0/serilog.extensions.logging.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.compact/1.1.0/serilog.formatting.compact.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.elasticsearch/8.4.1/serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.settings.configuration/3.1.0/serilog.settings.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.console/4.0.1/serilog.sinks.console.4.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.elasticsearch/8.4.1/serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.grafana.loki/7.1.0/serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.periodicbatching/2.3.0/serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.seq/5.1.0/serilog.sinks.seq.5.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/smartformat.net/2.7.2/smartformat.net.2.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/stackexchange.redis/2.2.4/stackexchange.redis.2.2.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.annotations/6.2.3/swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.redoc/6.2.3/swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swagger/6.2.3/swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.2.3/swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.2.3/swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.configuration.configurationmanager/5.0.0/system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.performancecounter/5.0.0/system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.drawing.common/5.0.0/system.drawing.common.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.identitymodel.tokens.jwt/6.15.0/system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipelines/5.0.0/system.io.pipelines.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes.accesscontrol/4.5.1/system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http.winhttphandler/4.7.0/system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.requests/4.3.0/system.net.requests.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.security/4.3.2/system.net.security.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.webheadercollection/4.3.0/system.net.webheadercollection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.private.servicemodel/4.5.3/system.private.servicemodel.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.dispatchproxy/4.5.0/system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.5.0/system.security.cryptography.cng.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.servicemodel.primitives/4.5.3/system.servicemodel.primitives.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.dataflow/4.11.1/system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.5.3/system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/utf8json/1.3.7/utf8json.1.3.7.nupkg.sha512", + "/home/kaliuser/.nuget/packages/vaultsharp/1.7.0.4/vaultsharp.1.7.0.4.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.deps.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.deps.json new file mode 100644 index 000000000..40d2bcb70 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.deps.json @@ -0,0 +1,1381 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.Notifications.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.Notifications.Core": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Application.dll": {} + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.7.2": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "runtime": { + "MiniSpace.Services.Notifications.Core.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Json/4.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "path": "system.text.json/4.7.2", + "hashPath": "system.text.json.4.7.2.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..fad787af3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb new file mode 100644 index 000000000..46780dbd6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..b12c50ad8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb new file mode 100644 index 000000000..56971b14b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpac.28F0FDAD.Up2Date b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpac.28F0FDAD.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfo.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfo.cs new file mode 100644 index 000000000..ba1a11190 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.Notifications.Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.Notifications.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.Notifications.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfoInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfoInputs.cache new file mode 100644 index 000000000..0775574dd --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +72ac1d3825741bd508e9ff6ffaf58fa81268523d2a753710d887fc83a9d80b9a diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..0fe847d88 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.Notifications.Application +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GlobalUsings.g.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.assets.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.assets.cache new file mode 100644 index 000000000..edd6909cf Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.assets.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.AssemblyReference.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.AssemblyReference.cache new file mode 100644 index 000000000..f85758ab5 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.CoreCompileInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..c457a1531 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +215392a4d88944c6dc2336b679a1d68c9cc0de6d439361c1fb28f0eeaabcb716 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.FileListAbsolute.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..aef66a9f4 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpac.28F0FDAD.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Application.dll diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..fad787af3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb new file mode 100644 index 000000000..46780dbd6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.sourcelink.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/MiniSpace.Services.Notifications.Application.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..c8a1b4543 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..c8a1b4543 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.dgspec.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.dgspec.json new file mode 100644 index 000000000..c45d15d0b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.dgspec.json @@ -0,0 +1,150 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "projectName": "MiniSpace.Services.Notifications.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "projectName": "MiniSpace.Services.Notifications.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.props new file mode 100644 index 000000000..42c902e82 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.targets b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/MiniSpace.Services.Notifications.Application.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.assets.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.assets.json new file mode 100644 index 000000000..b0582e94b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.assets.json @@ -0,0 +1,4966 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + } + } + } + }, + "libraries": { + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { + "sha512": "8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Json/4.7.2": { + "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "type": "package", + "path": "system.text.json/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.CQRS.Commands >= 1.1.448", + "Convey.CQRS.Events >= 1.1.448", + "Convey.CQRS.Queries >= 1.1.448", + "Convey.MessageBrokers >= 1.1.448", + "MiniSpace.Services.Notifications.Core >= 1.0.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "projectName": "MiniSpace.Services.Notifications.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.nuget.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.nuget.cache new file mode 100644 index 000000000..ec3d704dd --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/project.nuget.cache @@ -0,0 +1,92 @@ +{ + "version": 2, + "dgSpecHash": "XLVHUJYir+Ph7ror2YQVFk+ADzP+czPQJ42KER9+jkoFvdUqLEZOwHNCfiPmDJmy73BpM0l0Kz5duh69b7+KYQ==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/3.1.9/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/4.7.2/system.text.json.4.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.deps.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.deps.json new file mode 100644 index 000000000..cf01e0787 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.Notifications.Core/1.0.0": { + "runtime": { + "MiniSpace.Services.Notifications.Core.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..b12c50ad8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb new file mode 100644 index 000000000..56971b14b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfo.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfo.cs new file mode 100644 index 000000000..d0aead76b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.Notifications.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.Notifications.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.Notifications.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfoInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfoInputs.cache new file mode 100644 index 000000000..c8c66858d --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +af7e27a1b036cf20b19f769f736410eb4de82166981876644172854c53396ed6 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..19b59cacb --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.Notifications.Core +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GlobalUsings.g.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.assets.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.assets.cache new file mode 100644 index 000000000..abd0cf659 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.assets.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.CoreCompileInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..2b416b192 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9a9656b8d09fd9227898ae158bad89050616a755a5c150dc57aad02497ccf92a diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.FileListAbsolute.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..3fe8ac4c0 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Core.dll diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..b12c50ad8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb new file mode 100644 index 000000000..56971b14b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.sourcelink.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/MiniSpace.Services.Notifications.Core.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..ba7a034f8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..ba7a034f8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.dgspec.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.dgspec.json new file mode 100644 index 000000000..c55af781a --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "projectName": "MiniSpace.Services.Notifications.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.props new file mode 100644 index 000000000..42c902e82 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.targets b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/MiniSpace.Services.Notifications.Core.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.assets.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.assets.json new file mode 100644 index 000000000..6494308a2 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "projectName": "MiniSpace.Services.Notifications.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.nuget.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.nuget.cache new file mode 100644 index 000000000..07b976a4b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "uAPvUFzmkQ+Loqi6whPU5rOobngLI3HhEFloD9WVdozb9L1FkpKGWed9DDg88IGXOEvAwjge8GvxOpNbOnEJMw==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll new file mode 100644 index 000000000..fad787af3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb new file mode 100644 index 000000000..46780dbd6 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll new file mode 100644 index 000000000..b12c50ad8 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb new file mode 100644 index 000000000..56971b14b Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.deps.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.deps.json new file mode 100644 index 000000000..68c9e0d23 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.deps.json @@ -0,0 +1,4780 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Auth": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448", + "Convey.LoadBalancing.Fabio": "1.1.448", + "Convey.Logging": "1.1.448", + "Convey.Logging.CQRS": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Convey.MessageBrokers.CQRS": "1.1.448", + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.MessageBrokers.Outbox.Mongo": "1.1.448", + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Metrics.AppMetrics": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448", + "Convey.Persistence.Redis": "1.1.448", + "Convey.Secrets.Vault": "1.1.448", + "Convey.Security": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ": "1.1.448", + "Convey.WebApi.CQRS": "1.1.448", + "Convey.WebApi.Security": "1.1.448", + "Convey.WebApi.Swagger": "1.1.448", + "MiniSpace.Services.Notifications.Application": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Infrastructure.dll": {} + } + }, + "ApacheThrift/0.14.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": { + "assemblyVersion": "0.14.1.0", + "fileVersion": "0.14.1.0" + } + } + }, + "App.Metrics/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Core/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.6.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Health/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "dependencies": { + "App.Metrics.Concurrency": "4.3.0", + "Microsoft.CSharp": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "assemblyVersion": "3.2.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "Convey/1.1.448": { + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "runtime": { + "lib/net6.0/Convey.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Auth/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Commands/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Events/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.CQRS.Queries/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Discovery.Consul/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Docs.Swagger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.HTTP/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Logging.CQRS/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Persistence.Redis/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Secrets.Vault/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Security/1.1.448": { + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DnsClient/1.4.0": { + "runtime": { + "lib/netstandard2.1/DnsClient.dll": { + "assemblyVersion": "1.4.0.0", + "fileVersion": "1.4.0.0" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.8.1.0" + } + } + }, + "Figgle/0.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Jaeger/1.0.3": { + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Core/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": {}, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.46214" + } + } + }, + "Microsoft.CSharp/4.6.0": {}, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.10.0.0", + "fileVersion": "6.10.0.20330" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "MongoDB.Bson/2.14.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + } + }, + "MongoDB.Driver/2.14.1": { + "dependencies": { + "MongoDB.Bson": "2.14.1", + "MongoDB.Driver.Core": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + } + }, + "MongoDB.Driver.Core/2.14.1": { + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0", + "SharpCompress": "0.30.1", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.14.1.0", + "fileVersion": "2.14.1.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libsnappy64.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux/native/libzstd.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libsnappy64.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libzstd.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/libzstd.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/snappy32.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/snappy64.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "MongoDB.Libmongocrypt/1.3.0": { + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.3.0.0", + "fileVersion": "1.3.0.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/mongocrypt.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Open.Serialization/2.3.1": { + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json/2.3.1": { + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "Open.Serialization.Json.System/2.3.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": { + "assemblyVersion": "2.3.2.0", + "fileVersion": "2.3.2.0" + } + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": { + "assemblyVersion": "2.3.1.0", + "fileVersion": "2.3.1.0" + } + } + }, + "OpenTracing/0.12.1": { + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "assemblyVersion": "0.12.1.0", + "fileVersion": "0.12.1.0" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "assemblyVersion": "0.8.0.0", + "fileVersion": "0.8.0.0" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.0.45337" + } + } + }, + "Polly/7.2.2": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.2.2.0" + } + } + }, + "protobuf-net/2.4.0": { + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "assemblyVersion": "2.4.0.0", + "fileVersion": "2.4.0.8641" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Hosting/4.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.1.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.2.0" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "3.1.6", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "assemblyVersion": "8.4.1.0", + "fileVersion": "8.4.1.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.Collections.Concurrent": "4.3.0", + "System.Threading.Timer": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "assemblyVersion": "5.1.0.0", + "fileVersion": "5.1.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "SmartFormat.NET/2.7.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.Text.Json": "6.0.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.2.0" + } + } + }, + "StackExchange.Redis/2.2.4": { + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.4.27433" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.15.0.0", + "fileVersion": "6.15.0.21202" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/5.0.0": {}, + "System.IO.Pipes/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Security/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.5.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.DispatchProxy/4.5.0": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Primitives/4.5.3": { + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.5.0.3", + "fileVersion": "4.6.26720.1" + }, + "lib/netstandard2.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26720.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": {}, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "Utf8Json/1.3.7": { + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "assemblyVersion": "1.3.7.0", + "fileVersion": "1.3.7.0" + } + } + }, + "VaultSharp/1.7.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "assemblyVersion": "1.7.0.4", + "fileVersion": "1.7.0.4" + } + } + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.Notifications.Core": "1.0.0" + }, + "runtime": { + "MiniSpace.Services.Notifications.Application.dll": {} + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "runtime": { + "MiniSpace.Services.Notifications.Core.dll": {} + } + } + } + }, + "libraries": { + "MiniSpace.Services.Notifications.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ApacheThrift/0.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "path": "apachethrift/0.14.1", + "hashPath": "apachethrift.0.14.1.nupkg.sha512" + }, + "App.Metrics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "path": "app.metrics/4.3.0", + "hashPath": "app.metrics.4.3.0.nupkg.sha512" + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "path": "app.metrics.abstractions/4.3.0", + "hashPath": "app.metrics.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "path": "app.metrics.aspnetcore/4.3.0", + "hashPath": "app.metrics.aspnetcore.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "hashPath": "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "path": "app.metrics.aspnetcore.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "hashPath": "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "path": "app.metrics.aspnetcore.health/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "hashPath": "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "hashPath": "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "hashPath": "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "hashPath": "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "hashPath": "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512" + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "hashPath": "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512" + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "path": "app.metrics.concurrency/4.3.0", + "hashPath": "app.metrics.concurrency.4.3.0.nupkg.sha512" + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "path": "app.metrics.core/4.3.0", + "hashPath": "app.metrics.core.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "path": "app.metrics.extensions.configuration/4.3.0", + "hashPath": "app.metrics.extensions.configuration.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "hashPath": "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512" + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "path": "app.metrics.extensions.hosting/4.3.0", + "hashPath": "app.metrics.extensions.hosting.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "path": "app.metrics.formatters.ascii/4.3.0", + "hashPath": "app.metrics.formatters.ascii.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "path": "app.metrics.formatters.influxdb/4.3.0", + "hashPath": "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "path": "app.metrics.formatters.json/4.3.0", + "hashPath": "app.metrics.formatters.json.4.3.0.nupkg.sha512" + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "path": "app.metrics.formatters.prometheus/4.3.0", + "hashPath": "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512" + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "path": "app.metrics.health/3.1.0", + "hashPath": "app.metrics.health.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "path": "app.metrics.health.abstractions/3.2.0", + "hashPath": "app.metrics.health.abstractions.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "path": "app.metrics.health.checks.http/3.2.0", + "hashPath": "app.metrics.health.checks.http.3.2.0.nupkg.sha512" + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "path": "app.metrics.health.core/3.1.0", + "hashPath": "app.metrics.health.core.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "hashPath": "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "hashPath": "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "hashPath": "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "hashPath": "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512" + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "path": "app.metrics.health.formatters.json/3.1.0", + "hashPath": "app.metrics.health.formatters.json.3.1.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "path": "app.metrics.reporting.console/4.3.0", + "hashPath": "app.metrics.reporting.console.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "path": "app.metrics.reporting.http/4.3.0", + "hashPath": "app.metrics.reporting.http.4.3.0.nupkg.sha512" + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "path": "app.metrics.reporting.influxdb/4.3.0", + "hashPath": "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512" + }, + "Convey/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "path": "convey/1.1.448", + "hashPath": "convey.1.1.448.nupkg.sha512" + }, + "Convey.Auth/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "path": "convey.auth/1.1.448", + "hashPath": "convey.auth.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "path": "convey.cqrs.commands/1.1.448", + "hashPath": "convey.cqrs.commands.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "path": "convey.cqrs.events/1.1.448", + "hashPath": "convey.cqrs.events.1.1.448.nupkg.sha512" + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "path": "convey.cqrs.queries/1.1.448", + "hashPath": "convey.cqrs.queries.1.1.448.nupkg.sha512" + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "path": "convey.discovery.consul/1.1.448", + "hashPath": "convey.discovery.consul.1.1.448.nupkg.sha512" + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "path": "convey.docs.swagger/1.1.448", + "hashPath": "convey.docs.swagger.1.1.448.nupkg.sha512" + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "path": "convey.http/1.1.448", + "hashPath": "convey.http.1.1.448.nupkg.sha512" + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "path": "convey.loadbalancing.fabio/1.1.448", + "hashPath": "convey.loadbalancing.fabio.1.1.448.nupkg.sha512" + }, + "Convey.Logging/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "path": "convey.logging/1.1.448", + "hashPath": "convey.logging.1.1.448.nupkg.sha512" + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "path": "convey.logging.cqrs/1.1.448", + "hashPath": "convey.logging.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "path": "convey.messagebrokers/1.1.448", + "hashPath": "convey.messagebrokers.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "path": "convey.messagebrokers.cqrs/1.1.448", + "hashPath": "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "path": "convey.messagebrokers.outbox/1.1.448", + "hashPath": "convey.messagebrokers.outbox.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "hashPath": "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512" + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "hashPath": "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "path": "convey.metrics.appmetrics/1.1.448", + "hashPath": "convey.metrics.appmetrics.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "path": "convey.persistence.mongodb/1.1.448", + "hashPath": "convey.persistence.mongodb.1.1.448.nupkg.sha512" + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "path": "convey.persistence.redis/1.1.448", + "hashPath": "convey.persistence.redis.1.1.448.nupkg.sha512" + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "path": "convey.secrets.vault/1.1.448", + "hashPath": "convey.secrets.vault.1.1.448.nupkg.sha512" + }, + "Convey.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "path": "convey.security/1.1.448", + "hashPath": "convey.security.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "path": "convey.tracing.jaeger/1.1.448", + "hashPath": "convey.tracing.jaeger.1.1.448.nupkg.sha512" + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "hashPath": "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512" + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "path": "convey.webapi/1.1.448", + "hashPath": "convey.webapi.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "path": "convey.webapi.cqrs/1.1.448", + "hashPath": "convey.webapi.cqrs.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "path": "convey.webapi.security/1.1.448", + "hashPath": "convey.webapi.security.1.1.448.nupkg.sha512" + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "path": "convey.webapi.swagger/1.1.448", + "hashPath": "convey.webapi.swagger.1.1.448.nupkg.sha512" + }, + "DnsClient/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "path": "dnsclient/1.4.0", + "hashPath": "dnsclient.1.4.0.nupkg.sha512" + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "path": "elasticsearch.net/7.8.1", + "hashPath": "elasticsearch.net.7.8.1.nupkg.sha512" + }, + "Figgle/0.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "path": "figgle/0.4.0", + "hashPath": "figgle.0.4.0.nupkg.sha512" + }, + "Jaeger/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "path": "jaeger/1.0.3", + "hashPath": "jaeger.1.0.3.nupkg.sha512" + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "path": "jaeger.communication.thrift/1.0.3", + "hashPath": "jaeger.communication.thrift.1.0.3.nupkg.sha512" + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "path": "jaeger.core/1.0.3", + "hashPath": "jaeger.core.1.0.3.nupkg.sha512" + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "path": "jaeger.senders.thrift/1.0.3", + "hashPath": "jaeger.senders.thrift.1.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "hashPath": "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "hashPath": "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "path": "microsoft.csharp/4.6.0", + "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "hashPath": "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "path": "microsoft.extensions.configuration/6.0.0", + "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "path": "microsoft.extensions.hosting/6.0.0", + "hashPath": "microsoft.extensions.hosting.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "path": "microsoft.extensions.logging.console/6.0.0", + "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "path": "microsoft.identitymodel.logging/6.15.0", + "hashPath": "microsoft.identitymodel.logging.6.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "path": "microsoft.identitymodel.protocols/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "path": "microsoft.identitymodel.tokens/6.15.0", + "hashPath": "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "path": "microsoft.net.http.headers/2.1.0", + "hashPath": "microsoft.net.http.headers.2.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MongoDB.Bson/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", + "path": "mongodb.bson/2.14.1", + "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" + }, + "MongoDB.Driver/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", + "path": "mongodb.driver/2.14.1", + "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", + "path": "mongodb.driver.core/2.14.1", + "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", + "path": "mongodb.libmongocrypt/1.3.0", + "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Open.Serialization/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "path": "open.serialization/2.3.1", + "hashPath": "open.serialization.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "path": "open.serialization.json/2.3.1", + "hashPath": "open.serialization.json.2.3.1.nupkg.sha512" + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "path": "open.serialization.json.system/2.3.2", + "hashPath": "open.serialization.json.system.2.3.2.nupkg.sha512" + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "path": "open.serialization.json.utf8json/2.3.1", + "hashPath": "open.serialization.json.utf8json.2.3.1.nupkg.sha512" + }, + "OpenTracing/0.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "path": "opentracing/0.12.1", + "hashPath": "opentracing.0.12.1.nupkg.sha512" + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "path": "opentracing.contrib.netcore/0.8.0", + "hashPath": "opentracing.contrib.netcore.0.8.0.nupkg.sha512" + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "path": "pipelines.sockets.unofficial/2.2.0", + "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512" + }, + "Polly/7.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "path": "polly/7.2.2", + "hashPath": "polly.7.2.2.nupkg.sha512" + }, + "protobuf-net/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "path": "protobuf-net/2.4.0", + "hashPath": "protobuf-net.2.4.0.nupkg.sha512" + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "path": "rabbitmq.client/6.5.0", + "hashPath": "rabbitmq.client.6.5.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "path": "runtime.native.system.net.security/4.3.0", + "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "path": "serilog.aspnetcore/4.1.0", + "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "path": "serilog.extensions.hosting/4.1.2", + "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "path": "serilog.extensions.logging/3.1.0", + "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "path": "serilog.formatting.elasticsearch/8.4.1", + "hashPath": "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "path": "serilog.settings.configuration/3.1.0", + "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "path": "serilog.sinks.console/4.0.1", + "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "path": "serilog.sinks.elasticsearch/8.4.1", + "hashPath": "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "path": "serilog.sinks.grafana.loki/7.1.0", + "hashPath": "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512" + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "path": "serilog.sinks.periodicbatching/2.3.0", + "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512" + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "path": "serilog.sinks.seq/5.1.0", + "hashPath": "serilog.sinks.seq.5.1.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "path": "smartformat.net/2.7.2", + "hashPath": "smartformat.net.2.7.2.nupkg.sha512" + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "path": "stackexchange.redis/2.2.4", + "hashPath": "stackexchange.redis.2.2.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "hashPath": "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "hashPath": "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "hashPath": "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "path": "system.io.pipelines/5.0.0", + "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "path": "system.io.pipes/4.3.0", + "hashPath": "system.io.pipes.4.3.0.nupkg.sha512" + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "path": "system.io.pipes.accesscontrol/4.5.1", + "hashPath": "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "path": "system.net.http.winhttphandler/4.7.0", + "hashPath": "system.net.http.winhttphandler.4.7.0.nupkg.sha512" + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "System.Net.Security/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "path": "system.net.security/4.3.2", + "hashPath": "system.net.security.4.3.2.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "path": "system.private.servicemodel/4.5.3", + "hashPath": "system.private.servicemodel.4.5.3.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "path": "system.reflection.dispatchproxy/4.5.0", + "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "path": "system.servicemodel.primitives/4.5.3", + "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "path": "system.threading.tasks.dataflow/4.11.1", + "hashPath": "system.threading.tasks.dataflow.4.11.1.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "Utf8Json/1.3.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "path": "utf8json/1.3.7", + "hashPath": "utf8json.1.3.7.nupkg.sha512" + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "path": "vaultsharp/1.7.0.4", + "hashPath": "vaultsharp.1.7.0.4.nupkg.sha512" + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll new file mode 100644 index 000000000..1b236f9ba Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb new file mode 100644 index 000000000..c4371f835 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 000000000..dca70aa49 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpac.C2942D2D.Up2Date b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpac.C2942D2D.Up2Date new file mode 100644 index 000000000..e69de29bb diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfo.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfo.cs new file mode 100644 index 000000000..1fc010238 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MiniSpace.Services.Notifications.Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e469fbdaa8f94ad32f18bc8ef20510fd62b15985")] +[assembly: System.Reflection.AssemblyProductAttribute("MiniSpace.Services.Notifications.Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("MiniSpace.Services.Notifications.Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfoInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 000000000..a53b56445 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +06935d4026aba0069abdca20ba9959a7f7e14e8e87a965f3b7301324f870eec5 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..d8cb6babc --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MiniSpace.Services.Notifications.Infrastructure +build_property.ProjectDir = /home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GlobalUsings.g.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GlobalUsings.g.cs new file mode 100644 index 000000000..8578f3d03 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.assets.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.assets.cache new file mode 100644 index 000000000..50cf49585 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.assets.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.AssemblyReference.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 000000000..1c7ea12d3 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.CoreCompileInputs.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..d6c8985d7 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +01aacf7aa6f50c3215077d95449010a5d84e41b55668931330f123077ba3d038 diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.FileListAbsolute.txt b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..f72a6fe5e --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.AssemblyReference.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfoInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.AssemblyInfo.cs +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.csproj.CoreCompileInputs.cache +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.sourcelink.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.deps.json +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Application.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/bin/Debug/net8.0/MiniSpace.Services.Notifications.Core.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpac.C2942D2D.Up2Date +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Infrastructure.dll +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb +/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Infrastructure.dll diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll new file mode 100644 index 000000000..1b236f9ba Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb new file mode 100644 index 000000000..c4371f835 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.pdb differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.sourcelink.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.sourcelink.json new file mode 100644 index 000000000..1e2e9a466 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/MiniSpace.Services.Notifications.Infrastructure.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/*":"https://raw.githubusercontent.com/SaintAngeLs/p_software_engineering_2/e469fbdaa8f94ad32f18bc8ef20510fd62b15985/*"}} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Infrastructure.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Infrastructure.dll new file mode 100644 index 000000000..6de56f038 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/ref/MiniSpace.Services.Notifications.Infrastructure.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Infrastructure.dll b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Infrastructure.dll new file mode 100644 index 000000000..6de56f038 Binary files /dev/null and b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/Debug/net8.0/refint/MiniSpace.Services.Notifications.Infrastructure.dll differ diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.dgspec.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.dgspec.json new file mode 100644 index 000000000..e758fac15 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.dgspec.json @@ -0,0 +1,306 @@ +{ + "format": 1, + "restore": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj": {} + }, + "projects": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "projectName": "MiniSpace.Services.Notifications.Application", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Commands": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Events": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "projectName": "MiniSpace.Services.Notifications.Core", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "projectName": "MiniSpace.Services.Notifications.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.props b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.props new file mode 100644 index 000000000..b0c9b906b --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/kaliuser/.nuget/packages/ + /home/kaliuser/.nuget/packages/ + PackageReference + 6.9.1 + + + + + + /home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0 + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.targets b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.targets new file mode 100644 index 000000000..3dc06ef3c --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/MiniSpace.Services.Notifications.Infrastructure.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.assets.json b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.assets.json new file mode 100644 index 000000000..c94589061 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.assets.json @@ -0,0 +1,12584 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "ApacheThrift/0.14.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Logging.Console": "3.1.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0", + "System.IO.Pipes": "4.3.0", + "System.IO.Pipes.AccessControl": "4.5.1", + "System.Net.Http.WinHttpHandler": "4.7.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.2", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.1/Thrift.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Thrift.dll": {} + } + }, + "App.Metrics/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Abstractions.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Extensions.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.Health": "3.1.0", + "App.Metrics.Health.Extensions.Hosting": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Extensions.Configuration": "3.1.0", + "App.Metrics.Health.Extensions.DependencyInjection": "3.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "2.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Hosting": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Health.Core": "3.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Mvc.Core": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Routing": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Core": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Abstractions": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore.Hosting": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Concurrency/4.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Concurrency.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Core/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Concurrency": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0", + "Microsoft.CSharp": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.Configuration.Binder": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics": "4.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Json/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "protobuf-net": "2.4.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Health/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0", + "App.Metrics.Health.Formatters.Json": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Concurrency": "2.0.1", + "Microsoft.CSharp": "4.4.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Core/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "App.Metrics.Health.Formatters.Ascii": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Core.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Core": "3.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "type": "package", + "dependencies": { + "App.Metrics.Health.Abstractions": "3.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll": { + "related": ".xml" + } + } + }, + "App.Metrics.Reporting.Console/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Ascii": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.Http/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Core": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll": { + "related": ".pdb;.xml" + } + } + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "type": "package", + "dependencies": { + "App.Metrics.Abstractions": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll": { + "related": ".pdb;.xml" + } + } + }, + "Convey/1.1.448": { + "type": "package", + "dependencies": { + "Figgle": "0.4.0", + "Scrutor": "3.3.0" + }, + "compile": { + "lib/net6.0/Convey.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Auth/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.1", + "Microsoft.AspNetCore.Authorization": "6.0.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.IdentityModel.Tokens": "6.15.0", + "System.IdentityModel.Tokens.Jwt": "6.15.0" + }, + "compile": { + "lib/net6.0/Convey.Auth.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Auth.dll": {} + } + }, + "Convey.CQRS.Commands/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Commands.dll": {} + } + }, + "Convey.CQRS.Events/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Events.dll": {} + } + }, + "Convey.CQRS.Queries/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.CQRS.Queries.dll": {} + } + }, + "Convey.Discovery.Consul/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.HTTP": "1.1.448", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Discovery.Consul.dll": {} + } + }, + "Convey.Docs.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Annotations": "6.2.3", + "Swashbuckle.AspNetCore.ReDoc": "6.2.3", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "compile": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Docs.Swagger.dll": {} + } + }, + "Convey.HTTP/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Http": "6.0.0", + "Polly": "7.2.2" + }, + "compile": { + "lib/net6.0/Convey.HTTP.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.HTTP.dll": {} + } + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.Discovery.Consul": "1.1.448", + "Convey.HTTP": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.LoadBalancing.Fabio.dll": {} + } + }, + "Convey.Logging/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Logging": "6.0.0", + "Serilog": "2.10.0", + "Serilog.AspNetCore": "4.1.0", + "Serilog.Extensions.Logging": "3.1.0", + "Serilog.Sinks.Console": "4.0.1", + "Serilog.Sinks.ElasticSearch": "8.4.1", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.Grafana.Loki": "7.1.0", + "Serilog.Sinks.Seq": "5.1.0" + }, + "compile": { + "lib/net6.0/Convey.Logging.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.dll": {} + } + }, + "Convey.Logging.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.Logging": "1.1.448", + "SmartFormat.NET": "2.7.2" + }, + "compile": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Logging.CQRS.dll": {} + } + }, + "Convey.MessageBrokers/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.dll": {} + } + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.MessageBrokers": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.CQRS.dll": {} + } + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Hosting": "6.0.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.dll": {} + } + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.Outbox": "1.1.448", + "Convey.Persistence.MongoDB": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll": {} + } + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "Polly": "7.2.2", + "RabbitMQ.Client": "6.5.0" + }, + "compile": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "type": "package", + "dependencies": { + "App.Metrics.AspNetCore": "4.3.0", + "App.Metrics.AspNetCore.Core": "4.3.0", + "App.Metrics.AspNetCore.Endpoints": "4.3.0", + "App.Metrics.AspNetCore.Health": "3.2.0", + "App.Metrics.AspNetCore.Health.Endpoints": "3.2.0", + "App.Metrics.AspNetCore.Hosting": "4.3.0", + "App.Metrics.AspNetCore.Mvc": "4.3.0", + "App.Metrics.AspNetCore.Reporting": "4.0.0", + "App.Metrics.AspNetCore.Routing": "4.3.0", + "App.Metrics.AspNetCore.Tracking": "4.3.0", + "App.Metrics.Core": "4.3.0", + "App.Metrics.Extensions.Configuration": "4.3.0", + "App.Metrics.Extensions.DependencyInjection": "4.3.0", + "App.Metrics.Formatters.InfluxDB": "4.3.0", + "App.Metrics.Formatters.Json": "4.3.0", + "App.Metrics.Formatters.Prometheus": "4.3.0", + "App.Metrics.Health.Checks.Http": "3.2.0", + "App.Metrics.Reporting.Console": "4.3.0", + "App.Metrics.Reporting.Http": "4.3.0", + "App.Metrics.Reporting.InfluxDB": "4.3.0", + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Metrics.AppMetrics.dll": {} + } + }, + "Convey.Persistence.MongoDB/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "MongoDB.Driver": "2.14.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.MongoDB.dll": {} + } + }, + "Convey.Persistence.Redis/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Persistence.Redis.dll": {} + } + }, + "Convey.Secrets.Vault/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "VaultSharp": "1.7.0.4" + }, + "compile": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Secrets.Vault.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Security.dll": {} + } + }, + "Convey.Tracing.Jaeger/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Jaeger": "1.0.3", + "OpenTracing.Contrib.NetCore": "0.8.0" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "type": "package", + "dependencies": { + "Convey.MessageBrokers.RabbitMQ": "1.1.448", + "Convey.Tracing.Jaeger": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll": {} + } + }, + "Convey.WebApi/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Open.Serialization.Json.System": "2.3.2", + "Open.Serialization.Json.Utf8Json": "2.3.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.dll": {} + } + }, + "Convey.WebApi.CQRS/1.1.448": { + "type": "package", + "dependencies": { + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.CQRS.dll": {} + } + }, + "Convey.WebApi.Security/1.1.448": { + "type": "package", + "dependencies": { + "Convey": "1.1.448", + "Microsoft.AspNetCore.Authentication.Certificate": "6.0.1" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Security.dll": {} + } + }, + "Convey.WebApi.Swagger/1.1.448": { + "type": "package", + "dependencies": { + "Convey.Docs.Swagger": "1.1.448", + "Convey.WebApi": "1.1.448" + }, + "compile": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Convey.WebApi.Swagger.dll": {} + } + }, + "DnsClient/1.4.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Elasticsearch.Net/7.8.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.6.0", + "System.Buffers": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "related": ".pdb;.xml" + } + } + }, + "Figgle/0.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Compression.ZipFile": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Figgle.dll": { + "related": ".xml" + } + } + }, + "Jaeger/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Core": "1.0.3", + "Jaeger.Senders.Thrift": "1.0.3" + } + }, + "Jaeger.Communication.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "ApacheThrift": "0.14.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll": { + "related": ".pdb" + } + } + }, + "Jaeger.Core/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Newtonsoft.Json": "12.0.1", + "OpenTracing": "0.12.1", + "System.Threading.Tasks.Dataflow": "4.11.1" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Jaeger.Senders.Thrift/1.0.3": { + "type": "package", + "dependencies": { + "Jaeger.Communication.Thrift": "1.0.3", + "Jaeger.Core": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.1", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.0", + "Microsoft.Net.Http.Headers": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.6.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.10.0", + "Microsoft.IdentityModel.Tokens": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.10.0", + "System.IdentityModel.Tokens.Jwt": "6.10.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/2.14.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.14.1": { + "type": "package", + "dependencies": { + "MongoDB.Bson": "2.14.1", + "MongoDB.Driver.Core": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.14.1": { + "type": "package", + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.14.1", + "MongoDB.Libmongocrypt": "1.3.0", + "SharpCompress": "0.30.1", + "System.Buffers": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libsnappy64.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/linux/native/libzstd.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libsnappy64.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libzstd.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/libzstd.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy32.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy64.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "MongoDB.Libmongocrypt/1.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open.Serialization/2.3.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/Open.Serialization.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.dll": {} + } + }, + "Open.Serialization.Json/2.3.1": { + "type": "package", + "dependencies": { + "Open.Serialization": "2.3.1" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.dll": {} + } + }, + "Open.Serialization.Json.System/2.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.System.dll": {} + } + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "3.1.6", + "Open.Serialization.Json": "2.3.1", + "Utf8Json": "1.3.7" + }, + "compile": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll": {} + } + }, + "OpenTracing/0.12.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/OpenTracing.dll": { + "related": ".pdb;.xml" + } + } + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Hosting.Abstractions": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Logging": "[6.0.0, 7.0.0)", + "Microsoft.Extensions.Options": "[6.0.0, 7.0.0)", + "OpenTracing": "0.12.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/OpenTracing.Contrib.NetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "Polly/7.2.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + } + }, + "protobuf-net/2.4.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "4.5.3" + }, + "compile": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/protobuf-net.dll": { + "related": ".xml" + } + } + }, + "RabbitMQ.Client/6.5.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/RabbitMQ.Client.dll": { + "related": ".xml" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "compile": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "compile": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.0.0", + "Serilog": "2.9.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.0.4", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.6.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/4.0.1": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "type": "package", + "dependencies": { + "Elasticsearch.Net": "7.8.1", + "Microsoft.CSharp": "4.6.0", + "Serilog": "2.8.0", + "Serilog.Formatting.Compact": "1.0.0", + "Serilog.Formatting.Elasticsearch": "8.4.1", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.1.1", + "System.Diagnostics.DiagnosticSource": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "type": "package", + "dependencies": { + "Serilog": "2.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Threading.Timer": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Seq/5.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Sinks.File": "4.0.0", + "Serilog.Sinks.PeriodicBatching": "2.3.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Seq.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "SmartFormat.NET/2.7.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.Text.Json": "4.7.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/SmartFormat.dll": { + "related": ".xml" + } + } + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "compile": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.0", + "Microsoft.IdentityModel.Tokens": "6.15.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.IO.Pipes/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Pipes.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.3.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.5.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Primitives/4.5.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.5.3" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "ref/netstandard2.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {}, + "lib/netstandard2.0/System.ServiceModel.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "Utf8Json/1.3.7": { + "type": "package", + "dependencies": { + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Threading.Tasks.Extensions": "4.4.0", + "System.ValueTuple": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Utf8Json.dll": { + "related": ".xml" + } + } + }, + "VaultSharp/1.7.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/VaultSharp.dll": { + "related": ".xml" + } + } + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Convey": "1.1.448", + "Convey.CQRS.Commands": "1.1.448", + "Convey.CQRS.Events": "1.1.448", + "Convey.CQRS.Queries": "1.1.448", + "Convey.MessageBrokers": "1.1.448", + "MiniSpace.Services.Notifications.Core": "1.0.0" + }, + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Application.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Application.dll": {} + } + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + }, + "runtime": { + "bin/placeholder/MiniSpace.Services.Notifications.Core.dll": {} + } + } + } + }, + "libraries": { + "ApacheThrift/0.14.1": { + "sha512": "WQDdwNKZ8BeKtonbb8lxu2fVg9CHNbchJ8SGKtadVmxZC5l8wzhfKitaIQLuawch+8HhcAhuIf1FqiLYrlO3Bg==", + "type": "package", + "path": "apachethrift/0.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "apachethrift.0.14.1.nupkg.sha512", + "apachethrift.nuspec", + "lib/netstandard2.0/Thrift.dll", + "lib/netstandard2.1/Thrift.dll" + ] + }, + "App.Metrics/4.3.0": { + "sha512": "D2eDXyfrl+lXigXsQTv/81JCxUPTjgwsazK5neA3NOg87tNmBpFqeVJppI/qLKyC8yklTU2ekZDFX5hKechu6A==", + "type": "package", + "path": "app.metrics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.4.3.0.nupkg.sha512", + "app.metrics.nuspec", + "lib/net461/App.Metrics.dll", + "lib/net461/App.Metrics.pdb", + "lib/net461/App.Metrics.xml", + "lib/netstandard2.0/App.Metrics.dll", + "lib/netstandard2.0/App.Metrics.pdb", + "lib/netstandard2.0/App.Metrics.xml", + "logo.png" + ] + }, + "App.Metrics.Abstractions/4.3.0": { + "sha512": "ekSlyVgN6foN6rmwVmRGBr0j5ufgRPsO5f7Md2fc3q44vkBNYpjsRLiUQsIXCSVI3NHorkrZh8aL4eRcLkVDGw==", + "type": "package", + "path": "app.metrics.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.abstractions.4.3.0.nupkg.sha512", + "app.metrics.abstractions.nuspec", + "lib/net461/App.Metrics.Abstractions.dll", + "lib/net461/App.Metrics.Abstractions.pdb", + "lib/net461/App.Metrics.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore/4.3.0": { + "sha512": "b9xsSzFRRMTfhZSwPxwA6AgnItIfINXVXJHtnawjWZmELByAVljqk/pt/rqBgmGdi4lm08mYD5Oa+wv//79iiA==", + "type": "package", + "path": "app.metrics.aspnetcore/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Abstractions/4.3.0": { + "sha512": "VQRn2A70HXn0KzB0OTzx4C7LjTLa2zARg4G2OkHpdlbqBQaJo7Lt1amKjzUQAdg7zEEOofr9wtzVISpV63UB9A==", + "type": "package", + "path": "app.metrics.aspnetcore.abstractions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.abstractions.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Abstractions.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Abstractions.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Core/4.3.0": { + "sha512": "Ddk6q4YeA2P23+07MXo6j4vaJtE+sY81+6jbbLBSboW9CRhO40QKUukYW+OtNfgX+PegQigHWjFLrZGt/X4sWw==", + "type": "package", + "path": "app.metrics.aspnetcore.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Endpoints/4.3.0": { + "sha512": "Ns/66gHqwwujWpSxrgdJH39YcNYfmd23Jon+vb+SE43VOFTBHRxer6zGJQIuFdFhePCFlT7obi5Dz9hde47jIQ==", + "type": "package", + "path": "app.metrics.aspnetcore.endpoints/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.endpoints.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Endpoints.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Endpoints.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Health/3.2.0": { + "sha512": "9elwKCG57Ka3DBTbqi+7VSQ86KwaAISU3dNnqyfMebqCnXZ08ur9PmlsSOSEgUrWq8Wa7dEb+PmW7iuWpJ5gqg==", + "type": "package", + "path": "app.metrics.aspnetcore.health/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Core/3.2.0": { + "sha512": "Oxlb2mWKW/RGDKbBUuZcHFkknTcJCDmnba7Ee3EXphaE0+F/CVEfk2QDVKpJeiam9xlNZCj61hDT1WqquBZxjw==", + "type": "package", + "path": "app.metrics.aspnetcore.health.core/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Core.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Endpoints/3.2.0": { + "sha512": "2ZPP7744MwtvH9GGKcqjzizZJgGGbOCmfqogfOuOuXWMo7/DT6wbb23qbNcVuGEQiVPpk0h1wDBYTRJ1K/VvbA==", + "type": "package", + "path": "app.metrics.aspnetcore.health.endpoints/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.endpoints.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Endpoints.xml" + ] + }, + "App.Metrics.AspNetCore.Health.Hosting/3.2.0": { + "sha512": "NTto7jz7AaiwaYzLPYpPl/LVVOZLKqm+Uiu4s5VQ0mQJmegIsKumFinbOHkJ/lKOrGQGgZyd0x6ptp98TMD1Ig==", + "type": "package", + "path": "app.metrics.aspnetcore.health.hosting/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "app.metrics.aspnetcore.health.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Health.Hosting.xml" + ] + }, + "App.Metrics.AspNetCore.Hosting/4.3.0": { + "sha512": "BBb4BT6c20pT/in7jzSR0PrKXc1kwGQNLY921BRs5szJcNoNkdPbct7gzYOUed2JWMY7e2GhKNVZT9Ew1fQ9XA==", + "type": "package", + "path": "app.metrics.aspnetcore.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Hosting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc/4.3.0": { + "sha512": "CvsIUrUFS6sWimxKRl9RChDtOAGY36yW3HSTNXSaUrbFpmF76qL2HKiXu+4vSpO0Xau+fk7TdJvGRiG5RWGj0A==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Mvc.Core/4.3.0": { + "sha512": "acAmuq4roemQv19S7xtboDqEA04NAlSsIw9F/mt51fCcjdq338qgdlEFlr3M2OCaorfS8WzMtlBPblY2/VUdWg==", + "type": "package", + "path": "app.metrics.aspnetcore.mvc.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.mvc.core.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Mvc.Core.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Mvc.Core.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Reporting/4.0.0": { + "sha512": "cFwfeqr+mVYhkRtjQ7T+dsWRnKbRfYO4ZEiGxzmAmmXnzyd8AqbC/tryyhvVXjpjfdo9TIz0uqOwS0e/s9kHlg==", + "type": "package", + "path": "app.metrics.aspnetcore.reporting/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "app.metrics.aspnetcore.reporting.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Reporting.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Reporting.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Routing/4.3.0": { + "sha512": "s8TMzlkvKM+zBlLYVcpH/Ofk4ftfWBvSDD6T+ehxMiY3k4entz6SVAeJTLrq2PDmO2T5vy7cYI97R0M6Fr6dpA==", + "type": "package", + "path": "app.metrics.aspnetcore.routing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.routing.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Routing.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Routing.xml", + "logo.png" + ] + }, + "App.Metrics.AspNetCore.Tracking/4.3.0": { + "sha512": "NWFmXLKEDXdkdKBN32FZXBd16Qhj6UpzQYSjmUN8XOYb+pjJQxttpTTnO8nWYHQ1xX893jx8vjZTN8vQ40j9AA==", + "type": "package", + "path": "app.metrics.aspnetcore.tracking/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "app.metrics.aspnetcore.tracking.nuspec", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.dll", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netcoreapp3.1/App.Metrics.AspNetCore.Tracking.xml", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.dll", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.pdb", + "lib/netstandard2.0/App.Metrics.AspNetCore.Tracking.xml", + "logo.png" + ] + }, + "App.Metrics.Concurrency/4.3.0": { + "sha512": "otryWX9AR7wLPD49glbxvbYc16pnDOEezHsAtf5oVjhAa/fD+fjhI11MOgzBOjFpkH7z2FLl/gtZ0lwSdNxSag==", + "type": "package", + "path": "app.metrics.concurrency/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.concurrency.4.3.0.nupkg.sha512", + "app.metrics.concurrency.nuspec", + "lib/netstandard1.1/App.Metrics.Concurrency.dll", + "lib/netstandard1.1/App.Metrics.Concurrency.pdb", + "lib/netstandard1.1/App.Metrics.Concurrency.xml", + "lib/netstandard2.0/App.Metrics.Concurrency.dll", + "lib/netstandard2.0/App.Metrics.Concurrency.pdb", + "lib/netstandard2.0/App.Metrics.Concurrency.xml", + "logo.png" + ] + }, + "App.Metrics.Core/4.3.0": { + "sha512": "HhW4n2fF+WBi6ctCpwsYkKCSeLhG5Y17e31kSkdESNAdPvroI9szlzW3WoY20qsB3bCldrGPPnCN6jXI1t3agA==", + "type": "package", + "path": "app.metrics.core/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.core.4.3.0.nupkg.sha512", + "app.metrics.core.nuspec", + "lib/net461/App.Metrics.Core.dll", + "lib/net461/App.Metrics.Core.pdb", + "lib/net461/App.Metrics.Core.xml", + "lib/netstandard2.0/App.Metrics.Core.dll", + "lib/netstandard2.0/App.Metrics.Core.pdb", + "lib/netstandard2.0/App.Metrics.Core.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Configuration/4.3.0": { + "sha512": "+5eNA58nJEvKNd6eKXXnwjjH8KU0wIN9VnE4015qoU6P/yii0tKARrF5Rbw0OGpI6jJmfZ/UIielU07b9QB8aA==", + "type": "package", + "path": "app.metrics.extensions.configuration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "app.metrics.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Configuration.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.DependencyInjection/4.3.0": { + "sha512": "lujWx61MSJPKdX7PiaNPv0aXW6D+UzzqiQe/2EwXv401+bshJyyrltSTVVS2cuyla+iq/ag+W1Vc/xeFR0rrwg==", + "type": "package", + "path": "app.metrics.extensions.dependencyinjection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "app.metrics.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.DependencyInjection.xml", + "logo.png" + ] + }, + "App.Metrics.Extensions.Hosting/4.3.0": { + "sha512": "uSw1pD6MHoky5NCDHsmGArThHhjIXiILRv+XboZXHGA6M4DbWbPrPMsMr9uCeKKyT2wl63y8cboH8oCkC4s8yg==", + "type": "package", + "path": "app.metrics.extensions.hosting/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "app.metrics.extensions.hosting.nuspec", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.dll", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.pdb", + "lib/netcoreapp3.1/App.Metrics.Extensions.Hosting.xml", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.pdb", + "lib/netstandard2.0/App.Metrics.Extensions.Hosting.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Ascii/4.3.0": { + "sha512": "PPacBFRji8wTGv8rs13fPmAVlOit7CAvkdPkZ6aYgtUa75e0v4fYzwqPcLxokCqdQXW96PpKPfC0VZZeDkgljg==", + "type": "package", + "path": "app.metrics.formatters.ascii/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "app.metrics.formatters.ascii.nuspec", + "lib/net461/App.Metrics.Formatters.Ascii.dll", + "lib/net461/App.Metrics.Formatters.Ascii.pdb", + "lib/net461/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Ascii.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Ascii.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.InfluxDB/4.3.0": { + "sha512": "p7SOLha8ZZVxuOkbNBwOk8bjhszI6+WVoeKkgE662wm6z3erm7jYkIKFusi9LbNH6rW8FmPiiDeQ1Dvu4oTB4Q==", + "type": "package", + "path": "app.metrics.formatters.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "app.metrics.formatters.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.InfluxDB.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Json/4.3.0": { + "sha512": "H+4Q407Xa5nuBagooMeh5UAuGHWfKZRsinpwr9dtyV+LZbhAS5yheAAMPY1Xs/g0zzI3zJQJDRy7iX0totAcYA==", + "type": "package", + "path": "app.metrics.formatters.json/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.json.4.3.0.nupkg.sha512", + "app.metrics.formatters.json.nuspec", + "lib/net461/App.Metrics.Formatters.Json.dll", + "lib/net461/App.Metrics.Formatters.Json.pdb", + "lib/net461/App.Metrics.Formatters.Json.xml", + "lib/netstandard2.0/App.Metrics.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Json.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Json.xml", + "logo.png" + ] + }, + "App.Metrics.Formatters.Prometheus/4.3.0": { + "sha512": "cVJZX5jiMxt+YytjpbMw52reN47LGL3XsCljzNH9Pb+Op9iSTazc4pa+/fX+FdpbhH/Zt+5hjdYiqOLFol0wGg==", + "type": "package", + "path": "app.metrics.formatters.prometheus/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "app.metrics.formatters.prometheus.nuspec", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.0/App.Metrics.Formatters.Prometheus.xml", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.dll", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.pdb", + "lib/netstandard2.1/App.Metrics.Formatters.Prometheus.xml", + "logo.png" + ] + }, + "App.Metrics.Health/3.1.0": { + "sha512": "JpXTM6208PaqlVRLLO5gq1/qrG7RzbOibKCz91vZL5cZISdkLVuHg5xUoyB/cEIlJ05Vne3ZYcIe2s5WuI6cuA==", + "type": "package", + "path": "app.metrics.health/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.3.1.0.nupkg.sha512", + "app.metrics.health.nuspec", + "lib/netstandard2.0/App.Metrics.Health.dll", + "lib/netstandard2.0/App.Metrics.Health.xml" + ] + }, + "App.Metrics.Health.Abstractions/3.2.0": { + "sha512": "DaYlVCfpw7Wb95JhahKbwSdO8a4QnEbzw0hUJC2Q+AznrdAXq+M9JvbGFdGLxGBnJWF9Nt++X6zZ6nTYXXTWhA==", + "type": "package", + "path": "app.metrics.health.abstractions/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "app.metrics.health.abstractions.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.dll", + "lib/netstandard2.0/App.Metrics.Health.Abstractions.xml" + ] + }, + "App.Metrics.Health.Checks.Http/3.2.0": { + "sha512": "Giu7/5yPiICbMFiUxx00PSZjfVatdBkeQCjXpCGvY8VUynlSLDX5fmn/s0nHqlMPYdpDWT1+mR1YC2B1/z8CPQ==", + "type": "package", + "path": "app.metrics.health.checks.http/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "app.metrics.health.checks.http.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.dll", + "lib/netstandard2.0/App.Metrics.Health.Checks.Http.xml" + ] + }, + "App.Metrics.Health.Core/3.1.0": { + "sha512": "mRrq5kUVZxfUCCqB2hxmVi3uQ38CaNiNm/Jc81N55beBuv3Hh9XOj0jkzK7IKwWUcEJsI8Iz5ZrwOnq0n795HQ==", + "type": "package", + "path": "app.metrics.health.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.core.3.1.0.nupkg.sha512", + "app.metrics.health.core.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Core.dll", + "lib/netstandard2.0/App.Metrics.Health.Core.xml" + ] + }, + "App.Metrics.Health.Extensions.Configuration/3.1.0": { + "sha512": "5JRYQgS4VYaH0ed4BuNffZvf/8ecFQLV0+VZSP+gQ2yD+WDgLWKr9wNQi3gqPyEe1wUhTCyG5EMhzktHm//xEQ==", + "type": "package", + "path": "app.metrics.health.extensions.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.configuration.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Configuration.xml" + ] + }, + "App.Metrics.Health.Extensions.DependencyInjection/3.1.0": { + "sha512": "N7V14nag1uU8XG3xKtXC2+wQ0r+s0uMVR129nMTxvpFvyGdGwNCpIlxJMG2BUNO5kdla26x1FxOw6SXd+Dfgpw==", + "type": "package", + "path": "app.metrics.health.extensions.dependencyinjection/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.dependencyinjection.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.DependencyInjection.xml" + ] + }, + "App.Metrics.Health.Extensions.Hosting/3.1.0": { + "sha512": "TWnsg8AgTjfWMeZUfpNuILwZDA5k2zBIoJfTwxHATh4qSqoic8E9YoLCTx5Tfq0LgNTIxL6PwTiAANUKHN7MTw==", + "type": "package", + "path": "app.metrics.health.extensions.hosting/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "app.metrics.health.extensions.hosting.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.dll", + "lib/netstandard2.0/App.Metrics.Health.Extensions.Hosting.xml" + ] + }, + "App.Metrics.Health.Formatters.Ascii/3.1.0": { + "sha512": "9tBPj9/3GZ5JaSzBr+Ic9zi7YZYFadvUgG+XYadR31kKjTgZaRz7ZC1AgAXk4rUuCl2xiGe7aOW7Mja72c58wA==", + "type": "package", + "path": "app.metrics.health.formatters.ascii/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.ascii.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Ascii.xml" + ] + }, + "App.Metrics.Health.Formatters.Json/3.1.0": { + "sha512": "23QTBRvw7zYwkRcPMJfxhbciMnFgv8nHZyajaTgiR2Dz2VJUZ8Ga6Yppe3O2pGqT64N2JfMAasT2DiOt8YZsWw==", + "type": "package", + "path": "app.metrics.health.formatters.json/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "app.metrics.health.formatters.json.nuspec", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.dll", + "lib/netstandard2.0/App.Metrics.Health.Formatters.Json.xml" + ] + }, + "App.Metrics.Reporting.Console/4.3.0": { + "sha512": "LhQQd+CTwQ6YXpg53Bnt9seGh/zKDMWF/hWPIYVUUv5163PpexIFgvH85U7J1+Yjxrka95OEv5O/uUGxPQcyHg==", + "type": "package", + "path": "app.metrics.reporting.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.console.4.3.0.nupkg.sha512", + "app.metrics.reporting.console.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Console.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Console.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Console.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.Http/4.3.0": { + "sha512": "D8+KrOSmQNl080046ifUBc02BDKG1PGairfq/qO95F84OKPpIeY32NmQK+Zj4JttQmfUGEYkgukWe6ru1Knc5A==", + "type": "package", + "path": "app.metrics.reporting.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.http.4.3.0.nupkg.sha512", + "app.metrics.reporting.http.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.Http.dll", + "lib/netstandard2.0/App.Metrics.Reporting.Http.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.Http.xml", + "logo.png" + ] + }, + "App.Metrics.Reporting.InfluxDB/4.3.0": { + "sha512": "uWKptdl0DlVZqlrP6YzvZko037xHhihNNmANw0FzwyF8VvJIcEBfMmLq1b3A7ljiEAV56V0bm0Rn/H0n9EZ2kw==", + "type": "package", + "path": "app.metrics.reporting.influxdb/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "app.metrics.reporting.influxdb.nuspec", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.0/App.Metrics.Reporting.InfluxDB.xml", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.dll", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.pdb", + "lib/netstandard2.1/App.Metrics.Reporting.InfluxDB.xml", + "logo.png" + ] + }, + "Convey/1.1.448": { + "sha512": "ZEA4YpNi5EDTVXt/LvMpu3dE5i4mYfMhdaBxtsaZyI55jAZMMpQ2DDuopdZ6ijm/6aFBQkU1YhBOhHQNGGDNGg==", + "type": "package", + "path": "convey/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.1.1.448.nupkg.sha512", + "convey.nuspec", + "lib/net6.0/Convey.dll" + ] + }, + "Convey.Auth/1.1.448": { + "sha512": "8hh3q177/VB7jixzvNAWkWgCfKB19SBq9F42cq2UAuJKf9E9fpgWQJ/ZpZCPJ69HIb8NBjj+uSOCTUjP0OyzlQ==", + "type": "package", + "path": "convey.auth/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.auth.1.1.448.nupkg.sha512", + "convey.auth.nuspec", + "lib/net6.0/Convey.Auth.dll" + ] + }, + "Convey.CQRS.Commands/1.1.448": { + "sha512": "3rqpuQRIi2DC+BtoBdoANxsUMbW9FthckxPpm5RFrYle3o8sQHSLk+86Gi0ZLygRa/vXVIX+ogNqOAZ1g1rDLA==", + "type": "package", + "path": "convey.cqrs.commands/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.commands.1.1.448.nupkg.sha512", + "convey.cqrs.commands.nuspec", + "lib/net6.0/Convey.CQRS.Commands.dll" + ] + }, + "Convey.CQRS.Events/1.1.448": { + "sha512": "iHvO7nB+ZnYkSFvDEJBnuMG2z7ZQtyXzibZVxxp/q+cyJYX7/CQorSDSDc0M7cEwA20VFiR7lCkINdx5HbUaIA==", + "type": "package", + "path": "convey.cqrs.events/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.events.1.1.448.nupkg.sha512", + "convey.cqrs.events.nuspec", + "lib/net6.0/Convey.CQRS.Events.dll" + ] + }, + "Convey.CQRS.Queries/1.1.448": { + "sha512": "OzFNIKM8Ig/4LUbSt1kfAjdTZ4T73i3tjoy/xhzMcCT2ncspG5oVlAyd+NesgppCQhP/q5rNaNiNm50sTl4kSg==", + "type": "package", + "path": "convey.cqrs.queries/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.cqrs.queries.1.1.448.nupkg.sha512", + "convey.cqrs.queries.nuspec", + "lib/net6.0/Convey.CQRS.Queries.dll" + ] + }, + "Convey.Discovery.Consul/1.1.448": { + "sha512": "3p7Gc/oLfLX5i+uYOOeJixFZAgAOZzSPc3pOjg+Bl6bd+9iiUB8qlLO23vXLsYd1bjmt3MarsUsKSWrlPZL9CQ==", + "type": "package", + "path": "convey.discovery.consul/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.discovery.consul.1.1.448.nupkg.sha512", + "convey.discovery.consul.nuspec", + "lib/net6.0/Convey.Discovery.Consul.dll" + ] + }, + "Convey.Docs.Swagger/1.1.448": { + "sha512": "k7EGUq+C6vzPIFGPh8SsC4F06pO9i8KT8cUTDz/LZTrPLXZ1mJbmA2HLZyDVqQXlXS05PA8olFldtReZ64iMxA==", + "type": "package", + "path": "convey.docs.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.docs.swagger.1.1.448.nupkg.sha512", + "convey.docs.swagger.nuspec", + "lib/net6.0/Convey.Docs.Swagger.dll" + ] + }, + "Convey.HTTP/1.1.448": { + "sha512": "MCUceR2Qvrdg2tFBpnIoD06RNhEP0HOkAeDcFRxwwQkdMJb6jNqVjbMdwb0rr7xnDgY7Gg+0ZnLlkhYPSj3QHg==", + "type": "package", + "path": "convey.http/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.http.1.1.448.nupkg.sha512", + "convey.http.nuspec", + "lib/net6.0/Convey.HTTP.dll" + ] + }, + "Convey.LoadBalancing.Fabio/1.1.448": { + "sha512": "QTpxNtW8XqKBpAQRaHZ7WoYnWjffEJKyy/igHyZWNpCQHvSZSW+fXqqjSBBJMlbwKWRyeYyAvWBsxH8/tLj4nA==", + "type": "package", + "path": "convey.loadbalancing.fabio/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "convey.loadbalancing.fabio.nuspec", + "lib/net6.0/Convey.LoadBalancing.Fabio.dll" + ] + }, + "Convey.Logging/1.1.448": { + "sha512": "sHT1DMV0TwzQ96kg+wRH04a+xdP4/pltIIjz1m2m3YtVfoQxnoJCtfAcPRHdUyJDhIf2wkPy/ZV5JfmzijCsjQ==", + "type": "package", + "path": "convey.logging/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.1.1.448.nupkg.sha512", + "convey.logging.nuspec", + "lib/net6.0/Convey.Logging.dll" + ] + }, + "Convey.Logging.CQRS/1.1.448": { + "sha512": "Jr6GqK6tOOdp18JLXBkyNnFvvTKbVFttOZnqaOnPwqYBQrL7C6YIWx1ADj+eeASR25SoWBLUyjQ09JZBzVtpRg==", + "type": "package", + "path": "convey.logging.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.logging.cqrs.1.1.448.nupkg.sha512", + "convey.logging.cqrs.nuspec", + "lib/net6.0/Convey.Logging.CQRS.dll" + ] + }, + "Convey.MessageBrokers/1.1.448": { + "sha512": "bxKUdKUyCPo+QFkgMidERQluXfd0hxRslrquvJNL/qk/82zSR0OTfPwnbylUZfeZrFPOzIphcoz6T/7f0rUFcA==", + "type": "package", + "path": "convey.messagebrokers/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.1.1.448.nupkg.sha512", + "convey.messagebrokers.nuspec", + "lib/net6.0/Convey.MessageBrokers.dll" + ] + }, + "Convey.MessageBrokers.CQRS/1.1.448": { + "sha512": "cKSfZ6ApHtRy/1TV0FTHMeS3PumxEhq9kxP3GCx/RUITdsSot+ZgZ5DgvQDaXGRuwDfWXbUQQayBIFTQaDpReA==", + "type": "package", + "path": "convey.messagebrokers.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "convey.messagebrokers.cqrs.nuspec", + "lib/net6.0/Convey.MessageBrokers.CQRS.dll" + ] + }, + "Convey.MessageBrokers.Outbox/1.1.448": { + "sha512": "UPcVS6MnezzfU+PNeEiDmI5vhBzASvGO/QPt9QyK2OTWuI1mRhEtGIDIT4CrQrVDht3/ZmrCevtK8T9SWewTAg==", + "type": "package", + "path": "convey.messagebrokers.outbox/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.dll" + ] + }, + "Convey.MessageBrokers.Outbox.Mongo/1.1.448": { + "sha512": "skejfzY3DwTGtoF0rq2m1PEKhHfLIHQwuWvJAkuvxwiEBzMymcNNKOsybdds7LotPqWiW5GTvd/3eojRrfJttg==", + "type": "package", + "path": "convey.messagebrokers.outbox.mongo/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "convey.messagebrokers.outbox.mongo.nuspec", + "lib/net6.0/Convey.MessageBrokers.Outbox.Mongo.dll" + ] + }, + "Convey.MessageBrokers.RabbitMQ/1.1.448": { + "sha512": "iyygZ5ctSOL+HgLtkyTpmyo9EmYL/xu2+SpT4hzg7e238pckfXltiUtEb3Yn92fPAY1f+Bhf36DEu5yHpghD7w==", + "type": "package", + "path": "convey.messagebrokers.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "convey.messagebrokers.rabbitmq.nuspec", + "lib/net6.0/Convey.MessageBrokers.RabbitMQ.dll" + ] + }, + "Convey.Metrics.AppMetrics/1.1.448": { + "sha512": "PibvSJJ+PZmYf0OKfj/t7n7eswrlj7Te59BL449InHVIRDH9zU4zbKbiiAi37+srqO5mUd4rlXaoh65cJ6q06A==", + "type": "package", + "path": "convey.metrics.appmetrics/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "convey.metrics.appmetrics.nuspec", + "lib/net6.0/Convey.Metrics.AppMetrics.dll" + ] + }, + "Convey.Persistence.MongoDB/1.1.448": { + "sha512": "KJqELBkr7FE3MASpnjrKTd/HZBCxq7ghSHLp9NNOxbd0UKm2xLAujoqVDgMKRq042a1+Ka7KPYsvEM+QoQaGuw==", + "type": "package", + "path": "convey.persistence.mongodb/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.mongodb.1.1.448.nupkg.sha512", + "convey.persistence.mongodb.nuspec", + "lib/net6.0/Convey.Persistence.MongoDB.dll" + ] + }, + "Convey.Persistence.Redis/1.1.448": { + "sha512": "pvWA9Hg+JKtar40xa+wU702ixYLR5lB56W2VgCJLIVCirUo/trStr2InRlw/UtRTSntQKukrxfYSxU7FSlSS9g==", + "type": "package", + "path": "convey.persistence.redis/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.persistence.redis.1.1.448.nupkg.sha512", + "convey.persistence.redis.nuspec", + "lib/net6.0/Convey.Persistence.Redis.dll" + ] + }, + "Convey.Secrets.Vault/1.1.448": { + "sha512": "FdimvRYPpJ3DcwpNbY5k1BgIR8dHqup3pquqBuACayjU/DTtWRjm1Bk3iojn4FdDOALPxU2pZ1hBX2cmZWB9bg==", + "type": "package", + "path": "convey.secrets.vault/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.secrets.vault.1.1.448.nupkg.sha512", + "convey.secrets.vault.nuspec", + "lib/net6.0/Convey.Secrets.Vault.dll" + ] + }, + "Convey.Security/1.1.448": { + "sha512": "qJ/fk+7eaoH6ywy+gc1DJP+NbskNwQhj511Vwn6GqQctUelQZnk+zcaX1H/5xZL6Sjw8ofC9/hSfSYWxZ5oTfw==", + "type": "package", + "path": "convey.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.security.1.1.448.nupkg.sha512", + "convey.security.nuspec", + "lib/net6.0/Convey.Security.dll" + ] + }, + "Convey.Tracing.Jaeger/1.1.448": { + "sha512": "0s61mMYggLkpRJcSMgibvvUiy4/GSKgFsFI3YTJwrKQmcDtn7IPIkUr3GKtQdxCb5G2oaiiwdGmqoeU4vTrMvg==", + "type": "package", + "path": "convey.tracing.jaeger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.dll" + ] + }, + "Convey.Tracing.Jaeger.RabbitMQ/1.1.448": { + "sha512": "9apXK2ef11n651xvkzkcwNjSj95jCllzRC4d+RbA6X/CTPyU5MkZctRb4MLujrbkIhKyJY5zLrNfs7nGhLjXpA==", + "type": "package", + "path": "convey.tracing.jaeger.rabbitmq/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "convey.tracing.jaeger.rabbitmq.nuspec", + "lib/net6.0/Convey.Tracing.Jaeger.RabbitMQ.dll" + ] + }, + "Convey.WebApi/1.1.448": { + "sha512": "2xLvyyTe2jZQ02oFQt/c7VeUAEH19A7ea4J1A0PLcvyxf1QTO3m21/TMTVtcVVfEWLLrO9nUL0acNAxAPmTDqw==", + "type": "package", + "path": "convey.webapi/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.1.1.448.nupkg.sha512", + "convey.webapi.nuspec", + "lib/net6.0/Convey.WebApi.dll" + ] + }, + "Convey.WebApi.CQRS/1.1.448": { + "sha512": "EsoIfwPsQiGcj45BOgaxGfMUL1Nm7HKtFSp9jbqd4K12IdAJkB7PWM1E9rSRb22q41S81uv1L5/RYdBLe8LwqA==", + "type": "package", + "path": "convey.webapi.cqrs/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.cqrs.1.1.448.nupkg.sha512", + "convey.webapi.cqrs.nuspec", + "lib/net6.0/Convey.WebApi.CQRS.dll" + ] + }, + "Convey.WebApi.Security/1.1.448": { + "sha512": "R95g90rABWruwh2jzejs1r4DSB1XKj0j0vton/BmBjFhGWGdOO1DFNH6DmvC9aTxWyGV2evaHuIo663eWridMA==", + "type": "package", + "path": "convey.webapi.security/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.security.1.1.448.nupkg.sha512", + "convey.webapi.security.nuspec", + "lib/net6.0/Convey.WebApi.Security.dll" + ] + }, + "Convey.WebApi.Swagger/1.1.448": { + "sha512": "cDOT+ItNiFzovlStyVCHRXRwVAha46vmWPgBya7rIezqBm7wW2K+9u08cKTBBnt9FVkeo4Dl6sgzrVEP/lGXig==", + "type": "package", + "path": "convey.webapi.swagger/1.1.448", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "convey.webapi.swagger.1.1.448.nupkg.sha512", + "convey.webapi.swagger.nuspec", + "lib/net6.0/Convey.WebApi.Swagger.dll" + ] + }, + "DnsClient/1.4.0": { + "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "type": "package", + "path": "dnsclient/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.4.0.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Elasticsearch.Net/7.8.1": { + "sha512": "vGHlxY72LH8/DcKb/QDpvrIelQIUFxNnXa+HmS/ifX7M7dgwmTpA2i4SagQ65gg7oi088cteUuDl4fKIystg7Q==", + "type": "package", + "path": "elasticsearch.net/7.8.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "elasticsearch.net.7.8.1.nupkg.sha512", + "elasticsearch.net.nuspec", + "lib/net461/Elasticsearch.Net.dll", + "lib/net461/Elasticsearch.Net.pdb", + "lib/net461/Elasticsearch.Net.xml", + "lib/netstandard2.0/Elasticsearch.Net.dll", + "lib/netstandard2.0/Elasticsearch.Net.pdb", + "lib/netstandard2.0/Elasticsearch.Net.xml", + "lib/netstandard2.1/Elasticsearch.Net.dll", + "lib/netstandard2.1/Elasticsearch.Net.pdb", + "lib/netstandard2.1/Elasticsearch.Net.xml", + "license.txt", + "nuget-icon.png" + ] + }, + "Figgle/0.4.0": { + "sha512": "cHs6CTvKljWhQpAlu8Q5SVf4H3DNNYNFjPMsv9VIm+Pj7Z0O9oq2o4lF02GUVI+aHEVg24BdtmUadIbVoDD9uw==", + "type": "package", + "path": "figgle/0.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "figgle.0.4.0.nupkg.sha512", + "figgle.nuspec", + "lib/net45/Figgle.dll", + "lib/net45/Figgle.xml", + "lib/netstandard1.3/Figgle.dll", + "lib/netstandard1.3/Figgle.xml", + "logo-square-256px.png" + ] + }, + "Jaeger/1.0.3": { + "sha512": "y7BUOpX6K+iKcY4j+VLgX4iUSejgPL5iCp5H+K06N8YFS70xOc4Si7l17B32+2yKPAd+ROHKSgBG16OKcupH5g==", + "type": "package", + "path": "jaeger/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.1.0.3.nupkg.sha512", + "jaeger.nuspec" + ] + }, + "Jaeger.Communication.Thrift/1.0.3": { + "sha512": "LwWqWk37RXOpUsdj1PnYZKruBvyVWeP2cY3jcl+oxIghV2f8tvwOmOnJgUVC/xerMnp1MfQVGoHaud20x1ioFw==", + "type": "package", + "path": "jaeger.communication.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.communication.thrift.1.0.3.nupkg.sha512", + "jaeger.communication.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Communication.Thrift.dll", + "lib/netstandard2.0/Jaeger.Communication.Thrift.pdb" + ] + }, + "Jaeger.Core/1.0.3": { + "sha512": "GEqd4C0sh4+n1fxeOIXKjsMo22j8QJokinFnkZO+ikQrcGz6ulh8DJ8J2NibrThPFN/6O/gqLtNM89y1p30ZOQ==", + "type": "package", + "path": "jaeger.core/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.core.1.0.3.nupkg.sha512", + "jaeger.core.nuspec", + "lib/netstandard2.0/Jaeger.Core.dll", + "lib/netstandard2.0/Jaeger.Core.pdb", + "lib/netstandard2.0/Jaeger.Core.xml" + ] + }, + "Jaeger.Senders.Thrift/1.0.3": { + "sha512": "3SJ2QhJW0sA+F85wnJOX329KRjdxeR204IjPaUJNzya03ezQ35k+132KT23ISeq1QCvYSRz3sDZrFuNCqlnMhw==", + "type": "package", + "path": "jaeger.senders.thrift/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jaeger-icon.png", + "jaeger.senders.thrift.1.0.3.nupkg.sha512", + "jaeger.senders.thrift.nuspec", + "lib/netstandard2.0/Jaeger.Senders.Thrift.dll", + "lib/netstandard2.0/Jaeger.Senders.Thrift.pdb", + "lib/netstandard2.0/Jaeger.Senders.Thrift.xml" + ] + }, + "Microsoft.AspNetCore.Authentication.Certificate/6.0.1": { + "sha512": "VgM4yNsGRmCYPnm2Xeq4MsUcbG+C8xXgFYot9nsHLTiYE3nJrSAHXXUgoWZ8X/IYeCwegHxtPwO5zakVoHxghA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.certificate/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.Certificate.xml", + "microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.certificate.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.1": { + "sha512": "5LDZ36RYl/31dRl807Ad1WV3GwaYprYyPu6+pjTkjpjsv/e2wIs7/VMtcp04RKIjO9oANcvCahZWX1zpH2+tHg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/6.0.1": { + "sha512": "4XjeiDdQPmC5eNMFGM9LEcQUxORz6NpUsYD1AmZuk8GBA8IW8kN+o7M7m+rhhrYIWxQ9TADePaMWeomScGhbCQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "sha512": "1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "sha512": "YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.0": { + "sha512": "M8Gk5qrUu5nFV7yE3SZgATt/5B1a5Qs8ZnXXeO/Pqu68CEiBHJWc10sdGdO5guc3zOFdm7H966mVnpZtEX4vSA==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.1": { + "sha512": "7CquMq2Hb0+0/kKnDf83WBLiEh04UPIOZgxgpjF0NegU1gHZ50llgZupOE3FRARmdzzW7A0AJtt9zobKbMTJkA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.0.0": { + "sha512": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.6.0": { + "sha512": "kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", + "type": "package", + "path": "microsoft.csharp/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.6.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "sha512": "Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { + "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { + "sha512": "DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { + "sha512": "lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/6.0.0": { + "sha512": "M8VzD0ni5VarIRT8njnwK4K2WSAo0kZH4Zc3mKcSGkP4CjDZ91T9ZEFmmwhmo4z7x8AFq+tW0WFi9wX+K2cxkQ==", + "type": "package", + "path": "microsoft.extensions.hosting/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Hosting.dll", + "lib/net461/Microsoft.Extensions.Hosting.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/6.0.0": { + "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "type": "package", + "path": "microsoft.extensions.http/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Http.dll", + "lib/net461/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "sha512": "ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net461/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/6.0.0": { + "sha512": "gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "type": "package", + "path": "microsoft.extensions.logging.console/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Console.dll", + "lib/net461/Microsoft.Extensions.Logging.Console.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0": { + "sha512": "BeDyyqt7nkm/nr+Gdk+L8n1tUT/u33VkbXAOesgYSNsxDM9hJ1NOBGoZfj9rCbeD2+9myElI6JOVVFmnzgeWQA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net461/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.0": { + "sha512": "IRFqTyIKV7dxIdFS7B6OYEIq6UweeZgpgHjZSjh8m9zZkBTwR9CIJ3wPalpAmJnkFsVdrUs/wprfCM7yyyd/Zg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.0": { + "sha512": "C6ipogdUEjMew1pVAqilUARrwIfVafDHD7fSxNacB9CypLDiAa7Sl+sWsJOHYp2mhwo3G5ADhaMueR9uByCeXw==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.10.0": { + "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": { + "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.0": { + "sha512": "KC7d+0ma56r7XTP6J7WAGaFRiYMLED9qH/Q3TWwpJzvGzAx8afvk/sTWhaquxipTZB/KBIVO6uxpiepcVBd6RA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.1.0": { + "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==", + "type": "package", + "path": "microsoft.net.http.headers/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.1.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/2.14.1": { + "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", + "type": "package", + "path": "mongodb.bson/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.14.1.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.14.1": { + "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", + "type": "package", + "path": "mongodb.driver/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.14.1.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.14.1": { + "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", + "type": "package", + "path": "mongodb.driver.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "THIRD-PARTY-NOTICES", + "build/MongoDB.Driver.Core.targets", + "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "content/Core/Compression/Snappy/lib/win/snappy32.dll", + "content/Core/Compression/Snappy/lib/win/snappy64.dll", + "content/Core/Compression/Zstandard/lib/linux/libzstd.so", + "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "content/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", + "lib/net472/MongoDB.Driver.Core.dll", + "lib/net472/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.14.1.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png", + "runtimes/linux/native/libsnappy64.so", + "runtimes/linux/native/libzstd.so", + "runtimes/osx/native/libsnappy64.dylib", + "runtimes/osx/native/libzstd.dylib", + "runtimes/win/native/libzstd.dll", + "runtimes/win/native/snappy32.dll", + "runtimes/win/native/snappy64.dll" + ] + }, + "MongoDB.Libmongocrypt/1.3.0": { + "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", + "type": "package", + "path": "mongodb.libmongocrypt/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/net472/libmongocrypt.dylib", + "contentFiles/any/net472/libmongocrypt.so", + "contentFiles/any/net472/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/net472/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.3.0.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Open.Serialization/2.3.1": { + "sha512": "HRBu01DlU+bdmODtD62ToY6fCz6DeIIOLgXatxRwpuWaKu/0G/bDucXLYstjnGLyV9wIVcW3nLqfGLQhj0fVLg==", + "type": "package", + "path": "open.serialization/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.dll", + "lib/netstandard2.0/Open.Serialization.xml", + "lib/netstandard2.1/Open.Serialization.dll", + "logo.png", + "open.serialization.2.3.1.nupkg.sha512", + "open.serialization.nuspec" + ] + }, + "Open.Serialization.Json/2.3.1": { + "sha512": "+yzpExKsutyzKtcGhXXCoUJeOChIl8fchDJXskC2rDANegZePSK0KVVPCCOFlU5imgoDkK+gRcQeuiPVwP2tbg==", + "type": "package", + "path": "open.serialization.json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.dll", + "lib/netstandard2.0/Open.Serialization.Json.xml", + "lib/netstandard2.1/Open.Serialization.Json.dll", + "logo.png", + "open.serialization.json.2.3.1.nupkg.sha512", + "open.serialization.json.nuspec" + ] + }, + "Open.Serialization.Json.System/2.3.2": { + "sha512": "oFIqRXCYAjq2mSlSaHWKm/CaGBxhHgn2Sb4LNHqVBHYKXPqeEaRmuDRIliHCNg2YdJmbn7QUZCSEI+9hmsJrFA==", + "type": "package", + "path": "open.serialization.json.system/2.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.System.dll", + "lib/netstandard2.1/Open.Serialization.Json.System.dll", + "logo.png", + "open.serialization.json.system.2.3.2.nupkg.sha512", + "open.serialization.json.system.nuspec" + ] + }, + "Open.Serialization.Json.Utf8Json/2.3.1": { + "sha512": "8RMbXT4rvFTzrgQ8IqbNWhQHZSjH+f6kG5zQJbDd4FbxFluikx0U2STBnJ/dM1qQkRtQR+l5e3jO1+f+F3NahA==", + "type": "package", + "path": "open.serialization.json.utf8json/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Open.Serialization.Json.Utf8Json.dll", + "lib/netstandard2.1/Open.Serialization.Json.Utf8Json.dll", + "logo.png", + "open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "open.serialization.json.utf8json.nuspec" + ] + }, + "OpenTracing/0.12.1": { + "sha512": "8i/Vnx/lbWzqqJ6J5lofguT4wBS99rfqKujWrFrTGAclQBZ5h1CgBlzGOTqsNjmMsxSTLpC+Ns6/f1RB0c4O/g==", + "type": "package", + "path": "opentracing/0.12.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/OpenTracing.dll", + "lib/net45/OpenTracing.pdb", + "lib/net45/OpenTracing.xml", + "lib/netstandard1.3/OpenTracing.dll", + "lib/netstandard1.3/OpenTracing.pdb", + "lib/netstandard1.3/OpenTracing.xml", + "lib/netstandard2.0/OpenTracing.dll", + "lib/netstandard2.0/OpenTracing.pdb", + "lib/netstandard2.0/OpenTracing.xml", + "opentracing.0.12.1.nupkg.sha512", + "opentracing.nuspec" + ] + }, + "OpenTracing.Contrib.NetCore/0.8.0": { + "sha512": "bAO2NLtNfMV6+2Z17BtlZbayeNjz3xZWrQvZOi7eVKeLxYqJcYaeS9+h0RDuUxqV3nTxN6QSgf/R4IqVEF72sw==", + "type": "package", + "path": "opentracing.contrib.netcore/0.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/OpenTracing.Contrib.NetCore.dll", + "lib/net5.0/OpenTracing.Contrib.NetCore.xml", + "lib/net6.0/OpenTracing.Contrib.NetCore.dll", + "lib/net6.0/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp2.1/OpenTracing.Contrib.NetCore.xml", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.dll", + "lib/netcoreapp3.1/OpenTracing.Contrib.NetCore.xml", + "opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "opentracing.contrib.netcore.nuspec", + "package-icon.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "Polly/7.2.2": { + "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "type": "package", + "path": "polly/7.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Polly.dll", + "lib/net461/Polly.pdb", + "lib/net461/Polly.xml", + "lib/net472/Polly.dll", + "lib/net472/Polly.pdb", + "lib/net472/Polly.xml", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.pdb", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.pdb", + "lib/netstandard2.0/Polly.xml", + "polly.7.2.2.nupkg.sha512", + "polly.nuspec" + ] + }, + "protobuf-net/2.4.0": { + "sha512": "j37MD1p1s9NdX8P5+IaY2J9p2382xiL1VP3mxYu0g+G/kf2YM2grFa1jJPO+0WDJNl1XhNPO0Q5yBEcbX77hBQ==", + "type": "package", + "path": "protobuf-net/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/protobuf-net.dll", + "lib/net20/protobuf-net.xml", + "lib/net35/protobuf-net.dll", + "lib/net35/protobuf-net.xml", + "lib/net40/protobuf-net.dll", + "lib/net40/protobuf-net.xml", + "lib/netcoreapp2.1/protobuf-net.dll", + "lib/netcoreapp2.1/protobuf-net.xml", + "lib/netstandard1.0/protobuf-net.dll", + "lib/netstandard1.0/protobuf-net.xml", + "lib/netstandard1.3/protobuf-net.dll", + "lib/netstandard1.3/protobuf-net.xml", + "lib/netstandard2.0/protobuf-net.dll", + "lib/netstandard2.0/protobuf-net.xml", + "lib/uap10.0/protobuf-net.dll", + "lib/uap10.0/protobuf-net.pri", + "lib/uap10.0/protobuf-net.xml", + "protobuf-net.2.4.0.nupkg.sha512", + "protobuf-net.nuspec" + ] + }, + "RabbitMQ.Client/6.5.0": { + "sha512": "9hY5HiWPtCla1/l0WmXmLnqoX7iKE3neBQUWnetIJrRpOvTbO//XQfQDh++xgHCshL40Kv/6bR0HDkmJz46twg==", + "type": "package", + "path": "rabbitmq.client/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/RabbitMQ.Client.dll", + "lib/net461/RabbitMQ.Client.xml", + "lib/netstandard2.0/RabbitMQ.Client.dll", + "lib/netstandard2.0/RabbitMQ.Client.xml", + "rabbitmq.client.6.5.0.nupkg.sha512", + "rabbitmq.client.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.3.0": { + "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", + "type": "package", + "path": "runtime.native.system.net.security/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.3.0.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/4.1.0": { + "sha512": "qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "type": "package", + "path": "serilog.aspnetcore/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net5.0/Serilog.AspNetCore.dll", + "lib/net5.0/Serilog.AspNetCore.xml", + "lib/netcoreapp3.1/Serilog.AspNetCore.dll", + "lib/netcoreapp3.1/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "lib/netstandard2.1/Serilog.AspNetCore.dll", + "lib/netstandard2.1/Serilog.AspNetCore.xml", + "serilog.aspnetcore.4.1.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "sha512": "nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "type": "package", + "path": "serilog.extensions.hosting/4.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.4.1.2.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/3.1.0": { + "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "type": "package", + "path": "serilog.extensions.logging/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.3.1.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/1.1.0": { + "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "type": "package", + "path": "serilog.formatting.compact/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Serilog.Formatting.Compact.dll", + "lib/net452/Serilog.Formatting.Compact.xml", + "lib/netstandard1.1/Serilog.Formatting.Compact.dll", + "lib/netstandard1.1/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "serilog.formatting.compact.1.1.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Formatting.Elasticsearch/8.4.1": { + "sha512": "768KS00+XwQSxVIYKJ4KWdqyLd5/w3DKndf+94U8NCk7qpXCeZl4HlczsDeyVsNPTyRF6MVss6Wr9uj4rhprfA==", + "type": "package", + "path": "serilog.formatting.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Formatting.Elasticsearch.dll", + "lib/net45/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard1.3/Serilog.Formatting.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.xml", + "serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "serilog.formatting.elasticsearch.nuspec" + ] + }, + "Serilog.Settings.Configuration/3.1.0": { + "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "type": "package", + "path": "serilog.settings.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Serilog.Settings.Configuration.dll", + "lib/net451/Serilog.Settings.Configuration.xml", + "lib/net461/Serilog.Settings.Configuration.dll", + "lib/net461/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.3.1.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/4.0.1": { + "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==", + "type": "package", + "path": "serilog.sinks.console/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Console.dll", + "lib/net45/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/netstandard1.3/Serilog.Sinks.Console.dll", + "lib/netstandard1.3/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "serilog.sinks.console.4.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.Elasticsearch/8.4.1": { + "sha512": "SM17WdHUshJSm44uC45jEUW4Wzp9wCltbWry5iY5fNgxJ3PkIkW6I8p+WviU5lx/bayCvAoB5uO07UK2qjBSAQ==", + "type": "package", + "path": "serilog.sinks.elasticsearch/8.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Serilog.Sinks.Elasticsearch.dll", + "lib/net461/Serilog.Sinks.Elasticsearch.xml", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll", + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.xml", + "serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "serilog.sinks.elasticsearch.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "Serilog.Sinks.Grafana.Loki/7.1.0": { + "sha512": "bubQYPhe+9FREZ0JtmGsnNPnQJFfBoMtdVlJUGvhDfzhty5RZhsHrjcunT9qtTICSTZm6wJwF71Co/jr0U4DVw==", + "type": "package", + "path": "serilog.sinks.grafana.loki/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.dll", + "lib/netstandard2.0/Serilog.Sinks.Grafana.Loki.xml", + "serilog-sink-nuget.png", + "serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "serilog.sinks.grafana.loki.nuspec" + ] + }, + "Serilog.Sinks.PeriodicBatching/2.3.0": { + "sha512": "UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==", + "type": "package", + "path": "serilog.sinks.periodicbatching/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.PeriodicBatching.dll", + "lib/net45/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.1/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard1.2/Serilog.Sinks.PeriodicBatching.xml", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll", + "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.xml", + "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "serilog.sinks.periodicbatching.nuspec" + ] + }, + "Serilog.Sinks.Seq/5.1.0": { + "sha512": "VZbcBAB3rnQe5dq21aYvxpdLQs6dLQE4pZAtrhYb1TODaTCzf/BVDRaxi5MyQOW1vNVMNjT+iDUkgwxfeFI4qA==", + "type": "package", + "path": "serilog.sinks.seq/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Seq.dll", + "lib/net45/Serilog.Sinks.Seq.xml", + "lib/net5.0/Serilog.Sinks.Seq.dll", + "lib/net5.0/Serilog.Sinks.Seq.xml", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.dll", + "lib/netcoreapp3.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.1/Serilog.Sinks.Seq.dll", + "lib/netstandard1.1/Serilog.Sinks.Seq.xml", + "lib/netstandard1.3/Serilog.Sinks.Seq.dll", + "lib/netstandard1.3/Serilog.Sinks.Seq.xml", + "lib/netstandard2.0/Serilog.Sinks.Seq.dll", + "lib/netstandard2.0/Serilog.Sinks.Seq.xml", + "serilog.sinks.seq.5.1.0.nupkg.sha512", + "serilog.sinks.seq.nuspec" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "SmartFormat.NET/2.7.2": { + "sha512": "TxlRRi4Azzizw+T4gUOmrZqdxeRC4jfM4wqAwgQR7AFJTLz8eYKukO47pSbI4+Gp1znwb72979x3YPzqr49bng==", + "type": "package", + "path": "smartformat.net/2.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "SmartFormat_365x365.png", + "lib/net461/SmartFormat.dll", + "lib/net461/SmartFormat.xml", + "lib/netstandard2.0/SmartFormat.dll", + "lib/netstandard2.0/SmartFormat.xml", + "smartformat.net.2.7.2.nupkg.sha512", + "smartformat.net.nuspec" + ] + }, + "StackExchange.Redis/2.2.4": { + "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "type": "package", + "path": "stackexchange.redis/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net5.0/StackExchange.Redis.dll", + "lib/net5.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.2.4.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Annotations/6.2.3": { + "sha512": "I8rcqNo+60+zJl5TpRF9JZSnGYPGJmgtlK+ZyTDsG+0lRDjMCPTPndcSSgeUpUh1XsMPuCx38hNu78Xf+xvjeg==", + "type": "package", + "path": "swashbuckle.aspnetcore.annotations/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.xml", + "swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.annotations.nuspec" + ] + }, + "Swashbuckle.AspNetCore.ReDoc/6.2.3": { + "sha512": "jbY5Op6t50J01aJ5uNvH3awi8Ym/jmwdrQqWisVXunWyyq01O6u7a39aSsygU2YdqoyTOG8Lv7MiqYia9xVIuw==", + "type": "package", + "path": "swashbuckle.aspnetcore.redoc/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.ReDoc.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.ReDoc.xml", + "swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.redoc.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "type": "package", + "path": "system.configuration.configurationmanager/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "type": "package", + "path": "system.diagnostics.performancecounter/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/5.0.0": { + "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "type": "package", + "path": "system.drawing.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.0": { + "sha512": "lzJaeRZE4dvPmH9U65J8z9wsrWghlosNYEqwCTjOh5o/gCHHcTV6P6EcYj7xC22AHPYavYh8IUtIqH5MszW1rA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/5.0.0": { + "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "type": "package", + "path": "system.io.pipelines/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipes/4.3.0": { + "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==", + "type": "package", + "path": "system.io.pipes/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.IO.Pipes.dll", + "ref/net46/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.xml", + "ref/netstandard1.3/de/System.IO.Pipes.xml", + "ref/netstandard1.3/es/System.IO.Pipes.xml", + "ref/netstandard1.3/fr/System.IO.Pipes.xml", + "ref/netstandard1.3/it/System.IO.Pipes.xml", + "ref/netstandard1.3/ja/System.IO.Pipes.xml", + "ref/netstandard1.3/ko/System.IO.Pipes.xml", + "ref/netstandard1.3/ru/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml", + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win/lib/net46/System.IO.Pipes.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.pipes.4.3.0.nupkg.sha512", + "system.io.pipes.nuspec" + ] + }, + "System.IO.Pipes.AccessControl/4.5.1": { + "sha512": "Z0/uF+PqmiMoqgTA0AQa9JSlNjsxCoQNfRzQGtK4dLfNQ3nsOqPVBgZ7F49U5Lb4yqGJSWJ79AdYaNjdJoZqhQ==", + "type": "package", + "path": "system.io.pipes.accesscontrol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Pipes.AccessControl.dll", + "lib/net461/System.IO.Pipes.AccessControl.dll", + "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/net46/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.xml", + "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "system.io.pipes.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/4.7.0": { + "sha512": "fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==", + "type": "package", + "path": "system.net.http.winhttphandler/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.3.0": { + "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "type": "package", + "path": "system.net.requests/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.3.0.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.3.2": { + "sha512": "xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", + "type": "package", + "path": "system.net.security/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.3.2.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.3.0": { + "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "type": "package", + "path": "system.net.webheadercollection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.3.0.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.5.3": { + "sha512": "ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==", + "type": "package", + "path": "system.private.servicemodel/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/netcore50/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll", + "runtimes/win/lib/uap10.0.16300/System.Private.ServiceModel.dll", + "system.private.servicemodel.4.5.3.nupkg.sha512", + "system.private.servicemodel.nuspec", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.5.0": { + "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Primitives/4.5.3": { + "sha512": "Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==", + "type": "package", + "path": "system.servicemodel.primitives/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/uap10.0.16300/System.ServiceModel.Primitives.dll", + "lib/uap10.0.16300/System.ServiceModel.dll", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/uap10.0.16300/System.ServiceModel.Primitives.dll", + "ref/uap10.0.16300/System.ServiceModel.dll", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.5.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.11.1": { + "sha512": "umDBSKTQMoYAbts6w49N33ctAjHhcfJkcva8xoDog01st35N+Ly/w+TB2vUcghxSw5vUYkpaCl/PI7tVw3R0Jw==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.11.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Threading.Tasks.Dataflow.dll", + "lib/net461/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "Utf8Json/1.3.7": { + "sha512": "lMTNZWp6a6KGkgMc3rW41D3b0REb03fQycfb/2bNBpiUtsbGYYI/LrAhnX52vrHRe4ze7JxbtpWF1Y5ohdpipQ==", + "type": "package", + "path": "utf8json/1.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Utf8Json.dll", + "lib/net45/Utf8Json.xml", + "lib/net47/Utf8Json.dll", + "lib/net47/Utf8Json.xml", + "lib/netstandard2.0/Utf8Json.dll", + "lib/netstandard2.0/Utf8Json.xml", + "utf8json.1.3.7.nupkg.sha512", + "utf8json.nuspec" + ] + }, + "VaultSharp/1.7.0.4": { + "sha512": "iAWUVwip6tgS8k94IlPeELdiS82nFEo/T1NY8J8O0FrcsYbeALSdTJAEzrQ5zT483ieNY8FRIF8LS0hR8g/URg==", + "type": "package", + "path": "vaultsharp/1.7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net45/VaultSharp.dll", + "lib/net45/VaultSharp.xml", + "lib/net46/VaultSharp.dll", + "lib/net46/VaultSharp.xml", + "lib/net461/VaultSharp.dll", + "lib/net461/VaultSharp.xml", + "lib/net462/VaultSharp.dll", + "lib/net462/VaultSharp.xml", + "lib/net47/VaultSharp.dll", + "lib/net47/VaultSharp.xml", + "lib/net471/VaultSharp.dll", + "lib/net471/VaultSharp.xml", + "lib/net472/VaultSharp.dll", + "lib/net472/VaultSharp.xml", + "lib/net48/VaultSharp.dll", + "lib/net48/VaultSharp.xml", + "lib/net5.0/VaultSharp.dll", + "lib/net5.0/VaultSharp.xml", + "lib/net6.0/VaultSharp.dll", + "lib/net6.0/VaultSharp.xml", + "lib/netstandard1.3/VaultSharp.dll", + "lib/netstandard1.3/VaultSharp.xml", + "lib/netstandard2.0/VaultSharp.dll", + "lib/netstandard2.0/VaultSharp.xml", + "lib/netstandard2.1/VaultSharp.dll", + "lib/netstandard2.1/VaultSharp.xml", + "vaultsharp.1.7.0.4.nupkg.sha512", + "vaultsharp.nuspec" + ] + }, + "MiniSpace.Services.Notifications.Application/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj" + }, + "MiniSpace.Services.Notifications.Core/1.0.0": { + "type": "project", + "path": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj", + "msbuildProject": "../MiniSpace.Services.Notifications.Core/MiniSpace.Services.Notifications.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Convey >= 1.1.448", + "Convey.Auth >= 1.1.448", + "Convey.CQRS.Queries >= 1.1.448", + "Convey.Discovery.Consul >= 1.1.448", + "Convey.HTTP >= 1.1.448", + "Convey.LoadBalancing.Fabio >= 1.1.448", + "Convey.Logging >= 1.1.448", + "Convey.Logging.CQRS >= 1.1.448", + "Convey.MessageBrokers >= 1.1.448", + "Convey.MessageBrokers.CQRS >= 1.1.448", + "Convey.MessageBrokers.Outbox >= 1.1.448", + "Convey.MessageBrokers.Outbox.Mongo >= 1.1.448", + "Convey.MessageBrokers.RabbitMQ >= 1.1.448", + "Convey.Metrics.AppMetrics >= 1.1.448", + "Convey.Persistence.MongoDB >= 1.1.448", + "Convey.Persistence.Redis >= 1.1.448", + "Convey.Secrets.Vault >= 1.1.448", + "Convey.Security >= 1.1.448", + "Convey.Tracing.Jaeger >= 1.1.448", + "Convey.Tracing.Jaeger.RabbitMQ >= 1.1.448", + "Convey.WebApi.CQRS >= 1.1.448", + "Convey.WebApi.Security >= 1.1.448", + "Convey.WebApi.Swagger >= 1.1.448", + "MiniSpace.Services.Notifications.Application >= 1.0.0" + ] + }, + "packageFolders": { + "/home/kaliuser/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "projectName": "MiniSpace.Services.Notifications.Infrastructure", + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "packagesPath": "/home/kaliuser/.nuget/packages/", + "outputPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/kaliuser/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj": { + "projectPath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/MiniSpace.Services.Notifications.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Convey": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Auth": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.CQRS.Queries": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Discovery.Consul": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.HTTP": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.LoadBalancing.Fabio": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Logging.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.Outbox.Mongo": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.MessageBrokers.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Metrics.AppMetrics": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.MongoDB": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Persistence.Redis": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Secrets.Vault": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.Tracing.Jaeger.RabbitMQ": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.CQRS": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Security": { + "target": "Package", + "version": "[1.1.448, )" + }, + "Convey.WebApi.Swagger": { + "target": "Package", + "version": "[1.1.448, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.nuget.cache b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.nuget.cache new file mode 100644 index 000000000..1db2828b1 --- /dev/null +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/obj/project.nuget.cache @@ -0,0 +1,279 @@ +{ + "version": 2, + "dgSpecHash": "hDZv9qkxD9JTparN3LaLXcqPobAhoZTrZRY4lRzJN69B+K9HimxTUSLwNzkZaoG+0Ac3ZHPueBgP3YQFb2fqCA==", + "success": true, + "projectFilePath": "/home/kaliuser/Documents/portfolio/commercial_apps/p_software_engineering_2/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Infrastructure/MiniSpace.Services.Notifications.Infrastructure.csproj", + "expectedPackageFiles": [ + "/home/kaliuser/.nuget/packages/apachethrift/0.14.1/apachethrift.0.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics/4.3.0/app.metrics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.abstractions/4.3.0/app.metrics.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore/4.3.0/app.metrics.aspnetcore.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.abstractions/4.3.0/app.metrics.aspnetcore.abstractions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.core/4.3.0/app.metrics.aspnetcore.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.endpoints/4.3.0/app.metrics.aspnetcore.endpoints.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health/3.2.0/app.metrics.aspnetcore.health.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.core/3.2.0/app.metrics.aspnetcore.health.core.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.endpoints/3.2.0/app.metrics.aspnetcore.health.endpoints.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.health.hosting/3.2.0/app.metrics.aspnetcore.health.hosting.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.hosting/4.3.0/app.metrics.aspnetcore.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc/4.3.0/app.metrics.aspnetcore.mvc.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.mvc.core/4.3.0/app.metrics.aspnetcore.mvc.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.reporting/4.0.0/app.metrics.aspnetcore.reporting.4.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.routing/4.3.0/app.metrics.aspnetcore.routing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.aspnetcore.tracking/4.3.0/app.metrics.aspnetcore.tracking.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.concurrency/4.3.0/app.metrics.concurrency.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.core/4.3.0/app.metrics.core.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.configuration/4.3.0/app.metrics.extensions.configuration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.dependencyinjection/4.3.0/app.metrics.extensions.dependencyinjection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.extensions.hosting/4.3.0/app.metrics.extensions.hosting.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.ascii/4.3.0/app.metrics.formatters.ascii.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.influxdb/4.3.0/app.metrics.formatters.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.json/4.3.0/app.metrics.formatters.json.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.formatters.prometheus/4.3.0/app.metrics.formatters.prometheus.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health/3.1.0/app.metrics.health.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.abstractions/3.2.0/app.metrics.health.abstractions.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.checks.http/3.2.0/app.metrics.health.checks.http.3.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.core/3.1.0/app.metrics.health.core.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.configuration/3.1.0/app.metrics.health.extensions.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.dependencyinjection/3.1.0/app.metrics.health.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.extensions.hosting/3.1.0/app.metrics.health.extensions.hosting.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.ascii/3.1.0/app.metrics.health.formatters.ascii.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.health.formatters.json/3.1.0/app.metrics.health.formatters.json.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.console/4.3.0/app.metrics.reporting.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.http/4.3.0/app.metrics.reporting.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/app.metrics.reporting.influxdb/4.3.0/app.metrics.reporting.influxdb.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey/1.1.448/convey.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.auth/1.1.448/convey.auth.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.commands/1.1.448/convey.cqrs.commands.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.events/1.1.448/convey.cqrs.events.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.cqrs.queries/1.1.448/convey.cqrs.queries.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.discovery.consul/1.1.448/convey.discovery.consul.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.docs.swagger/1.1.448/convey.docs.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.http/1.1.448/convey.http.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.loadbalancing.fabio/1.1.448/convey.loadbalancing.fabio.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging/1.1.448/convey.logging.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.logging.cqrs/1.1.448/convey.logging.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers/1.1.448/convey.messagebrokers.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.cqrs/1.1.448/convey.messagebrokers.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox/1.1.448/convey.messagebrokers.outbox.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.outbox.mongo/1.1.448/convey.messagebrokers.outbox.mongo.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.messagebrokers.rabbitmq/1.1.448/convey.messagebrokers.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.metrics.appmetrics/1.1.448/convey.metrics.appmetrics.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.mongodb/1.1.448/convey.persistence.mongodb.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.persistence.redis/1.1.448/convey.persistence.redis.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.secrets.vault/1.1.448/convey.secrets.vault.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.security/1.1.448/convey.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger/1.1.448/convey.tracing.jaeger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.tracing.jaeger.rabbitmq/1.1.448/convey.tracing.jaeger.rabbitmq.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi/1.1.448/convey.webapi.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.cqrs/1.1.448/convey.webapi.cqrs.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.security/1.1.448/convey.webapi.security.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/convey.webapi.swagger/1.1.448/convey.webapi.swagger.1.1.448.nupkg.sha512", + "/home/kaliuser/.nuget/packages/dnsclient/1.4.0/dnsclient.1.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/elasticsearch.net/7.8.1/elasticsearch.net.7.8.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/figgle/0.4.0/figgle.0.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger/1.0.3/jaeger.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.communication.thrift/1.0.3/jaeger.communication.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.core/1.0.3/jaeger.core.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/jaeger.senders.thrift/1.0.3/jaeger.senders.thrift.1.0.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.certificate/6.0.1/microsoft.aspnetcore.authentication.certificate.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/6.0.1/microsoft.aspnetcore.authentication.jwtbearer.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.authorization/6.0.1/microsoft.aspnetcore.authorization.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.1.0/microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.1.0/microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.extensions/2.1.0/microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.aspnetcore.metadata/6.0.1/microsoft.aspnetcore.metadata.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.bcl.asyncinterfaces/1.0.0/microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.csharp/4.6.0/microsoft.csharp.4.6.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0/microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.caching.stackexchangeredis/6.0.1/microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.configuration.usersecrets/6.0.0/microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.dependencymodel/3.1.6/microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting/6.0.0/microsoft.extensions.hosting.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.hosting.abstractions/6.0.0/microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.http/6.0.0/microsoft.extensions.http.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.debug/6.0.0/microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventlog/6.0.0/microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.logging.eventsource/6.0.0/microsoft.extensions.logging.eventsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.15.0/microsoft.identitymodel.jsonwebtokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.logging/6.15.0/microsoft.identitymodel.logging.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols/6.10.0/microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.10.0/microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.identitymodel.tokens/6.15.0/microsoft.identitymodel.tokens.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.net.http.headers/2.1.0/microsoft.net.http.headers.2.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/microsoft.win32.systemevents/5.0.0/microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.bson/2.14.1/mongodb.bson.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver/2.14.1/mongodb.driver.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.driver.core/2.14.1/mongodb.driver.core.2.14.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/mongodb.libmongocrypt/1.3.0/mongodb.libmongocrypt.1.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization/2.3.1/open.serialization.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json/2.3.1/open.serialization.json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.system/2.3.2/open.serialization.json.system.2.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/open.serialization.json.utf8json/2.3.1/open.serialization.json.utf8json.2.3.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing/0.12.1/opentracing.0.12.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/opentracing.contrib.netcore/0.8.0/opentracing.contrib.netcore.0.8.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/pipelines.sockets.unofficial/2.2.0/pipelines.sockets.unofficial.2.2.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/polly/7.2.2/polly.7.2.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/protobuf-net/2.4.0/protobuf-net.2.4.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/rabbitmq.client/6.5.0/rabbitmq.client.6.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/scrutor/3.3.0/scrutor.3.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog/2.10.0/serilog.2.10.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.aspnetcore/4.1.0/serilog.aspnetcore.4.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.hosting/4.1.2/serilog.extensions.hosting.4.1.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.extensions.logging/3.1.0/serilog.extensions.logging.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.compact/1.1.0/serilog.formatting.compact.1.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.formatting.elasticsearch/8.4.1/serilog.formatting.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.settings.configuration/3.1.0/serilog.settings.configuration.3.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.console/4.0.1/serilog.sinks.console.4.0.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.elasticsearch/8.4.1/serilog.sinks.elasticsearch.8.4.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.grafana.loki/7.1.0/serilog.sinks.grafana.loki.7.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.periodicbatching/2.3.0/serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/serilog.sinks.seq/5.1.0/serilog.sinks.seq.5.1.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/smartformat.net/2.7.2/smartformat.net.2.7.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/stackexchange.redis/2.2.4/stackexchange.redis.2.2.4.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.annotations/6.2.3/swashbuckle.aspnetcore.annotations.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.redoc/6.2.3/swashbuckle.aspnetcore.redoc.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swagger/6.2.3/swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.2.3/swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.2.3/swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.configuration.configurationmanager/5.0.0/system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.performancecounter/5.0.0/system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.drawing.common/5.0.0/system.drawing.common.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.identitymodel.tokens.jwt/6.15.0/system.identitymodel.tokens.jwt.6.15.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipelines/5.0.0/system.io.pipelines.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.io.pipes.accesscontrol/4.5.1/system.io.pipes.accesscontrol.4.5.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.http.winhttphandler/4.7.0/system.net.http.winhttphandler.4.7.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.requests/4.3.0/system.net.requests.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.security/4.3.2/system.net.security.4.3.2.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.net.webheadercollection/4.3.0/system.net.webheadercollection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.private.servicemodel/4.5.3/system.private.servicemodel.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.dispatchproxy/4.5.0/system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.cng/4.5.0/system.security.cryptography.cng.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.servicemodel.primitives/4.5.3/system.servicemodel.primitives.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.dataflow/4.11.1/system.threading.tasks.dataflow.4.11.1.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.tasks.extensions/4.5.3/system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512", + "/home/kaliuser/.nuget/packages/utf8json/1.3.7/utf8json.1.3.7.nupkg.sha512", + "/home/kaliuser/.nuget/packages/vaultsharp/1.7.0.4/vaultsharp.1.7.0.4.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file